1
0
mirror of https://github.com/proxysu/ProxySU.git synced 2024-11-22 21:26:09 +03:00
ProxySU/ProxySuper.WPF/Views/EnableRootView.xaml.cs

21 lines
471 B
C#
Raw Normal View History

2021-07-08 13:37:32 +03:00
using MvvmCross.Platforms.Wpf.Views;
2021-07-07 11:56:53 +03:00
namespace ProxySuper.WPF.Views
{
/// <summary>
/// EnableRootView.xaml 的交互逻辑
/// </summary>
2021-07-08 13:37:32 +03:00
public partial class EnableRootView : MvxWindow
2021-07-07 11:56:53 +03:00
{
public EnableRootView()
{
InitializeComponent();
}
2021-07-08 13:37:32 +03:00
private void TextBox_TextChanged(object sender, System.Windows.Controls.TextChangedEventArgs e)
{
OutputText.ScrollToEnd();
}
2021-07-07 11:56:53 +03:00
}
}