SunnyUI/SunnyUI.Demo/Controls/FRadioButton.cs

15 lines
381 B
C#
Raw Normal View History

2020-05-11 21:11:29 +08:00
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);
}
}
}