mirror of
https://github.com/Tribufu/ServerManagers
synced 2026-08-08 04:01:05 +00:00
Setting Find Changes
- added a find window to find setting in the settings control.
This commit is contained in:
parent
174b5f14c9
commit
46997c6e71
18 changed files with 774 additions and 263 deletions
|
|
@ -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();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue