15 lines
381 B
C#
15 lines
381 B
C#
namespace Sunny.UI.Demo
|
|
{
|
|
public partial class FRadioButton : UITitlePage
|
|
{
|
|
public FRadioButton()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void uiRadioButtonGroup1_ValueChanged(object sender, int index, string text)
|
|
{
|
|
this.ShowInfoDialog("SelectedIndex: " + index + ", SelectedText: " + text);
|
|
}
|
|
}
|
|
} |