📄 checkedlistboxitem.cs
字号:
using System;
using System.Collections.Generic;
using System.Text;
namespace GPSSerialPortData
{
class CheckedListBoxItem
{
private string f_Text;
private object f_Value;
public CheckedListBoxItem(string text, object value)
{
f_Text = text;
f_Value = value;
}
public string Text
{
get { return f_Text; }
set { f_Text = value; }
}
public object Value
{
get { return f_Value; }
set { f_Value = value; }
}
public override string ToString()
{
return f_Text.ToString();
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -