1234567891011121314151617181920212223242526272829303132333435363738394041 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Uninpho.Tools.components
- {
-
- /// <summary>
- /// ComboBox数据绑定类
- /// </summary>
- /// <author>PengZhen</author>
- /// <time>2013-10-31 15:49:34</time>
- public class ComboBoxData
- {
- /// <summary>
- /// 值
- /// </summary>
- public string Text { set; get; }
- /// <summary>
- /// 键
- /// </summary>
- public string Value { set; get; }
- /// <summary>
- /// 重写ToString()方法
- /// </summary>
- /// <author>PengZhen</author>
- /// <time>2013-10-31 15:51:37</time>
- /// <returns>返回ComboBox的值</returns>
- public override string ToString()
- {
-
- return Text;
- }
- }
-
- }
|