262 lines
13 KiB
C#
262 lines
13 KiB
C#
|
|
namespace CPSO.Forms
|
|||
|
|
{
|
|||
|
|
partial class FrmEditCommands
|
|||
|
|
{
|
|||
|
|
/// <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.gbProperties = new System.Windows.Forms.GroupBox();
|
|||
|
|
this.dgvCommands = new System.Windows.Forms.DataGridView();
|
|||
|
|
this.btnOK = new System.Windows.Forms.Button();
|
|||
|
|
this.btnCancel = new System.Windows.Forms.Button();
|
|||
|
|
this.btnClearAll = new System.Windows.Forms.Button();
|
|||
|
|
this.msMain = new System.Windows.Forms.MenuStrip();
|
|||
|
|
this.tsmiFile = new System.Windows.Forms.ToolStripMenuItem();
|
|||
|
|
this.tsmiOpen = new System.Windows.Forms.ToolStripMenuItem();
|
|||
|
|
this.tsmiSaveAs = new System.Windows.Forms.ToolStripMenuItem();
|
|||
|
|
this.tsmiDividerFile1 = new System.Windows.Forms.ToolStripSeparator();
|
|||
|
|
this.tsmiClose = new System.Windows.Forms.ToolStripMenuItem();
|
|||
|
|
this.btnReset = new System.Windows.Forms.Button();
|
|||
|
|
this.tsmiView = new System.Windows.Forms.ToolStripMenuItem();
|
|||
|
|
this.tsmiColorByType = new System.Windows.Forms.ToolStripMenuItem();
|
|||
|
|
this.tsmiColorByTime = new System.Windows.Forms.ToolStripMenuItem();
|
|||
|
|
this.btnReorganize = new System.Windows.Forms.Button();
|
|||
|
|
this.gbProperties.SuspendLayout();
|
|||
|
|
((System.ComponentModel.ISupportInitialize)(this.dgvCommands)).BeginInit();
|
|||
|
|
this.msMain.SuspendLayout();
|
|||
|
|
this.SuspendLayout();
|
|||
|
|
//
|
|||
|
|
// gbProperties
|
|||
|
|
//
|
|||
|
|
this.gbProperties.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.gbProperties.Controls.Add(this.dgvCommands);
|
|||
|
|
this.gbProperties.Location = new System.Drawing.Point(12, 27);
|
|||
|
|
this.gbProperties.Name = "gbProperties";
|
|||
|
|
this.gbProperties.Size = new System.Drawing.Size(760, 293);
|
|||
|
|
this.gbProperties.TabIndex = 0;
|
|||
|
|
this.gbProperties.TabStop = false;
|
|||
|
|
this.gbProperties.Text = "Data";
|
|||
|
|
//
|
|||
|
|
// dgvCommands
|
|||
|
|
//
|
|||
|
|
this.dgvCommands.AllowDrop = true;
|
|||
|
|
this.dgvCommands.AllowUserToAddRows = false;
|
|||
|
|
this.dgvCommands.AllowUserToResizeRows = false;
|
|||
|
|
this.dgvCommands.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.dgvCommands.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|||
|
|
this.dgvCommands.Location = new System.Drawing.Point(3, 19);
|
|||
|
|
this.dgvCommands.Name = "dgvCommands";
|
|||
|
|
this.dgvCommands.ReadOnly = true;
|
|||
|
|
this.dgvCommands.Size = new System.Drawing.Size(751, 268);
|
|||
|
|
this.dgvCommands.TabIndex = 0;
|
|||
|
|
this.dgvCommands.RowPrePaint += new System.Windows.Forms.DataGridViewRowPrePaintEventHandler(this.dgvCommands_RowPrePaint);
|
|||
|
|
this.dgvCommands.UserDeletingRow += new System.Windows.Forms.DataGridViewRowCancelEventHandler(this.dgvCommands_UserDeletingRow);
|
|||
|
|
this.dgvCommands.DragDrop += new System.Windows.Forms.DragEventHandler(this.dgvCommands_DragDrop);
|
|||
|
|
//
|
|||
|
|
// btnOK
|
|||
|
|
//
|
|||
|
|
this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|||
|
|
this.btnOK.Location = new System.Drawing.Point(610, 326);
|
|||
|
|
this.btnOK.Name = "btnOK";
|
|||
|
|
this.btnOK.Size = new System.Drawing.Size(75, 23);
|
|||
|
|
this.btnOK.TabIndex = 13;
|
|||
|
|
this.btnOK.Text = "OK";
|
|||
|
|
this.btnOK.UseVisualStyleBackColor = true;
|
|||
|
|
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
|
|||
|
|
//
|
|||
|
|
// btnCancel
|
|||
|
|
//
|
|||
|
|
this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|||
|
|
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|||
|
|
this.btnCancel.Location = new System.Drawing.Point(691, 326);
|
|||
|
|
this.btnCancel.Name = "btnCancel";
|
|||
|
|
this.btnCancel.Size = new System.Drawing.Size(75, 23);
|
|||
|
|
this.btnCancel.TabIndex = 12;
|
|||
|
|
this.btnCancel.Text = "Cancel";
|
|||
|
|
this.btnCancel.UseVisualStyleBackColor = true;
|
|||
|
|
//
|
|||
|
|
// btnClearAll
|
|||
|
|
//
|
|||
|
|
this.btnClearAll.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|||
|
|
this.btnClearAll.Location = new System.Drawing.Point(177, 326);
|
|||
|
|
this.btnClearAll.Name = "btnClearAll";
|
|||
|
|
this.btnClearAll.Size = new System.Drawing.Size(75, 23);
|
|||
|
|
this.btnClearAll.TabIndex = 14;
|
|||
|
|
this.btnClearAll.Text = "Clear All";
|
|||
|
|
this.btnClearAll.UseVisualStyleBackColor = true;
|
|||
|
|
this.btnClearAll.Click += new System.EventHandler(this.btnClearAll_Click);
|
|||
|
|
//
|
|||
|
|
// msMain
|
|||
|
|
//
|
|||
|
|
this.msMain.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|||
|
|
this.tsmiFile,
|
|||
|
|
this.tsmiView});
|
|||
|
|
this.msMain.Location = new System.Drawing.Point(0, 0);
|
|||
|
|
this.msMain.Name = "msMain";
|
|||
|
|
this.msMain.Size = new System.Drawing.Size(784, 24);
|
|||
|
|
this.msMain.TabIndex = 15;
|
|||
|
|
this.msMain.Text = "menuStrip1";
|
|||
|
|
//
|
|||
|
|
// tsmiFile
|
|||
|
|
//
|
|||
|
|
this.tsmiFile.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|||
|
|
this.tsmiOpen,
|
|||
|
|
this.tsmiSaveAs,
|
|||
|
|
this.tsmiDividerFile1,
|
|||
|
|
this.tsmiClose});
|
|||
|
|
this.tsmiFile.Name = "tsmiFile";
|
|||
|
|
this.tsmiFile.Size = new System.Drawing.Size(37, 20);
|
|||
|
|
this.tsmiFile.Text = "File";
|
|||
|
|
//
|
|||
|
|
// tsmiOpen
|
|||
|
|
//
|
|||
|
|
this.tsmiOpen.Image = global::CPSO.Properties.Resources.Open;
|
|||
|
|
this.tsmiOpen.Name = "tsmiOpen";
|
|||
|
|
this.tsmiOpen.Size = new System.Drawing.Size(180, 22);
|
|||
|
|
this.tsmiOpen.Text = "Open";
|
|||
|
|
this.tsmiOpen.Click += new System.EventHandler(this.tsmiOpen_Click);
|
|||
|
|
//
|
|||
|
|
// tsmiSaveAs
|
|||
|
|
//
|
|||
|
|
this.tsmiSaveAs.Image = global::CPSO.Properties.Resources.Save;
|
|||
|
|
this.tsmiSaveAs.Name = "tsmiSaveAs";
|
|||
|
|
this.tsmiSaveAs.Size = new System.Drawing.Size(180, 22);
|
|||
|
|
this.tsmiSaveAs.Text = "Save As";
|
|||
|
|
this.tsmiSaveAs.Click += new System.EventHandler(this.tsmiSaveAs_Click);
|
|||
|
|
//
|
|||
|
|
// tsmiDividerFile1
|
|||
|
|
//
|
|||
|
|
this.tsmiDividerFile1.Name = "tsmiDividerFile1";
|
|||
|
|
this.tsmiDividerFile1.Size = new System.Drawing.Size(177, 6);
|
|||
|
|
//
|
|||
|
|
// tsmiClose
|
|||
|
|
//
|
|||
|
|
this.tsmiClose.Name = "tsmiClose";
|
|||
|
|
this.tsmiClose.Size = new System.Drawing.Size(180, 22);
|
|||
|
|
this.tsmiClose.Text = "Close";
|
|||
|
|
this.tsmiClose.Click += new System.EventHandler(this.tsmiClose_Click);
|
|||
|
|
//
|
|||
|
|
// btnReset
|
|||
|
|
//
|
|||
|
|
this.btnReset.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|||
|
|
this.btnReset.Location = new System.Drawing.Point(15, 326);
|
|||
|
|
this.btnReset.Name = "btnReset";
|
|||
|
|
this.btnReset.Size = new System.Drawing.Size(75, 23);
|
|||
|
|
this.btnReset.TabIndex = 16;
|
|||
|
|
this.btnReset.Text = "Reset";
|
|||
|
|
this.btnReset.UseVisualStyleBackColor = true;
|
|||
|
|
this.btnReset.Click += new System.EventHandler(this.btnReset_Click);
|
|||
|
|
//
|
|||
|
|
// tsmiView
|
|||
|
|
//
|
|||
|
|
this.tsmiView.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|||
|
|
this.tsmiColorByType,
|
|||
|
|
this.tsmiColorByTime});
|
|||
|
|
this.tsmiView.Name = "tsmiView";
|
|||
|
|
this.tsmiView.Size = new System.Drawing.Size(44, 20);
|
|||
|
|
this.tsmiView.Text = "View";
|
|||
|
|
//
|
|||
|
|
// tsmiColorByType
|
|||
|
|
//
|
|||
|
|
this.tsmiColorByType.Checked = true;
|
|||
|
|
this.tsmiColorByType.CheckState = System.Windows.Forms.CheckState.Checked;
|
|||
|
|
this.tsmiColorByType.Name = "tsmiColorByType";
|
|||
|
|
this.tsmiColorByType.Size = new System.Drawing.Size(180, 22);
|
|||
|
|
this.tsmiColorByType.Text = "Color by type";
|
|||
|
|
this.tsmiColorByType.Click += new System.EventHandler(this.tsmiColorByType_Click);
|
|||
|
|
//
|
|||
|
|
// tsmiColorByTime
|
|||
|
|
//
|
|||
|
|
this.tsmiColorByTime.Name = "tsmiColorByTime";
|
|||
|
|
this.tsmiColorByTime.Size = new System.Drawing.Size(180, 22);
|
|||
|
|
this.tsmiColorByTime.Text = "Color by time";
|
|||
|
|
this.tsmiColorByTime.Click += new System.EventHandler(this.tsmiColorByTime_Click);
|
|||
|
|
//
|
|||
|
|
// btnReorganize
|
|||
|
|
//
|
|||
|
|
this.btnReorganize.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|||
|
|
this.btnReorganize.Location = new System.Drawing.Point(96, 326);
|
|||
|
|
this.btnReorganize.Name = "btnReorganize";
|
|||
|
|
this.btnReorganize.Size = new System.Drawing.Size(75, 23);
|
|||
|
|
this.btnReorganize.TabIndex = 17;
|
|||
|
|
this.btnReorganize.Text = "Reorganize";
|
|||
|
|
this.btnReorganize.UseVisualStyleBackColor = true;
|
|||
|
|
this.btnReorganize.Click += new System.EventHandler(this.btnReorganize_Click);
|
|||
|
|
//
|
|||
|
|
// FrmEditCommands
|
|||
|
|
//
|
|||
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
|
|||
|
|
this.CancelButton = this.btnCancel;
|
|||
|
|
this.ClientSize = new System.Drawing.Size(784, 361);
|
|||
|
|
this.Controls.Add(this.btnReorganize);
|
|||
|
|
this.Controls.Add(this.btnReset);
|
|||
|
|
this.Controls.Add(this.btnClearAll);
|
|||
|
|
this.Controls.Add(this.btnOK);
|
|||
|
|
this.Controls.Add(this.btnCancel);
|
|||
|
|
this.Controls.Add(this.gbProperties);
|
|||
|
|
this.Controls.Add(this.msMain);
|
|||
|
|
this.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
|||
|
|
this.MainMenuStrip = this.msMain;
|
|||
|
|
this.MaximizeBox = false;
|
|||
|
|
this.MinimizeBox = false;
|
|||
|
|
this.MinimumSize = new System.Drawing.Size(800, 400);
|
|||
|
|
this.Name = "FrmEditCommands";
|
|||
|
|
this.ShowInTaskbar = false;
|
|||
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|||
|
|
this.Text = "Edit Commands";
|
|||
|
|
this.gbProperties.ResumeLayout(false);
|
|||
|
|
((System.ComponentModel.ISupportInitialize)(this.dgvCommands)).EndInit();
|
|||
|
|
this.msMain.ResumeLayout(false);
|
|||
|
|
this.msMain.PerformLayout();
|
|||
|
|
this.ResumeLayout(false);
|
|||
|
|
this.PerformLayout();
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
#endregion
|
|||
|
|
|
|||
|
|
private System.Windows.Forms.GroupBox gbProperties;
|
|||
|
|
private System.Windows.Forms.Button btnOK;
|
|||
|
|
private System.Windows.Forms.Button btnCancel;
|
|||
|
|
private System.Windows.Forms.DataGridView dgvCommands;
|
|||
|
|
private System.Windows.Forms.Button btnClearAll;
|
|||
|
|
private System.Windows.Forms.MenuStrip msMain;
|
|||
|
|
private System.Windows.Forms.ToolStripMenuItem tsmiFile;
|
|||
|
|
private System.Windows.Forms.ToolStripMenuItem tsmiOpen;
|
|||
|
|
private System.Windows.Forms.ToolStripMenuItem tsmiSaveAs;
|
|||
|
|
private System.Windows.Forms.ToolStripMenuItem tsmiClose;
|
|||
|
|
private System.Windows.Forms.ToolStripSeparator tsmiDividerFile1;
|
|||
|
|
private System.Windows.Forms.Button btnReset;
|
|||
|
|
private System.Windows.Forms.ToolStripMenuItem tsmiView;
|
|||
|
|
private System.Windows.Forms.ToolStripMenuItem tsmiColorByType;
|
|||
|
|
private System.Windows.Forms.ToolStripMenuItem tsmiColorByTime;
|
|||
|
|
private System.Windows.Forms.Button btnReorganize;
|
|||
|
|
}
|
|||
|
|
}
|