Add clear button to all filter

This commit is contained in:
2023-10-18 22:38:27 +08:00
parent 97b3a57ee1
commit 101e3c5ffc
36 changed files with 4101 additions and 2608 deletions

View File

@@ -54,6 +54,15 @@ namespace GrasscutterTools.Pages
private void TxtAchievementFilter_TextChanged(object sender, EventArgs e)
{
UpdateList();
LblClearFilter.Visible = TxtAchievementFilter.Text.Length > 0;
}
/// <summary>
/// 点击清空过滤器标签时触发
/// </summary>
private void LblClearFilter_Click(object sender, EventArgs e)
{
TxtAchievementFilter.Clear();
}
/// <summary>
@@ -100,5 +109,6 @@ namespace GrasscutterTools.Pages
{
GenSelected("/achievement progress", NUDProgress.Text);
}
}
}