Setting Find Changes

- added a find window to find setting in the settings control.
This commit is contained in:
Brett Hewitson 2022-06-18 15:29:22 +10:00
parent 174b5f14c9
commit 46997c6e71
18 changed files with 774 additions and 263 deletions

View file

@ -31,6 +31,7 @@ namespace ServerManagerTool.Common.Controls
{
InitializeComponent();
this.Focusable = true;
Value = new NullableValue<int>();
(this.Content as FrameworkElement).DataContext = this;
@ -148,5 +149,13 @@ namespace ServerManagerTool.Common.Controls
}
}
}
public new bool Focus()
{
if (this.CheckBox.IsChecked ?? false == true)
return Slider.Focus();
else
return this.CheckBox.Focus();
}
}
}