コード例 #1
0
        public override Item Clone()
        {
            ItemComboBox box = new ItemComboBox(this);

            if (this.m_bStringData)
            {
                box.StringData = this.StringData;
            }
            else
            {
                box.Items = this.Items;
            }
            box.SelectedIndex = this.SelectedIndex;
            return(box);
        }
コード例 #2
0
 public override Item Clone()
 {
     ItemComboBox box = new ItemComboBox(this);
     if (this.m_bStringData)
     {
         box.StringData = this.StringData;
     }
     else
     {
         box.Items = this.Items;
     }
     box.SelectedIndex = this.SelectedIndex;
     return box;
 }