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
|
|
|
|
}
|
|
|
|
|
}
|