Actions persistence working.
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.comboBoxActionType = new System.Windows.Forms.ComboBox();
32 this.labelActionType = new System.Windows.Forms.Label();
33 this.buttonOk = new System.Windows.Forms.Button();
34 this.buttonCancel = new System.Windows.Forms.Button();
39 this.comboBoxActionType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
40 this.comboBoxActionType.FormattingEnabled = true;
41 this.comboBoxActionType.Location = new System.Drawing.Point(55, 12);
42 this.comboBoxActionType.Name = "comboBoxActionType";
43 this.comboBoxActionType.Size = new System.Drawing.Size(333, 21);
44 this.comboBoxActionType.TabIndex = 18;
48 this.labelActionType.AutoSize = true;
49 this.labelActionType.Location = new System.Drawing.Point(12, 15);
50 this.labelActionType.Name = "labelActionType";
51 this.labelActionType.Size = new System.Drawing.Size(37, 13);
52 this.labelActionType.TabIndex = 20;
53 this.labelActionType.Text = "Type :";
57 this.buttonOk.DialogResult = System.Windows.Forms.DialogResult.OK;
58 this.buttonOk.Location = new System.Drawing.Point(12, 55);
59 this.buttonOk.Name = "buttonOk";
60 this.buttonOk.Size = new System.Drawing.Size(75, 23);
61 this.buttonOk.TabIndex = 21;
62 this.buttonOk.Text = "Ok";
63 this.buttonOk.UseVisualStyleBackColor = true;
64 this.buttonOk.Click += new System.EventHandler(this.buttonOk_Click);
68 this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
69 this.buttonCancel.Location = new System.Drawing.Point(93, 55);
70 this.buttonCancel.Name = "buttonCancel";
71 this.buttonCancel.Size = new System.Drawing.Size(75, 23);
72 this.buttonCancel.TabIndex = 22;
73 this.buttonCancel.Text = "Cancel";
74 this.buttonCancel.UseVisualStyleBackColor = true;
78 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
79 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
80 this.ClientSize = new System.Drawing.Size(400, 86);
81 this.Controls.Add(this.buttonCancel);
82 this.Controls.Add(this.buttonOk);
83 this.Controls.Add(this.labelActionType);
84 this.Controls.Add(this.comboBoxActionType);
85 this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
86 this.MaximizeBox = false;
87 this.MinimizeBox = false;
88 this.Name = "FormEditAction";
89 this.Text = "Edit action";
90 this.Load += new System.EventHandler(this.FormEditAction_Load);
91 this.Validating += new System.ComponentModel.CancelEventHandler(this.FormEditAction_Validating);
92 this.ResumeLayout(false);
99 private System.Windows.Forms.ComboBox comboBoxActionType;
100 private System.Windows.Forms.Label labelActionType;
101 private System.Windows.Forms.Button buttonOk;
102 private System.Windows.Forms.Button buttonCancel;