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

20 lines
471 B
C#
Raw Permalink Normal View History

2022-11-23 22:06:09 +08:00
using MvvmCross.Platforms.Wpf.Presenters.Attributes;
using MvvmCross.Platforms.Wpf.Views;
2021-07-07 16:56:53 +08:00
namespace ProxySuper.WPF.Views
{
2022-11-23 22:06:09 +08:00
[MvxWindowPresentation]
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
}
}