2020-05-11 21:11:29 +08:00
|
|
|
|
namespace Sunny.UI.Demo
|
|
|
|
|
{
|
2021-06-22 09:43:13 +08:00
|
|
|
|
public partial class FTabControl : UIPage
|
2020-05-11 21:11:29 +08:00
|
|
|
|
{
|
|
|
|
|
public FTabControl()
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
2022-01-02 14:18:09 +08:00
|
|
|
|
|
|
|
|
|
uiTabControl1.SetTipsText(tabPage2, "6");
|
2020-05-11 21:11:29 +08:00
|
|
|
|
}
|
2020-06-02 22:15:54 +08:00
|
|
|
|
|
|
|
|
|
private bool uiTabControl1_BeforeRemoveTabPage(object sender, int index)
|
|
|
|
|
{
|
|
|
|
|
return this.ShowAskDialog("Do you want to close the tab : " + uiTabControl1.TabPages[index].Text + "?");
|
|
|
|
|
}
|
2020-05-11 21:11:29 +08:00
|
|
|
|
}
|
|
|
|
|
}
|