16 lines
291 B
C#
16 lines
291 B
C#
namespace Sunny.UI.Demo
|
|
{
|
|
public partial class FTextBox : UIPage
|
|
{
|
|
public FTextBox()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void FTextBox_Shown(object sender, System.EventArgs e)
|
|
{
|
|
uiTextBox1.Focus();
|
|
}
|
|
}
|
|
}
|