12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OTSPeriodicTable
- {
- #region ComboBox选择项类
- /// <summary>
- /// combobox控件,选择项对应类
- /// </summary>
- public class ComboBoxItem
- {
- private string _text = null;
- private object _value = null;
- public string Text { get { return this._text; } set { this._text = value; } }
- public object Value { get { return this._value; } set { this._value = value; } }
- public override string ToString()
- {
- return this._text;
- }
- }
- #endregion
- }
|