* UINotifiler: 修改了点击事件

This commit is contained in:
Sunny 2022-01-19 17:48:44 +08:00
parent ae2356da67
commit ebb549c15d
2 changed files with 5 additions and 2 deletions

Binary file not shown.

View File

@ -758,8 +758,11 @@ namespace Sunny.UI
private void noteContent_Click(object sender, EventArgs e)
{
ItemClick?.Invoke(this, e);
Close();
if (ItemClick != null)
{
ItemClick.Invoke(this, e);
closeMe();
}
}
public event EventHandler ItemClick;