Newer
Older
GHFX_REFACTOR / Backup / FrmRegionTypeMgr.Designer.cs
wxn on 2 Nov 2016 6 KB 提交
namespace Cyberpipe
{
    partial class FrmRegionTypeMgr
    {
        /// <summary>
        /// Required designer variable.
        /// </summary>
        private System.ComponentModel.IContainer components = null;

        /// <summary>
        /// Clean up any resources being used.
        /// </summary>
        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }

        #region Windows Form Designer generated code

        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.Windows.Forms.TreeNode treeNode1 = new System.Windows.Forms.TreeNode("部门类型");
            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.buttonX1 = new DevComponents.DotNetBar.ButtonX();
            this.contextMenuStrip1.SuspendLayout();
            this.SuspendLayout();
            // 
            // treeView1
            // 
            this.treeView1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                        | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.treeView1.Location = new System.Drawing.Point(12, 12);
            this.treeView1.Name = "treeView1";
            treeNode1.Name = "部门类型";
            treeNode1.Tag = "-1";
            treeNode1.Text = "部门类型";
            this.treeView1.Nodes.AddRange(new System.Windows.Forms.TreeNode[] {
            treeNode1});
            this.treeView1.Size = new System.Drawing.Size(197, 273);
            this.treeView1.TabIndex = 0;
            this.treeView1.MouseClick += new System.Windows.Forms.MouseEventHandler(this.treeView1_MouseClick);
            this.treeView1.NodeMouseClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.treeView1_NodeMouseClick);
            // 
            // contextMenuStrip1
            // 
            this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.添加部门类型ToolStripMenuItem,
            this.修改部门类型信息ToolStripMenuItem,
            this.删除部门类型信息ToolStripMenuItem});
            this.contextMenuStrip1.Name = "contextMenuStrip1";
            this.contextMenuStrip1.Size = new System.Drawing.Size(179, 70);
            this.contextMenuStrip1.Text = "添加部门类型";
            // 
            // 添加部门类型ToolStripMenuItem
            // 
            this.添加部门类型ToolStripMenuItem.Name = "添加部门类型ToolStripMenuItem";
            this.添加部门类型ToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
            this.添加部门类型ToolStripMenuItem.Text = "添加部门类型";
            this.添加部门类型ToolStripMenuItem.Click += new System.EventHandler(this.添加部门类型ToolStripMenuItem_Click);
            // 
            // 修改部门类型信息ToolStripMenuItem
            // 
            this.修改部门类型信息ToolStripMenuItem.Name = "修改部门类型信息ToolStripMenuItem";
            this.修改部门类型信息ToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
            this.修改部门类型信息ToolStripMenuItem.Text = "修改部门类型信息";
            this.修改部门类型信息ToolStripMenuItem.Click += new System.EventHandler(this.修改部门类型信息ToolStripMenuItem_Click);
            // 
            // 删除部门类型信息ToolStripMenuItem
            // 
            this.删除部门类型信息ToolStripMenuItem.Name = "删除部门类型信息ToolStripMenuItem";
            this.删除部门类型信息ToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
            this.删除部门类型信息ToolStripMenuItem.Text = "删除部门类型信息";
            this.删除部门类型信息ToolStripMenuItem.Click += new System.EventHandler(this.删除部门类型信息ToolStripMenuItem_Click);
            // 
            // buttonX1
            // 
            this.buttonX1.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            this.buttonX1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.buttonX1.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            this.buttonX1.Location = new System.Drawing.Point(134, 296);
            this.buttonX1.Name = "buttonX1";
            this.buttonX1.Size = new System.Drawing.Size(75, 23);
            this.buttonX1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.buttonX1.TabIndex = 1;
            this.buttonX1.Text = "关闭";
            this.buttonX1.Click += new System.EventHandler(this.buttonX1_Click);
            // 
            // FrmRegionTypeMgr
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(221, 331);
            this.Controls.Add(this.buttonX1);
            this.Controls.Add(this.treeView1);
            this.EnableGlass = false;
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
            this.MaximizeBox = false;
            this.Name = "FrmRegionTypeMgr";
            this.ShowIcon = false;
            this.Text = "部门类型管理";
            this.Load += new System.EventHandler(this.FrmRegionTypeMgr_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 DevComponents.DotNetBar.ButtonX buttonX1;

    }
}