19 lines
570 B
C#
Raw Normal View History

namespace Sunny.UI.Demo
2020-05-11 21:11:29 +08:00
{
public partial class FOther : UIPage
2020-05-11 21:11:29 +08:00
{
public FOther()
{
InitializeComponent();
uiToolTip1.SetToolTip(uiLabel2, "赠人玫瑰手有余香", "SunnyUI");
uiToolTip1.SetToolTip(uiLabel3, "赠人玫瑰手有余香" + '\n' + "赠人玫瑰手有余香",
"SunnyUI", 61530, 32, UIColor.Green);
2020-05-11 21:11:29 +08:00
}
2022-07-03 11:28:07 +08:00
private void uiCalendar1_OnDateTimeChanged(object sender, UIDateTimeArgs e)
{
ShowInfoTip(uiCalendar1.Date.DateString());
}
2020-05-11 21:11:29 +08:00
}
}