1
0
mirror of https://github.com/proxysu/ProxySU.git synced 2025-02-16 22:53:13 +03:00
ProxySU/ProxySuper.WPF/Views/EnableRootView.xaml.cs

21 lines
471 B
C#
Raw Normal View History

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