添加对话框事件以及对话持久化文件

This commit is contained in:
2024-09-11 14:07:23 +08:00
parent 8162e2fe30
commit 8bea97f5ae
12 changed files with 94 additions and 4 deletions

View File

@@ -0,0 +1,12 @@
namespace Event.EventArgs
{
public class DialogPopArgs : System.EventArgs
{
public int Index { get; private set; }
public DialogPopArgs(int index)
{
Index = index;
}
}
}