📄 businessdatadictdef.cs
字号:
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
namespace TreeReportApp
{
/// <summary>
/// BusinessDataDictDef 的摘要说明。
/// </summary>
public class BusinessDataDictDef : System.Windows.Forms.Form
{
private System.Windows.Forms.ToolBar toolBar1;
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.TreeView treeView_Dict;
private System.Windows.Forms.ListView listView_Dict;
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.Container components = null;
public BusinessDataDictDef()
{
//
// Windows 窗体设计器支持所必需的
//
InitializeComponent();
//
// TODO: 在 InitializeComponent 调用后添加任何构造函数代码
//
}
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
protected override void Dispose( bool disposing )
{
if( disposing )
{
if(components != null)
{
components.Dispose();
}
}
base.Dispose( disposing );
}
#region Windows 窗体设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要使用代码编辑器修改
/// 此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.toolBar1 = new System.Windows.Forms.ToolBar();
this.panel1 = new System.Windows.Forms.Panel();
this.treeView_Dict = new System.Windows.Forms.TreeView();
this.listView_Dict = new System.Windows.Forms.ListView();
this.SuspendLayout();
//
// toolBar1
//
this.toolBar1.ButtonSize = new System.Drawing.Size(39, 24);
this.toolBar1.DropDownArrows = true;
this.toolBar1.Location = new System.Drawing.Point(0, 0);
this.toolBar1.Name = "toolBar1";
this.toolBar1.ShowToolTips = true;
this.toolBar1.Size = new System.Drawing.Size(712, 30);
this.toolBar1.TabIndex = 0;
this.toolBar1.ButtonClick += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.toolBar1_ButtonClick);
//
// panel1
//
this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom;
this.panel1.Location = new System.Drawing.Point(0, 365);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(712, 24);
this.panel1.TabIndex = 1;
//
// treeView_Dict
//
this.treeView_Dict.Dock = System.Windows.Forms.DockStyle.Left;
this.treeView_Dict.ImageIndex = -1;
this.treeView_Dict.Location = new System.Drawing.Point(0, 30);
this.treeView_Dict.Name = "treeView_Dict";
this.treeView_Dict.SelectedImageIndex = -1;
this.treeView_Dict.Size = new System.Drawing.Size(121, 335);
this.treeView_Dict.TabIndex = 2;
//
// listView_Dict
//
this.listView_Dict.Dock = System.Windows.Forms.DockStyle.Fill;
this.listView_Dict.Location = new System.Drawing.Point(121, 30);
this.listView_Dict.Name = "listView_Dict";
this.listView_Dict.Size = new System.Drawing.Size(591, 335);
this.listView_Dict.TabIndex = 3;
//
// BusinessDataDictDef
//
this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
this.ClientSize = new System.Drawing.Size(712, 389);
this.Controls.Add(this.listView_Dict);
this.Controls.Add(this.treeView_Dict);
this.Controls.Add(this.panel1);
this.Controls.Add(this.toolBar1);
this.Name = "BusinessDataDictDef";
this.Text = "定义业务数据字典(视图)";
this.Load += new System.EventHandler(this.BusinessDataDictDef_Load);
this.ResumeLayout(false);
}
#endregion
private void BusinessDataDictDef_Load(object sender, System.EventArgs e)
{
}
private void splitter1_SplitterMoved(object sender, System.Windows.Forms.SplitterEventArgs e)
{
}
private void toolBar1_ButtonClick(object sender, System.Windows.Forms.ToolBarButtonClickEventArgs e)
{
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -