Input Config - hide Enabled checkbox since we have no intention of supporting the disabling of a controller at this time.

This commit is contained in:
adelikat 2012-04-29 14:06:24 +00:00
parent 5e91cc2a7e
commit 38dd7889b3
1 changed files with 10 additions and 9 deletions

View File

@ -71,9 +71,9 @@
// //
// ButtonsGroupBox // ButtonsGroupBox
// //
this.ButtonsGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) this.ButtonsGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.ButtonsGroupBox.Location = new System.Drawing.Point(12, 84); this.ButtonsGroupBox.Location = new System.Drawing.Point(12, 84);
this.ButtonsGroupBox.Name = "ButtonsGroupBox"; this.ButtonsGroupBox.Name = "ButtonsGroupBox";
this.ButtonsGroupBox.Size = new System.Drawing.Size(241, 268); this.ButtonsGroupBox.Size = new System.Drawing.Size(241, 268);
@ -83,8 +83,8 @@
// //
// ControllerImage // ControllerImage
// //
this.ControllerImage.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) this.ControllerImage.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.ControllerImage.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.ControllerImage.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.ControllerImage.Location = new System.Drawing.Point(259, 84); this.ControllerImage.Location = new System.Drawing.Point(259, 84);
this.ControllerImage.Name = "ControllerImage"; this.ControllerImage.Name = "ControllerImage";
@ -95,8 +95,8 @@
// //
// ControllerSelectGroupBox // ControllerSelectGroupBox
// //
this.ControllerSelectGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.ControllerSelectGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.ControllerSelectGroupBox.Controls.Add(this.IDX_CONTROLLERENABLED); this.ControllerSelectGroupBox.Controls.Add(this.IDX_CONTROLLERENABLED);
this.ControllerSelectGroupBox.Controls.Add(this.ControllComboBox); this.ControllerSelectGroupBox.Controls.Add(this.ControllComboBox);
this.ControllerSelectGroupBox.Location = new System.Drawing.Point(13, 28); this.ControllerSelectGroupBox.Location = new System.Drawing.Point(13, 28);
@ -111,12 +111,13 @@
this.IDX_CONTROLLERENABLED.AutoSize = true; this.IDX_CONTROLLERENABLED.AutoSize = true;
this.IDX_CONTROLLERENABLED.Checked = true; this.IDX_CONTROLLERENABLED.Checked = true;
this.IDX_CONTROLLERENABLED.CheckState = System.Windows.Forms.CheckState.Checked; this.IDX_CONTROLLERENABLED.CheckState = System.Windows.Forms.CheckState.Checked;
this.IDX_CONTROLLERENABLED.Location = new System.Drawing.Point(143, 23); this.IDX_CONTROLLERENABLED.Location = new System.Drawing.Point(169, 23);
this.IDX_CONTROLLERENABLED.Name = "IDX_CONTROLLERENABLED"; this.IDX_CONTROLLERENABLED.Name = "IDX_CONTROLLERENABLED";
this.IDX_CONTROLLERENABLED.Size = new System.Drawing.Size(65, 17); this.IDX_CONTROLLERENABLED.Size = new System.Drawing.Size(65, 17);
this.IDX_CONTROLLERENABLED.TabIndex = 1; this.IDX_CONTROLLERENABLED.TabIndex = 1;
this.IDX_CONTROLLERENABLED.Text = "Enabled"; this.IDX_CONTROLLERENABLED.Text = "Enabled";
this.IDX_CONTROLLERENABLED.UseVisualStyleBackColor = true; this.IDX_CONTROLLERENABLED.UseVisualStyleBackColor = true;
this.IDX_CONTROLLERENABLED.Visible = false;
// //
// ControllComboBox // ControllComboBox
// //
@ -124,7 +125,7 @@
this.ControllComboBox.FormattingEnabled = true; this.ControllComboBox.FormattingEnabled = true;
this.ControllComboBox.Location = new System.Drawing.Point(6, 19); this.ControllComboBox.Location = new System.Drawing.Point(6, 19);
this.ControllComboBox.Name = "ControllComboBox"; this.ControllComboBox.Name = "ControllComboBox";
this.ControllComboBox.Size = new System.Drawing.Size(110, 21); this.ControllComboBox.Size = new System.Drawing.Size(157, 21);
this.ControllComboBox.TabIndex = 0; this.ControllComboBox.TabIndex = 0;
this.ControllComboBox.SelectedIndexChanged += new System.EventHandler(this.ControllComboBox_SelectedIndexChanged); this.ControllComboBox.SelectedIndexChanged += new System.EventHandler(this.ControllComboBox_SelectedIndexChanged);
// //