EduNetworkBuilder/EduNetworkBuilder/FirewallEditor.Designer.cs

123 lines
5.5 KiB
C#

namespace EduNetworkBuilder
{
partial class FirewallEditor
{
/// <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.lbRules = new System.Windows.Forms.ListBox();
this.btnNew = new System.Windows.Forms.Button();
this.btnDone = new System.Windows.Forms.Button();
this.btnDel = new System.Windows.Forms.Button();
this.btnEdit = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// lbRules
//
this.lbRules.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.lbRules.FormattingEnabled = true;
this.lbRules.ItemHeight = 16;
this.lbRules.Location = new System.Drawing.Point(12, 23);
this.lbRules.Name = "lbRules";
this.lbRules.Size = new System.Drawing.Size(335, 212);
this.lbRules.TabIndex = 0;
this.lbRules.DoubleClick += new System.EventHandler(this.lbRules_DoubleClick);
this.lbRules.MouseDown += new System.Windows.Forms.MouseEventHandler(this.lbRules_MouseDown);
//
// btnNew
//
this.btnNew.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.btnNew.Location = new System.Drawing.Point(12, 249);
this.btnNew.Name = "btnNew";
this.btnNew.Size = new System.Drawing.Size(58, 23);
this.btnNew.TabIndex = 1;
this.btnNew.Text = "New";
this.btnNew.UseVisualStyleBackColor = true;
this.btnNew.Click += new System.EventHandler(this.btnNew_Click);
//
// btnDone
//
this.btnDone.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnDone.Location = new System.Drawing.Point(272, 249);
this.btnDone.Name = "btnDone";
this.btnDone.Size = new System.Drawing.Size(75, 23);
this.btnDone.TabIndex = 2;
this.btnDone.Text = "Done";
this.btnDone.UseVisualStyleBackColor = true;
this.btnDone.Click += new System.EventHandler(this.btnDone_Click);
//
// btnDel
//
this.btnDel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.btnDel.Location = new System.Drawing.Point(76, 249);
this.btnDel.Name = "btnDel";
this.btnDel.Size = new System.Drawing.Size(57, 23);
this.btnDel.TabIndex = 3;
this.btnDel.Text = "Delete";
this.btnDel.UseVisualStyleBackColor = true;
this.btnDel.Click += new System.EventHandler(this.btnDel_Click);
//
// btnEdit
//
this.btnEdit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.btnEdit.Location = new System.Drawing.Point(139, 249);
this.btnEdit.Name = "btnEdit";
this.btnEdit.Size = new System.Drawing.Size(55, 23);
this.btnEdit.TabIndex = 4;
this.btnEdit.Text = "Edit";
this.btnEdit.UseVisualStyleBackColor = true;
this.btnEdit.Click += new System.EventHandler(this.btnEdit_Click);
//
// FirewallEditor
//
this.AcceptButton = this.btnDone;
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(359, 277);
this.Controls.Add(this.btnEdit);
this.Controls.Add(this.btnDel);
this.Controls.Add(this.btnDone);
this.Controls.Add(this.btnNew);
this.Controls.Add(this.lbRules);
this.MinimumSize = new System.Drawing.Size(309, 250);
this.Name = "FirewallEditor";
this.Text = "FirewallEditor";
this.Shown += new System.EventHandler(this.FirewallEditor_Shown);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.ListBox lbRules;
private System.Windows.Forms.Button btnNew;
private System.Windows.Forms.Button btnDone;
private System.Windows.Forms.Button btnDel;
private System.Windows.Forms.Button btnEdit;
}
}