namespace sharpsyntax
{
partial class LanguageForm
{
///
/// Required designer variable.
///
private System.ComponentModel.IContainer components = null;
///
/// Clean up any resources being used.
///
/// true if managed resources should be disposed; otherwise, false.
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent()
{
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.txtName = new System.Windows.Forms.TextBox();
this.cboCaseSensitive = new System.Windows.Forms.ComboBox();
this.label3 = new System.Windows.Forms.Label();
this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
this.btnOk = new System.Windows.Forms.Button();
this.btnCancel = new System.Windows.Forms.Button();
this.cboGroups = new System.Windows.Forms.ComboBox();
this.btnAddGroup = new System.Windows.Forms.Button();
this.btnEditGroup = new System.Windows.Forms.Button();
this.btnDeleteGroup = new System.Windows.Forms.Button();
this.flowLayoutPanel3 = new System.Windows.Forms.FlowLayoutPanel();
this.tableLayoutPanel1.SuspendLayout();
this.flowLayoutPanel1.SuspendLayout();
this.flowLayoutPanel3.SuspendLayout();
this.SuspendLayout();
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.ColumnCount = 4;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.tableLayoutPanel1.Controls.Add(this.label1, 1, 1);
this.tableLayoutPanel1.Controls.Add(this.txtName, 2, 1);
this.tableLayoutPanel1.Controls.Add(this.label3, 1, 3);
this.tableLayoutPanel1.Controls.Add(this.flowLayoutPanel1, 2, 6);
this.tableLayoutPanel1.Controls.Add(this.cboCaseSensitive, 2, 2);
this.tableLayoutPanel1.Controls.Add(this.label2, 1, 2);
this.tableLayoutPanel1.Controls.Add(this.flowLayoutPanel3, 2, 4);
this.tableLayoutPanel1.Controls.Add(this.cboGroups, 2, 3);
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = 7;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel1.Size = new System.Drawing.Size(419, 208);
this.tableLayoutPanel1.TabIndex = 0;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(23, 20);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(38, 13);
this.label1.TabIndex = 0;
this.label1.Text = "Name:";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(23, 46);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(78, 13);
this.label2.TabIndex = 1;
this.label2.Text = "Case sensitive:";
//
// txtName
//
this.txtName.Dock = System.Windows.Forms.DockStyle.Fill;
this.txtName.Location = new System.Drawing.Point(107, 23);
this.txtName.Name = "txtName";
this.txtName.Size = new System.Drawing.Size(289, 20);
this.txtName.TabIndex = 2;
//
// cboCaseSensitive
//
this.cboCaseSensitive.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cboCaseSensitive.FormattingEnabled = true;
this.cboCaseSensitive.Items.AddRange(new object[] {
"true",
"false"});
this.cboCaseSensitive.Location = new System.Drawing.Point(107, 49);
this.cboCaseSensitive.Name = "cboCaseSensitive";
this.cboCaseSensitive.Size = new System.Drawing.Size(121, 21);
this.cboCaseSensitive.TabIndex = 3;
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(23, 73);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(44, 13);
this.label3.TabIndex = 4;
this.label3.Text = "Groups:";
//
// flowLayoutPanel1
//
this.flowLayoutPanel1.Controls.Add(this.btnOk);
this.flowLayoutPanel1.Controls.Add(this.btnCancel);
this.flowLayoutPanel1.Location = new System.Drawing.Point(107, 163);
this.flowLayoutPanel1.Name = "flowLayoutPanel1";
this.flowLayoutPanel1.Size = new System.Drawing.Size(286, 33);
this.flowLayoutPanel1.TabIndex = 6;
//
// btnOk
//
this.btnOk.Location = new System.Drawing.Point(3, 3);
this.btnOk.Name = "btnOk";
this.btnOk.Size = new System.Drawing.Size(75, 23);
this.btnOk.TabIndex = 0;
this.btnOk.Text = "Ok";
this.btnOk.UseVisualStyleBackColor = true;
this.btnOk.Click += new System.EventHandler(this.btnOk_Click);
//
// btnCancel
//
this.btnCancel.Location = new System.Drawing.Point(84, 3);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(75, 23);
this.btnCancel.TabIndex = 1;
this.btnCancel.Text = "Cancel";
this.btnCancel.UseVisualStyleBackColor = true;
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
// cboGroups
//
this.cboGroups.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cboGroups.FormattingEnabled = true;
this.cboGroups.Location = new System.Drawing.Point(107, 76);
this.cboGroups.Name = "cboGroups";
this.cboGroups.Size = new System.Drawing.Size(121, 21);
this.cboGroups.TabIndex = 0;
//
// btnAddGroup
//
this.btnAddGroup.Location = new System.Drawing.Point(3, 3);
this.btnAddGroup.Name = "btnAddGroup";
this.btnAddGroup.Size = new System.Drawing.Size(75, 23);
this.btnAddGroup.TabIndex = 2;
this.btnAddGroup.Text = "Add";
this.btnAddGroup.UseVisualStyleBackColor = true;
this.btnAddGroup.Click += new System.EventHandler(this.btnAddGroup_Click);
//
// btnEditGroup
//
this.btnEditGroup.Location = new System.Drawing.Point(84, 3);
this.btnEditGroup.Name = "btnEditGroup";
this.btnEditGroup.Size = new System.Drawing.Size(75, 23);
this.btnEditGroup.TabIndex = 3;
this.btnEditGroup.Text = "Edit";
this.btnEditGroup.UseVisualStyleBackColor = true;
this.btnEditGroup.Click += new System.EventHandler(this.btnEditGroup_Click);
//
// btnDeleteGroup
//
this.btnDeleteGroup.Location = new System.Drawing.Point(165, 3);
this.btnDeleteGroup.Name = "btnDeleteGroup";
this.btnDeleteGroup.Size = new System.Drawing.Size(75, 23);
this.btnDeleteGroup.TabIndex = 4;
this.btnDeleteGroup.Text = "Delete";
this.btnDeleteGroup.UseVisualStyleBackColor = true;
this.btnDeleteGroup.Click += new System.EventHandler(this.btnDeleteGroup_Click);
//
// flowLayoutPanel3
//
this.flowLayoutPanel3.Controls.Add(this.btnAddGroup);
this.flowLayoutPanel3.Controls.Add(this.btnEditGroup);
this.flowLayoutPanel3.Controls.Add(this.btnDeleteGroup);
this.flowLayoutPanel3.Location = new System.Drawing.Point(107, 103);
this.flowLayoutPanel3.Name = "flowLayoutPanel3";
this.flowLayoutPanel3.Size = new System.Drawing.Size(286, 34);
this.flowLayoutPanel3.TabIndex = 8;
//
// LanguageForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(419, 208);
this.Controls.Add(this.tableLayoutPanel1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Name = "LanguageForm";
this.Text = "Language";
this.tableLayoutPanel1.ResumeLayout(false);
this.tableLayoutPanel1.PerformLayout();
this.flowLayoutPanel1.ResumeLayout(false);
this.flowLayoutPanel3.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox txtName;
private System.Windows.Forms.ComboBox cboCaseSensitive;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1;
private System.Windows.Forms.Button btnOk;
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.ComboBox cboGroups;
private System.Windows.Forms.Button btnAddGroup;
private System.Windows.Forms.Button btnEditGroup;
private System.Windows.Forms.Button btnDeleteGroup;
private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel3;
}
}