📄 +
字号:
//定义
protected class Item1
{
public Item1(string text)
{
m_text=text;
}
public string Text
{
get{return m_text;}
}
private string m_text;
}
//调用
Item1[]stuff=new Item1[]{new Item1("One"),new Item1("Two"),new Item1("Three")};
dataGrid1.SetDataBinding(stuff,null);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -