RadioButton
Introduction
Code Example: Creating RadioButtons
var stackPanel = new StackPanel();
stackPanel.AddToRoot();
var easyRadioButton = new RadioButton();
stackPanel.AddChild(easyRadioButton);
easyRadioButton.Text = "Easy";
var mediumRadioButton = new RadioButton();
stackPanel.AddChild(mediumRadioButton);
mediumRadioButton.Text = "Medium";
var hardRadioButton = new RadioButton();
stackPanel.AddChild(hardRadioButton);
hardRadioButton.Text = "Hard";
Grouping by Container


Last updated
Was this helpful?

