📄 comboboxitem.cs
字号:
namespace Imps.Client.Pc.UIContactList.AddBuddy
{
using System;
internal class ComboBoxItem
{
private string _text;
private object _value;
public ComboBoxItem(string text, object value)
{
this._text = text;
this._value = value;
}
public override string ToString()
{
return this._text;
}
public string Text
{
get
{
return this._text;
}
set
{
this._text = value;
}
}
public object Value
{
get
{
return this._value;
}
set
{
this._value = value;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -