namespace GroundZero.KeyCodes { partial class ALRequests { /// /// 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() { System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle(); this.statusStrip1 = new System.Windows.Forms.StatusStrip(); this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel(); this.toolStripProgressBar1 = new System.Windows.Forms.ToolStripProgressBar(); this.menuStrip1 = new System.Windows.Forms.MenuStrip(); this.abortToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.checkForRequestsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.grid = new System.Windows.Forms.DataGridView(); this.index = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.Request = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.Process = new System.Windows.Forms.DataGridViewButtonColumn(); this.statusStrip1.SuspendLayout(); this.menuStrip1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.grid)).BeginInit(); this.SuspendLayout(); // // statusStrip1 // this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolStripStatusLabel1, this.toolStripProgressBar1}); this.statusStrip1.Location = new System.Drawing.Point(0, 660); this.statusStrip1.Name = "statusStrip1"; this.statusStrip1.Size = new System.Drawing.Size(1305, 22); this.statusStrip1.TabIndex = 1; this.statusStrip1.Text = "statusStrip1"; // // toolStripStatusLabel1 // this.toolStripStatusLabel1.Name = "toolStripStatusLabel1"; this.toolStripStatusLabel1.Size = new System.Drawing.Size(0, 17); // // toolStripProgressBar1 // this.toolStripProgressBar1.Name = "toolStripProgressBar1"; this.toolStripProgressBar1.Size = new System.Drawing.Size(100, 16); // // menuStrip1 // this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.abortToolStripMenuItem, this.checkForRequestsToolStripMenuItem}); this.menuStrip1.Location = new System.Drawing.Point(0, 0); this.menuStrip1.Name = "menuStrip1"; this.menuStrip1.Size = new System.Drawing.Size(1305, 24); this.menuStrip1.TabIndex = 2; this.menuStrip1.Text = "menuStrip1"; // // abortToolStripMenuItem // this.abortToolStripMenuItem.Name = "abortToolStripMenuItem"; this.abortToolStripMenuItem.Size = new System.Drawing.Size(49, 20); this.abortToolStripMenuItem.Text = "&Abort"; this.abortToolStripMenuItem.Visible = false; this.abortToolStripMenuItem.Click += new System.EventHandler(this.abortToolStripMenuItem_Click); // // checkForRequestsToolStripMenuItem // this.checkForRequestsToolStripMenuItem.Name = "checkForRequestsToolStripMenuItem"; this.checkForRequestsToolStripMenuItem.Size = new System.Drawing.Size(117, 20); this.checkForRequestsToolStripMenuItem.Text = "&Check for requests"; this.checkForRequestsToolStripMenuItem.Click += new System.EventHandler(this.checkForRequestsToolStripMenuItem_Click); // // grid // this.grid.AllowUserToAddRows = false; this.grid.AllowUserToDeleteRows = false; this.grid.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.grid.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this.index, this.Request, this.Process}); this.grid.Dock = System.Windows.Forms.DockStyle.Fill; this.grid.Location = new System.Drawing.Point(0, 24); this.grid.MultiSelect = false; this.grid.Name = "grid"; this.grid.ReadOnly = true; this.grid.RowHeadersVisible = false; this.grid.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; this.grid.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect; this.grid.Size = new System.Drawing.Size(1305, 636); this.grid.TabIndex = 3; this.grid.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.grid_CellClick); // // index // this.index.HeaderText = "index"; this.index.Name = "index"; this.index.ReadOnly = true; this.index.Visible = false; // // Request // this.Request.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill; dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True; this.Request.DefaultCellStyle = dataGridViewCellStyle1; this.Request.HeaderText = "Request"; this.Request.Name = "Request"; this.Request.ReadOnly = true; this.Request.Resizable = System.Windows.Forms.DataGridViewTriState.False; // // Process // this.Process.HeaderText = "Process"; this.Process.Name = "Process"; this.Process.ReadOnly = true; this.Process.Text = "Process"; this.Process.UseColumnTextForButtonValue = true; // // ALRequests // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(1305, 682); this.Controls.Add(this.grid); this.Controls.Add(this.menuStrip1); this.Controls.Add(this.statusStrip1); this.Name = "ALRequests"; this.Text = "Trial license request processor"; this.WindowState = System.Windows.Forms.FormWindowState.Maximized; this.Load += new System.EventHandler(this.ALRequests_Load); this.statusStrip1.ResumeLayout(false); this.statusStrip1.PerformLayout(); this.menuStrip1.ResumeLayout(false); this.menuStrip1.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.grid)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.StatusStrip statusStrip1; private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel1; private System.Windows.Forms.ToolStripProgressBar toolStripProgressBar1; private System.Windows.Forms.MenuStrip menuStrip1; private System.Windows.Forms.ToolStripMenuItem abortToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem checkForRequestsToolStripMenuItem; private System.Windows.Forms.DataGridView grid; private System.Windows.Forms.DataGridViewTextBoxColumn index; private System.Windows.Forms.DataGridViewTextBoxColumn Request; private System.Windows.Forms.DataGridViewButtonColumn Process; } }