129 lines
		
	
	
		
			6.3 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			129 lines
		
	
	
		
			6.3 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace DocumentManagement
 | ||
| {
 | ||
|     partial class ucClassify
 | ||
|     {
 | ||
|         /// <summary> 
 | ||
|         /// 必需的设计器变量。
 | ||
|         /// </summary>
 | ||
|         private System.ComponentModel.IContainer components = null;
 | ||
| 
 | ||
|         /// <summary> 
 | ||
|         /// 清理所有正在使用的资源。
 | ||
|         /// </summary>
 | ||
|         /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
 | ||
|         protected override void Dispose(bool disposing)
 | ||
|         {
 | ||
|             if (disposing && (components != null))
 | ||
|             {
 | ||
|                 components.Dispose();
 | ||
|             }
 | ||
|             base.Dispose(disposing);
 | ||
|         }
 | ||
| 
 | ||
|         #region 组件设计器生成的代码
 | ||
| 
 | ||
|         /// <summary> 
 | ||
|         /// 设计器支持所需的方法 - 不要
 | ||
|         /// 使用代码编辑器修改此方法的内容。
 | ||
|         /// </summary>
 | ||
|         private void InitializeComponent()
 | ||
|         {
 | ||
|             this.components = new System.ComponentModel.Container();
 | ||
|             this.treeView1 = new System.Windows.Forms.TreeView();
 | ||
|             this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
 | ||
|             this.上移ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
 | ||
|             this.下移ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
 | ||
|             this.添加同级目录ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
 | ||
|             this.添加子目录ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
 | ||
|             this.重命名当前节点ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
 | ||
|             this.删除当前节点ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
 | ||
|             this.contextMenuStrip1.SuspendLayout();
 | ||
|             this.SuspendLayout();
 | ||
|             // 
 | ||
|             // treeView1
 | ||
|             // 
 | ||
|             this.treeView1.CheckBoxes = true;
 | ||
|             this.treeView1.Dock = System.Windows.Forms.DockStyle.Fill;
 | ||
|             this.treeView1.Location = new System.Drawing.Point(0, 0);
 | ||
|             this.treeView1.Name = "treeView1";
 | ||
|             this.treeView1.Size = new System.Drawing.Size(204, 349);
 | ||
|             this.treeView1.TabIndex = 0;
 | ||
|             // 
 | ||
|             // contextMenuStrip1
 | ||
|             // 
 | ||
|             this.contextMenuStrip1.Font = new System.Drawing.Font("Microsoft YaHei UI", 9.5F);
 | ||
|             this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
 | ||
|             this.上移ToolStripMenuItem,
 | ||
|             this.下移ToolStripMenuItem,
 | ||
|             this.添加同级目录ToolStripMenuItem,
 | ||
|             this.添加子目录ToolStripMenuItem,
 | ||
|             this.重命名当前节点ToolStripMenuItem,
 | ||
|             this.删除当前节点ToolStripMenuItem});
 | ||
|             this.contextMenuStrip1.Name = "contextMenuStrip1";
 | ||
|             this.contextMenuStrip1.Size = new System.Drawing.Size(170, 148);
 | ||
|             // 
 | ||
|             // 上移ToolStripMenuItem
 | ||
|             // 
 | ||
|             this.上移ToolStripMenuItem.Name = "上移ToolStripMenuItem";
 | ||
|             this.上移ToolStripMenuItem.Size = new System.Drawing.Size(169, 24);
 | ||
|             this.上移ToolStripMenuItem.Text = "上移";
 | ||
|             this.上移ToolStripMenuItem.Click += new System.EventHandler(this.上移ToolStripMenuItem_Click);
 | ||
|             // 
 | ||
|             // 下移ToolStripMenuItem
 | ||
|             // 
 | ||
|             this.下移ToolStripMenuItem.Name = "下移ToolStripMenuItem";
 | ||
|             this.下移ToolStripMenuItem.Size = new System.Drawing.Size(169, 24);
 | ||
|             this.下移ToolStripMenuItem.Text = "下移";
 | ||
|             this.下移ToolStripMenuItem.Click += new System.EventHandler(this.下移ToolStripMenuItem_Click);
 | ||
|             // 
 | ||
|             // 添加同级目录ToolStripMenuItem
 | ||
|             // 
 | ||
|             this.添加同级目录ToolStripMenuItem.Name = "添加同级目录ToolStripMenuItem";
 | ||
|             this.添加同级目录ToolStripMenuItem.Size = new System.Drawing.Size(169, 24);
 | ||
|             this.添加同级目录ToolStripMenuItem.Text = "添加同级目录";
 | ||
|             // 
 | ||
|             // 添加子目录ToolStripMenuItem
 | ||
|             // 
 | ||
|             this.添加子目录ToolStripMenuItem.Name = "添加子目录ToolStripMenuItem";
 | ||
|             this.添加子目录ToolStripMenuItem.Size = new System.Drawing.Size(169, 24);
 | ||
|             this.添加子目录ToolStripMenuItem.Text = "添加子文档";
 | ||
|             // 
 | ||
|             // 重命名当前节点ToolStripMenuItem
 | ||
|             // 
 | ||
|             this.重命名当前节点ToolStripMenuItem.Name = "重命名当前节点ToolStripMenuItem";
 | ||
|             this.重命名当前节点ToolStripMenuItem.Size = new System.Drawing.Size(169, 24);
 | ||
|             this.重命名当前节点ToolStripMenuItem.Text = "重命名当前节点";
 | ||
|             // 
 | ||
|             // 删除当前节点ToolStripMenuItem
 | ||
|             // 
 | ||
|             this.删除当前节点ToolStripMenuItem.Name = "删除当前节点ToolStripMenuItem";
 | ||
|             this.删除当前节点ToolStripMenuItem.Size = new System.Drawing.Size(169, 24);
 | ||
|             this.删除当前节点ToolStripMenuItem.Text = "删除当前节点";
 | ||
|             // 
 | ||
|             // ucClassify
 | ||
|             // 
 | ||
|             this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 13F);
 | ||
|             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
 | ||
|             this.Controls.Add(this.treeView1);
 | ||
|             this.Font = new System.Drawing.Font("宋体", 9.5F);
 | ||
|             this.Name = "ucClassify";
 | ||
|             this.Size = new System.Drawing.Size(204, 349);
 | ||
|             this.Load += new System.EventHandler(this.ucClassify_Load);
 | ||
|             this.contextMenuStrip1.ResumeLayout(false);
 | ||
|             this.ResumeLayout(false);
 | ||
| 
 | ||
|         }
 | ||
| 
 | ||
|         #endregion
 | ||
| 
 | ||
|         private System.Windows.Forms.TreeView treeView1;
 | ||
|         private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
 | ||
|         private System.Windows.Forms.ToolStripMenuItem 上移ToolStripMenuItem;
 | ||
|         private System.Windows.Forms.ToolStripMenuItem 下移ToolStripMenuItem;
 | ||
|         private System.Windows.Forms.ToolStripMenuItem 添加同级目录ToolStripMenuItem;
 | ||
|         private System.Windows.Forms.ToolStripMenuItem 添加子目录ToolStripMenuItem;
 | ||
|         private System.Windows.Forms.ToolStripMenuItem 删除当前节点ToolStripMenuItem;
 | ||
|         private System.Windows.Forms.ToolStripMenuItem 重命名当前节点ToolStripMenuItem;
 | ||
|     }
 | ||
| }
 |