diff -r c466f72a834f -r 99c407831232 Server/FormEditAction.Designer.cs --- a/Server/FormEditAction.Designer.cs Mon Jul 25 17:48:12 2016 +0200 +++ b/Server/FormEditAction.Designer.cs Tue Jul 26 11:51:50 2016 +0200 @@ -28,10 +28,13 @@ /// private void InitializeComponent() { + this.components = new System.ComponentModel.Container(); this.comboBoxActionType = new System.Windows.Forms.ComboBox(); this.labelActionType = new System.Windows.Forms.Label(); this.buttonOk = new System.Windows.Forms.Button(); this.buttonCancel = new System.Windows.Forms.Button(); + this.iTableLayoutPanel = new System.Windows.Forms.TableLayoutPanel(); + this.toolTip = new System.Windows.Forms.ToolTip(this.components); this.SuspendLayout(); // // comboBoxActionType @@ -42,6 +45,7 @@ this.comboBoxActionType.Name = "comboBoxActionType"; this.comboBoxActionType.Size = new System.Drawing.Size(333, 21); this.comboBoxActionType.TabIndex = 18; + this.comboBoxActionType.SelectedIndexChanged += new System.EventHandler(this.comboBoxActionType_SelectedIndexChanged); // // labelActionType // @@ -54,8 +58,9 @@ // // buttonOk // + this.buttonOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.buttonOk.DialogResult = System.Windows.Forms.DialogResult.OK; - this.buttonOk.Location = new System.Drawing.Point(12, 55); + this.buttonOk.Location = new System.Drawing.Point(12, 347); this.buttonOk.Name = "buttonOk"; this.buttonOk.Size = new System.Drawing.Size(75, 23); this.buttonOk.TabIndex = 21; @@ -65,19 +70,36 @@ // // buttonCancel // + this.buttonCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; - this.buttonCancel.Location = new System.Drawing.Point(93, 55); + this.buttonCancel.Location = new System.Drawing.Point(93, 347); this.buttonCancel.Name = "buttonCancel"; this.buttonCancel.Size = new System.Drawing.Size(75, 23); this.buttonCancel.TabIndex = 22; this.buttonCancel.Text = "Cancel"; this.buttonCancel.UseVisualStyleBackColor = true; // + // iTableLayoutPanel + // + this.iTableLayoutPanel.ColumnCount = 2; + this.iTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F)); + this.iTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F)); + this.iTableLayoutPanel.Location = new System.Drawing.Point(15, 50); + this.iTableLayoutPanel.Name = "iTableLayoutPanel"; + this.iTableLayoutPanel.RowCount = 2; + this.iTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F)); + this.iTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F)); + this.iTableLayoutPanel.Size = new System.Drawing.Size(373, 114); + this.iTableLayoutPanel.TabIndex = 23; + // // FormEditAction // + this.AcceptButton = this.buttonOk; this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(400, 86); + this.CancelButton = this.buttonCancel; + this.ClientSize = new System.Drawing.Size(400, 382); + this.Controls.Add(this.iTableLayoutPanel); this.Controls.Add(this.buttonCancel); this.Controls.Add(this.buttonOk); this.Controls.Add(this.labelActionType); @@ -100,5 +122,7 @@ private System.Windows.Forms.Label labelActionType; private System.Windows.Forms.Button buttonOk; private System.Windows.Forms.Button buttonCancel; + private System.Windows.Forms.TableLayoutPanel iTableLayoutPanel; + private System.Windows.Forms.ToolTip toolTip; } } \ No newline at end of file