コード例 #1
0
        protected override void OnParse(ConvertEventArgs cevent)
        {
            MyRadioButton b = Control as MyRadioButton;

            if (b.Checked)
            {
                cevent.Value = b.CheckedValue;
            }
        }
コード例 #2
0
        protected override void OnFormat(ConvertEventArgs cevent)
        {
            MyRadioButton b = Control as MyRadioButton;

            b.Checked = b.CheckedValue.Equals(cevent.Value);
        }