Adding action move and test buttons.
1 namespace SharpDisplayManager
3 partial class FormEditAction
6 /// Required designer variable.
8 private System.ComponentModel.IContainer components = null;
11 /// Clean up any resources being used.
13 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14 protected override void Dispose(bool disposing)
16 if (disposing && (components != null))
20 base.Dispose(disposing);
23 #region Windows Form Designer generated code
26 /// Required method for Designer support - do not modify
27 /// the contents of this method with the code editor.
29 private void InitializeComponent()
31 this.components = new System.ComponentModel.Container();
32 this.comboBoxActionType = new System.Windows.Forms.ComboBox();
33 this.labelActionType = new System.Windows.Forms.Label();
34 this.buttonOk = new System.Windows.Forms.Button();
35 this.buttonCancel = new System.Windows.Forms.Button();
36 this.iTableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
37 this.toolTip = new System.Windows.Forms.ToolTip(this.components);
42 this.comboBoxActionType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
43 this.comboBoxActionType.FormattingEnabled = true;
44 this.comboBoxActionType.Location = new System.Drawing.Point(55, 12);
45 this.comboBoxActionType.Name = "comboBoxActionType";
46 this.comboBoxActionType.Size = new System.Drawing.Size(333, 21);
47 this.comboBoxActionType.Sorted = true;
48 this.comboBoxActionType.TabIndex = 18;
49 this.comboBoxActionType.SelectedIndexChanged += new System.EventHandler(this.comboBoxActionType_SelectedIndexChanged);
53 this.labelActionType.AutoSize = true;
54 this.labelActionType.Location = new System.Drawing.Point(12, 15);
55 this.labelActionType.Name = "labelActionType";
56 this.labelActionType.Size = new System.Drawing.Size(37, 13);
57 this.labelActionType.TabIndex = 20;
58 this.labelActionType.Text = "Type :";
62 this.buttonOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
63 this.buttonOk.DialogResult = System.Windows.Forms.DialogResult.OK;
64 this.buttonOk.Location = new System.Drawing.Point(12, 72);
65 this.buttonOk.Name = "buttonOk";
66 this.buttonOk.Size = new System.Drawing.Size(75, 23);
67 this.buttonOk.TabIndex = 21;
68 this.buttonOk.Text = "Ok";
69 this.buttonOk.UseVisualStyleBackColor = true;
70 this.buttonOk.Click += new System.EventHandler(this.buttonOk_Click);
74 this.buttonCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
75 this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
76 this.buttonCancel.Location = new System.Drawing.Point(93, 72);
77 this.buttonCancel.Name = "buttonCancel";
78 this.buttonCancel.Size = new System.Drawing.Size(75, 23);
79 this.buttonCancel.TabIndex = 22;
80 this.buttonCancel.Text = "Cancel";
81 this.buttonCancel.UseVisualStyleBackColor = true;
85 this.iTableLayoutPanel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
86 | System.Windows.Forms.AnchorStyles.Left)
87 | System.Windows.Forms.AnchorStyles.Right)));
88 this.iTableLayoutPanel.AutoSize = true;
89 this.iTableLayoutPanel.ColumnCount = 2;
90 this.iTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
91 this.iTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
92 this.iTableLayoutPanel.Location = new System.Drawing.Point(15, 50);
93 this.iTableLayoutPanel.Name = "iTableLayoutPanel";
94 this.iTableLayoutPanel.RowCount = 2;
95 this.iTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
96 this.iTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
97 this.iTableLayoutPanel.Size = new System.Drawing.Size(375, 16);
98 this.iTableLayoutPanel.TabIndex = 23;
102 this.AcceptButton = this.buttonOk;
103 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
104 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
105 this.AutoSize = true;
106 this.CancelButton = this.buttonCancel;
107 this.ClientSize = new System.Drawing.Size(402, 107);
108 this.Controls.Add(this.iTableLayoutPanel);
109 this.Controls.Add(this.buttonCancel);
110 this.Controls.Add(this.buttonOk);
111 this.Controls.Add(this.labelActionType);
112 this.Controls.Add(this.comboBoxActionType);
113 this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
114 this.MaximizeBox = false;
115 this.MinimizeBox = false;
116 this.Name = "FormEditAction";
117 this.Text = "Edit action";
118 this.Load += new System.EventHandler(this.FormEditAction_Load);
119 this.Validating += new System.ComponentModel.CancelEventHandler(this.FormEditAction_Validating);
120 this.ResumeLayout(false);
121 this.PerformLayout();
127 private System.Windows.Forms.ComboBox comboBoxActionType;
128 private System.Windows.Forms.Label labelActionType;
129 private System.Windows.Forms.Button buttonOk;
130 private System.Windows.Forms.Button buttonCancel;
131 private System.Windows.Forms.TableLayoutPanel iTableLayoutPanel;
132 private System.Windows.Forms.ToolTip toolTip;