290 lines
14 KiB
C#
290 lines
14 KiB
C#
namespace AISAdmin
|
|
{
|
|
partial class Main
|
|
{
|
|
/// <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()
|
|
{
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Main));
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.comboBoxGroup = new System.Windows.Forms.ComboBox();
|
|
this.buttonNewGroup = new System.Windows.Forms.Button();
|
|
this.buttonEditGroup = new System.Windows.Forms.Button();
|
|
this.buttonDeleteGroup = new System.Windows.Forms.Button();
|
|
this.groupBoxZones = new System.Windows.Forms.GroupBox();
|
|
this.checkBoxZoneActive = new System.Windows.Forms.CheckBox();
|
|
this.buttonSaveZone = new System.Windows.Forms.Button();
|
|
this.textBoxZone = new System.Windows.Forms.TextBox();
|
|
this.buttonDeleteZone = new System.Windows.Forms.Button();
|
|
this.buttonEditZone = new System.Windows.Forms.Button();
|
|
this.buttonImportZone = new System.Windows.Forms.Button();
|
|
this.buttonZoneDown = new System.Windows.Forms.Button();
|
|
this.buttonZoneUp = new System.Windows.Forms.Button();
|
|
this.listBoxZones = new System.Windows.Forms.ListBox();
|
|
this.groupBoxAssignments = new System.Windows.Forms.GroupBox();
|
|
this.textBoxGroup = new System.Windows.Forms.TextBox();
|
|
this.buttonSaveGroup = new System.Windows.Forms.Button();
|
|
this.groupBoxZones.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(12, 14);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(45, 15);
|
|
this.label1.TabIndex = 0;
|
|
this.label1.Text = "Groups";
|
|
//
|
|
// comboBoxGroup
|
|
//
|
|
this.comboBoxGroup.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
|
this.comboBoxGroup.FormattingEnabled = true;
|
|
this.comboBoxGroup.Location = new System.Drawing.Point(63, 11);
|
|
this.comboBoxGroup.Name = "comboBoxGroup";
|
|
this.comboBoxGroup.Size = new System.Drawing.Size(137, 23);
|
|
this.comboBoxGroup.TabIndex = 1;
|
|
this.comboBoxGroup.SelectedIndexChanged += new System.EventHandler(this.comboBoxGroup_SelectedIndexChanged);
|
|
//
|
|
// buttonNewGroup
|
|
//
|
|
this.buttonNewGroup.Image = global::AISAdmin.Properties.Resources.document_plain_new;
|
|
this.buttonNewGroup.Location = new System.Drawing.Point(206, 6);
|
|
this.buttonNewGroup.Name = "buttonNewGroup";
|
|
this.buttonNewGroup.Size = new System.Drawing.Size(37, 31);
|
|
this.buttonNewGroup.TabIndex = 2;
|
|
this.buttonNewGroup.UseVisualStyleBackColor = true;
|
|
this.buttonNewGroup.Click += new System.EventHandler(this.buttonNewGroup_Click);
|
|
//
|
|
// buttonEditGroup
|
|
//
|
|
this.buttonEditGroup.Enabled = false;
|
|
this.buttonEditGroup.Image = global::AISAdmin.Properties.Resources.pencil;
|
|
this.buttonEditGroup.Location = new System.Drawing.Point(249, 6);
|
|
this.buttonEditGroup.Name = "buttonEditGroup";
|
|
this.buttonEditGroup.Size = new System.Drawing.Size(37, 31);
|
|
this.buttonEditGroup.TabIndex = 3;
|
|
this.buttonEditGroup.UseVisualStyleBackColor = true;
|
|
this.buttonEditGroup.Click += new System.EventHandler(this.buttonEditGroup_Click);
|
|
//
|
|
// buttonDeleteGroup
|
|
//
|
|
this.buttonDeleteGroup.Enabled = false;
|
|
this.buttonDeleteGroup.Image = global::AISAdmin.Properties.Resources.delete;
|
|
this.buttonDeleteGroup.Location = new System.Drawing.Point(292, 6);
|
|
this.buttonDeleteGroup.Name = "buttonDeleteGroup";
|
|
this.buttonDeleteGroup.Size = new System.Drawing.Size(37, 31);
|
|
this.buttonDeleteGroup.TabIndex = 4;
|
|
this.buttonDeleteGroup.UseVisualStyleBackColor = true;
|
|
this.buttonDeleteGroup.Click += new System.EventHandler(this.buttonDeleteGroup_Click);
|
|
//
|
|
// groupBoxZones
|
|
//
|
|
this.groupBoxZones.Controls.Add(this.checkBoxZoneActive);
|
|
this.groupBoxZones.Controls.Add(this.buttonSaveZone);
|
|
this.groupBoxZones.Controls.Add(this.textBoxZone);
|
|
this.groupBoxZones.Controls.Add(this.buttonDeleteZone);
|
|
this.groupBoxZones.Controls.Add(this.buttonEditZone);
|
|
this.groupBoxZones.Controls.Add(this.buttonImportZone);
|
|
this.groupBoxZones.Controls.Add(this.buttonZoneDown);
|
|
this.groupBoxZones.Controls.Add(this.buttonZoneUp);
|
|
this.groupBoxZones.Controls.Add(this.listBoxZones);
|
|
this.groupBoxZones.Location = new System.Drawing.Point(12, 43);
|
|
this.groupBoxZones.Name = "groupBoxZones";
|
|
this.groupBoxZones.Size = new System.Drawing.Size(776, 186);
|
|
this.groupBoxZones.TabIndex = 5;
|
|
this.groupBoxZones.TabStop = false;
|
|
this.groupBoxZones.Text = "Zones";
|
|
//
|
|
// checkBoxZoneActive
|
|
//
|
|
this.checkBoxZoneActive.AutoSize = true;
|
|
this.checkBoxZoneActive.Location = new System.Drawing.Point(237, 27);
|
|
this.checkBoxZoneActive.Name = "checkBoxZoneActive";
|
|
this.checkBoxZoneActive.Size = new System.Drawing.Size(59, 19);
|
|
this.checkBoxZoneActive.TabIndex = 11;
|
|
this.checkBoxZoneActive.Text = "Active";
|
|
this.checkBoxZoneActive.UseVisualStyleBackColor = true;
|
|
//
|
|
// buttonSaveZone
|
|
//
|
|
this.buttonSaveZone.Enabled = false;
|
|
this.buttonSaveZone.Image = global::AISAdmin.Properties.Resources.disk_blue;
|
|
this.buttonSaveZone.Location = new System.Drawing.Point(733, 22);
|
|
this.buttonSaveZone.Name = "buttonSaveZone";
|
|
this.buttonSaveZone.Size = new System.Drawing.Size(37, 31);
|
|
this.buttonSaveZone.TabIndex = 10;
|
|
this.buttonSaveZone.UseVisualStyleBackColor = true;
|
|
this.buttonSaveZone.Click += new System.EventHandler(this.buttonSaveZone_Click);
|
|
//
|
|
// textBoxZone
|
|
//
|
|
this.textBoxZone.Location = new System.Drawing.Point(525, 27);
|
|
this.textBoxZone.Name = "textBoxZone";
|
|
this.textBoxZone.ReadOnly = true;
|
|
this.textBoxZone.Size = new System.Drawing.Size(202, 23);
|
|
this.textBoxZone.TabIndex = 9;
|
|
//
|
|
// buttonDeleteZone
|
|
//
|
|
this.buttonDeleteZone.Enabled = false;
|
|
this.buttonDeleteZone.Image = global::AISAdmin.Properties.Resources.delete;
|
|
this.buttonDeleteZone.Location = new System.Drawing.Point(482, 22);
|
|
this.buttonDeleteZone.Name = "buttonDeleteZone";
|
|
this.buttonDeleteZone.Size = new System.Drawing.Size(37, 31);
|
|
this.buttonDeleteZone.TabIndex = 8;
|
|
this.buttonDeleteZone.UseVisualStyleBackColor = true;
|
|
this.buttonDeleteZone.Click += new System.EventHandler(this.buttonDeleteZone_Click);
|
|
//
|
|
// buttonEditZone
|
|
//
|
|
this.buttonEditZone.Enabled = false;
|
|
this.buttonEditZone.Image = global::AISAdmin.Properties.Resources.pencil;
|
|
this.buttonEditZone.Location = new System.Drawing.Point(439, 22);
|
|
this.buttonEditZone.Name = "buttonEditZone";
|
|
this.buttonEditZone.Size = new System.Drawing.Size(37, 31);
|
|
this.buttonEditZone.TabIndex = 6;
|
|
this.buttonEditZone.UseVisualStyleBackColor = true;
|
|
this.buttonEditZone.Click += new System.EventHandler(this.buttonEditZone_Click);
|
|
//
|
|
// buttonImportZone
|
|
//
|
|
this.buttonImportZone.Image = global::AISAdmin.Properties.Resources.import2;
|
|
this.buttonImportZone.Location = new System.Drawing.Point(396, 22);
|
|
this.buttonImportZone.Name = "buttonImportZone";
|
|
this.buttonImportZone.Size = new System.Drawing.Size(37, 31);
|
|
this.buttonImportZone.TabIndex = 5;
|
|
this.buttonImportZone.UseVisualStyleBackColor = true;
|
|
this.buttonImportZone.Click += new System.EventHandler(this.buttonImportZone_Click);
|
|
//
|
|
// buttonZoneDown
|
|
//
|
|
this.buttonZoneDown.Enabled = false;
|
|
this.buttonZoneDown.Image = global::AISAdmin.Properties.Resources.arrow_down_green;
|
|
this.buttonZoneDown.Location = new System.Drawing.Point(194, 145);
|
|
this.buttonZoneDown.Name = "buttonZoneDown";
|
|
this.buttonZoneDown.Size = new System.Drawing.Size(37, 31);
|
|
this.buttonZoneDown.TabIndex = 4;
|
|
this.buttonZoneDown.UseVisualStyleBackColor = true;
|
|
this.buttonZoneDown.Click += new System.EventHandler(this.buttonZoneDown_Click);
|
|
//
|
|
// buttonZoneUp
|
|
//
|
|
this.buttonZoneUp.Enabled = false;
|
|
this.buttonZoneUp.Image = global::AISAdmin.Properties.Resources.arrow_up_green;
|
|
this.buttonZoneUp.Location = new System.Drawing.Point(194, 22);
|
|
this.buttonZoneUp.Name = "buttonZoneUp";
|
|
this.buttonZoneUp.Size = new System.Drawing.Size(37, 31);
|
|
this.buttonZoneUp.TabIndex = 3;
|
|
this.buttonZoneUp.UseVisualStyleBackColor = true;
|
|
this.buttonZoneUp.Click += new System.EventHandler(this.buttonZoneUp_Click);
|
|
//
|
|
// listBoxZones
|
|
//
|
|
this.listBoxZones.Enabled = false;
|
|
this.listBoxZones.FormattingEnabled = true;
|
|
this.listBoxZones.ItemHeight = 15;
|
|
this.listBoxZones.Location = new System.Drawing.Point(6, 22);
|
|
this.listBoxZones.Name = "listBoxZones";
|
|
this.listBoxZones.Size = new System.Drawing.Size(182, 154);
|
|
this.listBoxZones.TabIndex = 0;
|
|
//
|
|
// groupBoxAssignments
|
|
//
|
|
this.groupBoxAssignments.Location = new System.Drawing.Point(12, 235);
|
|
this.groupBoxAssignments.Name = "groupBoxAssignments";
|
|
this.groupBoxAssignments.Size = new System.Drawing.Size(776, 203);
|
|
this.groupBoxAssignments.TabIndex = 6;
|
|
this.groupBoxAssignments.TabStop = false;
|
|
this.groupBoxAssignments.Text = "Assignments";
|
|
//
|
|
// textBoxGroup
|
|
//
|
|
this.textBoxGroup.Location = new System.Drawing.Point(335, 11);
|
|
this.textBoxGroup.Name = "textBoxGroup";
|
|
this.textBoxGroup.ReadOnly = true;
|
|
this.textBoxGroup.Size = new System.Drawing.Size(160, 23);
|
|
this.textBoxGroup.TabIndex = 7;
|
|
//
|
|
// buttonSaveGroup
|
|
//
|
|
this.buttonSaveGroup.Enabled = false;
|
|
this.buttonSaveGroup.Image = global::AISAdmin.Properties.Resources.disk_blue;
|
|
this.buttonSaveGroup.Location = new System.Drawing.Point(501, 6);
|
|
this.buttonSaveGroup.Name = "buttonSaveGroup";
|
|
this.buttonSaveGroup.Size = new System.Drawing.Size(37, 31);
|
|
this.buttonSaveGroup.TabIndex = 5;
|
|
this.buttonSaveGroup.UseVisualStyleBackColor = true;
|
|
this.buttonSaveGroup.Click += new System.EventHandler(this.buttonSaveGroup_Click);
|
|
//
|
|
// Main
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(800, 450);
|
|
this.Controls.Add(this.buttonSaveGroup);
|
|
this.Controls.Add(this.textBoxGroup);
|
|
this.Controls.Add(this.groupBoxAssignments);
|
|
this.Controls.Add(this.groupBoxZones);
|
|
this.Controls.Add(this.buttonDeleteGroup);
|
|
this.Controls.Add(this.buttonEditGroup);
|
|
this.Controls.Add(this.buttonNewGroup);
|
|
this.Controls.Add(this.comboBoxGroup);
|
|
this.Controls.Add(this.label1);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.Name = "Main";
|
|
this.Text = "AIS Admin";
|
|
this.Load += new System.EventHandler(this.Main_Load);
|
|
this.groupBoxZones.ResumeLayout(false);
|
|
this.groupBoxZones.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Label label1;
|
|
private ComboBox comboBoxGroup;
|
|
private Button buttonNewGroup;
|
|
private Button buttonEditGroup;
|
|
private Button buttonDeleteGroup;
|
|
private GroupBox groupBoxZones;
|
|
private GroupBox groupBoxAssignments;
|
|
private ListBox listBoxZones;
|
|
private Button buttonZoneDown;
|
|
private Button buttonZoneUp;
|
|
private TextBox textBoxGroup;
|
|
private Button buttonSaveGroup;
|
|
private Button buttonSaveZone;
|
|
private TextBox textBoxZone;
|
|
private Button buttonDeleteZone;
|
|
private Button buttonEditZone;
|
|
private Button buttonImportZone;
|
|
private CheckBox checkBoxZoneActive;
|
|
}
|
|
} |