16 lines
291 B
C#
Raw Normal View History

namespace Sunny.UI.Demo
2020-05-11 21:11:29 +08:00
{
public partial class FTextBox : UIPage
2020-05-11 21:11:29 +08:00
{
public FTextBox()
{
InitializeComponent();
}
2021-07-18 15:24:32 +08:00
private void FTextBox_Shown(object sender, System.EventArgs e)
{
uiTextBox1.Focus();
}
2020-05-11 21:11:29 +08:00
}
}