zl程序教程

您现在的位置是:首页 >  其它

当前栏目

以树形显示的窗体界面

显示 界面 窗体 树形
2023-09-14 09:00:21 时间

实现效果:

 

知识运用:

  TreeView控件及其ExpandAll方法

实现代码:

        private void Form1_Load(object sender, EventArgs e)
        {
            treeView1.ExpandAll();
        }