请教一个C#工程里面的习惯问题
我下载了http://www.codeproject.com/KB/tree/treeviewadv.aspx的源码,打开后,发现把SimpleExample窗体的所有控件都删除完了,结果designer.cs里面仍然有这样的声明:
private Aga.Controls.Tree.NodeControls.NodeCheckBox _nodeCheckBox;
private Aga.Controls.Tree.NodeControls.NodeStateIcon _nodeStateIcon;
private Aga.Controls.Tree.NodeControls.NodeTextBox _nodeTextBox;
private Aga.Controls.Tree.NodeControls.NodeTextBox nodeTextBox1;
(由于没有注释)请问,上面的声明,是作者故意的吗?为什么我在Form上找不到对应的控件?
谢谢~~