* IFame:增加一个反馈的接口,Feedback,Page可将对象反馈给Frame

This commit is contained in:
Sunny 2021-06-27 23:20:18 +08:00
parent c3117578fd
commit dd60d86959
7 changed files with 7 additions and 0 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -619,5 +619,7 @@ namespace Sunny.UI
bool RemovePage(int pageIndex); bool RemovePage(int pageIndex);
bool RemovePage(Guid guid); bool RemovePage(Guid guid);
void Feedback(object sender, int pageIndex, params object[] objects);
} }
} }

View File

@ -144,6 +144,11 @@ namespace Sunny.UI
return MainTabControl.RemovePage(guid); return MainTabControl.RemovePage(guid);
} }
public virtual void Feedback(object sender, int pageIndex, params object[] objects)
{
}
#endregion IFrame实现 #endregion IFrame实现
} }
} }