mirror of
https://github.com/proxysu/ProxySU.git
synced 2024-11-22 05:06:08 +03:00
20 lines
471 B
C#
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();
|
|
}
|
|
}
|
|
}
|