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