1
0
mirror of https://github.com/proxysu/ProxySU.git synced 2024-11-22 13:16:09 +03:00
ProxySU/ProxySuper.WPF/Views/EnableRootView.xaml.cs
2022-11-23 22:06:09 +08:00

20 lines
471 B
C#

using MvvmCross.Platforms.Wpf.Presenters.Attributes;
using MvvmCross.Platforms.Wpf.Views;
namespace ProxySuper.WPF.Views
{
[MvxWindowPresentation]
public partial class EnableRootView : MvxWindow
{
public EnableRootView()
{
InitializeComponent();
}
private void TextBox_TextChanged(object sender, System.Windows.Controls.TextChangedEventArgs e)
{
OutputText.ScrollToEnd();
}
}
}