コード例 #1
0
ファイル: RcpaRadioButton.cs プロジェクト: shengqh/RCPA.Core
    public RcpaRadioButton(RadioButton cbValue, String key, bool defaultValue)
    {
      this.cbValue = cbValue;
      this.cbValue.Checked = defaultValue;

      Adaptor = new OptionFileRadioButtonAdaptor(cbValue, key, defaultValue);

      Childrens.Add(cbValue);
    }
コード例 #2
0
        public RcpaRadioButton(RadioButton cbValue, String key, bool defaultValue)
        {
            this.cbValue         = cbValue;
            this.cbValue.Checked = defaultValue;

            Adaptor = new OptionFileRadioButtonAdaptor(cbValue, key, defaultValue);

            Childrens.Add(cbValue);
        }