2022-11-23 17:06:09 +03:00
|
|
|
|
using MvvmCross.Platforms.Wpf.Presenters.Attributes;
|
|
|
|
|
using MvvmCross.Platforms.Wpf.Views;
|
2021-07-07 11:56:53 +03:00
|
|
|
|
|
|
|
|
|
namespace ProxySuper.WPF.Views
|
|
|
|
|
{
|
2022-11-23 17:06:09 +03:00
|
|
|
|
[MvxWindowPresentation]
|
2021-07-08 13:37:32 +03:00
|
|
|
|
public partial class EnableRootView : MvxWindow
|
2021-07-07 11:56:53 +03:00
|
|
|
|
{
|
|
|
|
|
public EnableRootView()
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
}
|
2021-07-08 13:37:32 +03:00
|
|
|
|
|
|
|
|
|
private void TextBox_TextChanged(object sender, System.Windows.Controls.TextChangedEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
OutputText.ScrollToEnd();
|
|
|
|
|
}
|
2021-07-07 11:56:53 +03:00
|
|
|
|
}
|
|
|
|
|
}
|