Adding action edit button.
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.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
43 | System.Windows.Forms.AnchorStyles.Right)));
44 this.comboBoxActionType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
45 this.comboBoxActionType.FormattingEnabled = true;
46 this.comboBoxActionType.Location = new System.Drawing.Point(55, 12);
47 this.comboBoxActionType.Name = "comboBoxActionType";
48 this.comboBoxActionType.Size = new System.Drawing.Size(272, 21);
49 this.comboBoxActionType.Sorted = true;
50 this.comboBoxActionType.TabIndex = 18;
51 this.comboBoxActionType.SelectedIndexChanged += new System.EventHandler(this.comboBoxActionType_SelectedIndexChanged);
55 this.labelActionType.AutoSize = true;
56 this.labelActionType.Location = new System.Drawing.Point(12, 15);
57 this.labelActionType.Name = "labelActionType";
58 this.labelActionType.Size = new System.Drawing.Size(37, 13);
59 this.labelActionType.TabIndex = 20;
60 this.labelActionType.Text = "Type :";
64 this.buttonOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
65 this.buttonOk.DialogResult = System.Windows.Forms.DialogResult.OK;
66 this.buttonOk.Location = new System.Drawing.Point(12, 72);
67 this.buttonOk.Name = "buttonOk";
68 this.buttonOk.Size = new System.Drawing.Size(75, 23);
69 this.buttonOk.TabIndex = 21;
70 this.buttonOk.Text = "Ok";
71 this.buttonOk.UseVisualStyleBackColor = true;
72 this.buttonOk.Click += new System.EventHandler(this.buttonOk_Click);
76 this.buttonCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
77 this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
78 this.buttonCancel.Location = new System.Drawing.Point(93, 72);
79 this.buttonCancel.Name = "buttonCancel";
80 this.buttonCancel.Size = new System.Drawing.Size(75, 23);
81 this.buttonCancel.TabIndex = 22;
82 this.buttonCancel.Text = "Cancel";
83 this.buttonCancel.UseVisualStyleBackColor = true;
87 this.iTableLayoutPanel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
88 | System.Windows.Forms.AnchorStyles.Left)
89 | System.Windows.Forms.AnchorStyles.Right)));
90 this.iTableLayoutPanel.AutoSize = true;
91 this.iTableLayoutPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
92 this.iTableLayoutPanel.ColumnCount = 2;
93 this.iTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
94 this.iTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
95 this.iTableLayoutPanel.Location = new System.Drawing.Point(15, 50);
96 this.iTableLayoutPanel.Name = "iTableLayoutPanel";
97 this.iTableLayoutPanel.RowCount = 2;
98 this.iTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
99 this.iTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
100 this.iTableLayoutPanel.Size = new System.Drawing.Size(312, 16);
101 this.iTableLayoutPanel.TabIndex = 23;
105 this.AcceptButton = this.buttonOk;
106 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
107 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
108 this.AutoSize = true;
109 this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
110 this.CancelButton = this.buttonCancel;
111 this.ClientSize = new System.Drawing.Size(339, 107);
112 this.Controls.Add(this.iTableLayoutPanel);
113 this.Controls.Add(this.buttonCancel);
114 this.Controls.Add(this.buttonOk);
115 this.Controls.Add(this.labelActionType);
116 this.Controls.Add(this.comboBoxActionType);
117 this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
118 this.MaximizeBox = false;
119 this.MinimizeBox = false;
120 this.Name = "FormEditAction";
121 this.Text = "Edit action";
122 this.Load += new System.EventHandler(this.FormEditAction_Load);
123 this.Validating += new System.ComponentModel.CancelEventHandler(this.FormEditAction_Validating);
124 this.ResumeLayout(false);
125 this.PerformLayout();
131 private System.Windows.Forms.ComboBox comboBoxActionType;
132 private System.Windows.Forms.Label labelActionType;
133 private System.Windows.Forms.Button buttonOk;
134 private System.Windows.Forms.Button buttonCancel;
135 private System.Windows.Forms.TableLayoutPanel iTableLayoutPanel;
136 private System.Windows.Forms.ToolTip toolTip;