* UINotifiler: 修改了点击事件
This commit is contained in:
parent
ae2356da67
commit
ebb549c15d
Binary file not shown.
@ -758,8 +758,11 @@ namespace Sunny.UI
|
|||||||
|
|
||||||
private void noteContent_Click(object sender, EventArgs e)
|
private void noteContent_Click(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
ItemClick?.Invoke(this, e);
|
if (ItemClick != null)
|
||||||
Close();
|
{
|
||||||
|
ItemClick.Invoke(this, e);
|
||||||
|
closeMe();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public event EventHandler ItemClick;
|
public event EventHandler ItemClick;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user