Radio button.
Inheritance: CheckBox
Example #1
0
        /// <summary>
        /// Initializes a new instance of the <see cref="LabeledRadioButton"/> class.
        /// </summary>
        /// <param name="parent">Parent control.</param>
        public LabeledRadioButton(Control parent)
            : base(parent)
        {
            SetSize(100, 20);

            m_RadioButton = new RadioButton(this);
            //m_RadioButton.Dock = Pos.Left; // no docking, it causes resizing
            //m_RadioButton.Margin = new Margin(0, 2, 2, 2);
            m_RadioButton.IsTabable = false;
            m_RadioButton.KeyboardInputEnabled = false;

            m_Label = new LabelClickable(this);
            m_Label.Alignment = Pos.Bottom | Pos.Left;
            m_Label.Text = "Radio Button";
            //m_Label.Dock = Pos.Fill;
            m_Label.Clicked += m_RadioButton.Press;
            m_Label.IsTabable = false;
            m_Label.KeyboardInputEnabled = false;
            m_Label.AutoSizeToContents = true;
        }
Example #2
0
        public void TestRadioButton()
        {
            var control = new RadioButton(canvas);
            GUI.Test(control, "RadioButton1");

            control.Toggle();
            GUI.Test(control, "RadioButton1_toggle");
        }