You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
514 B
22 lines
514 B
|
4 weeks ago
|
using System.Windows.Controls;
|
||
|
|
|
||
|
|
namespace leak_test_project.Views
|
||
|
|
{
|
||
|
|
public partial class HomeView : UserControl
|
||
|
|
{
|
||
|
|
public HomeView()
|
||
|
|
{
|
||
|
|
InitializeComponent();
|
||
|
|
}
|
||
|
|
|
||
|
|
/// <summary> 로그 TextBox의 텍스트 변경 시 자동 스크롤 </summary>
|
||
|
|
private void LogTextBox_TextChanged(object sender, TextChangedEventArgs e)
|
||
|
|
{
|
||
|
|
if (sender is TextBox textBox)
|
||
|
|
{
|
||
|
|
textBox.ScrollToEnd();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|