Hold include uid setting

This commit is contained in:
2022-11-27 16:38:24 +08:00
parent ba4837f1f8
commit 74ddb428ee
6 changed files with 36 additions and 4 deletions

View File

@@ -46,6 +46,10 @@ namespace GrasscutterTools.Pages
NUDUid.Value = Settings.Default.Uid;
NUDUid.ValueChanged += (o, e) => Settings.Default.Uid = NUDUid.Value;
// 是否包含UID
ChkIncludeUID.Checked = Settings.Default.IsIncludeUID;
ChkIncludeUID.CheckedChanged += (o, e) => Settings.Default.IsIncludeUID = ChkIncludeUID.Checked;
// 置顶
ChkTopMost.Checked = Settings.Default.IsTopMost;
ChkTopMost.CheckedChanged += (o, e) => Settings.Default.IsTopMost = ParentForm.TopMost = ChkTopMost.Checked;