151 lines
6.6 KiB
C#
151 lines
6.6 KiB
C#
namespace BizHawk.Client.EmuHawk
|
|
{
|
|
partial class GBPrefControl
|
|
{
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Clean up any resources being used.
|
|
/// </summary>
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Component Designer generated code
|
|
|
|
/// <summary>
|
|
/// Required method for Designer support - do not modify
|
|
/// the contents of this method with the code editor.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
this.propertyGrid1 = new System.Windows.Forms.PropertyGrid();
|
|
this.buttonDefaults = new System.Windows.Forms.Button();
|
|
this.buttonPalette = new System.Windows.Forms.Button();
|
|
this.checkBoxMuted = new System.Windows.Forms.CheckBox();
|
|
this.cbDisplayBG = new System.Windows.Forms.CheckBox();
|
|
this.cbDisplayOBJ = new System.Windows.Forms.CheckBox();
|
|
this.cbDisplayWIN = new System.Windows.Forms.CheckBox();
|
|
this.SuspendLayout();
|
|
//
|
|
// propertyGrid1
|
|
//
|
|
this.propertyGrid1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
|
| System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.propertyGrid1.Location = new System.Drawing.Point(3, 3);
|
|
this.propertyGrid1.Name = "propertyGrid1";
|
|
this.propertyGrid1.PropertySort = System.Windows.Forms.PropertySort.Alphabetical;
|
|
this.propertyGrid1.Size = new System.Drawing.Size(338, 279);
|
|
this.propertyGrid1.TabIndex = 0;
|
|
this.propertyGrid1.ToolbarVisible = false;
|
|
this.propertyGrid1.PropertyValueChanged += new System.Windows.Forms.PropertyValueChangedEventHandler(this.PropertyGrid1_PropertyValueChanged);
|
|
//
|
|
// buttonDefaults
|
|
//
|
|
this.buttonDefaults.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.buttonDefaults.Location = new System.Drawing.Point(266, 288);
|
|
this.buttonDefaults.Name = "buttonDefaults";
|
|
this.buttonDefaults.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonDefaults.TabIndex = 1;
|
|
this.buttonDefaults.Text = "Defaults";
|
|
this.buttonDefaults.UseVisualStyleBackColor = true;
|
|
this.buttonDefaults.Click += new System.EventHandler(this.ButtonDefaults_Click);
|
|
//
|
|
// buttonPalette
|
|
//
|
|
this.buttonPalette.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.buttonPalette.Location = new System.Drawing.Point(3, 288);
|
|
this.buttonPalette.Name = "buttonPalette";
|
|
this.buttonPalette.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonPalette.TabIndex = 2;
|
|
this.buttonPalette.Text = "Palette...";
|
|
this.buttonPalette.UseVisualStyleBackColor = true;
|
|
this.buttonPalette.Click += new System.EventHandler(this.ButtonPalette_Click);
|
|
//
|
|
// checkBoxMuted
|
|
//
|
|
this.checkBoxMuted.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.checkBoxMuted.AutoSize = true;
|
|
this.checkBoxMuted.Location = new System.Drawing.Point(82, 292);
|
|
this.checkBoxMuted.Name = "checkBoxMuted";
|
|
this.checkBoxMuted.Size = new System.Drawing.Size(50, 17);
|
|
this.checkBoxMuted.TabIndex = 3;
|
|
this.checkBoxMuted.Text = "Mute";
|
|
this.checkBoxMuted.UseVisualStyleBackColor = true;
|
|
this.checkBoxMuted.CheckedChanged += new System.EventHandler(this.CheckBoxMuted_CheckedChanged);
|
|
//
|
|
// cbDisplayBG
|
|
//
|
|
this.cbDisplayBG.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.cbDisplayBG.AutoSize = true;
|
|
this.cbDisplayBG.Location = new System.Drawing.Point(130, 292);
|
|
this.cbDisplayBG.Name = "cbDisplayBG";
|
|
this.cbDisplayBG.Size = new System.Drawing.Size(41, 17);
|
|
this.cbDisplayBG.TabIndex = 4;
|
|
this.cbDisplayBG.Text = "BG";
|
|
this.cbDisplayBG.UseVisualStyleBackColor = true;
|
|
this.cbDisplayBG.CheckedChanged += new System.EventHandler(this.CbDisplayBG_CheckedChanged);
|
|
//
|
|
// cbDisplayOBJ
|
|
//
|
|
this.cbDisplayOBJ.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.cbDisplayOBJ.AutoSize = true;
|
|
this.cbDisplayOBJ.Location = new System.Drawing.Point(171, 292);
|
|
this.cbDisplayOBJ.Name = "cbDisplayOBJ";
|
|
this.cbDisplayOBJ.Size = new System.Drawing.Size(46, 17);
|
|
this.cbDisplayOBJ.TabIndex = 5;
|
|
this.cbDisplayOBJ.Text = "OBJ";
|
|
this.cbDisplayOBJ.UseVisualStyleBackColor = true;
|
|
this.cbDisplayOBJ.CheckedChanged += new System.EventHandler(this.CbDisplayOBJ_CheckedChanged);
|
|
//
|
|
// cbDisplayWIN
|
|
//
|
|
this.cbDisplayWIN.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.cbDisplayWIN.AutoSize = true;
|
|
this.cbDisplayWIN.Location = new System.Drawing.Point(218, 292);
|
|
this.cbDisplayWIN.Name = "cbDisplayWIN";
|
|
this.cbDisplayWIN.Size = new System.Drawing.Size(48, 17);
|
|
this.cbDisplayWIN.TabIndex = 6;
|
|
this.cbDisplayWIN.Text = "WIN";
|
|
this.cbDisplayWIN.UseVisualStyleBackColor = true;
|
|
this.cbDisplayWIN.CheckedChanged += new System.EventHandler(this.CbDisplayWin_CheckedChanged);
|
|
//
|
|
// GBPrefControl
|
|
//
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
|
|
this.Controls.Add(this.cbDisplayWIN);
|
|
this.Controls.Add(this.cbDisplayOBJ);
|
|
this.Controls.Add(this.cbDisplayBG);
|
|
this.Controls.Add(this.checkBoxMuted);
|
|
this.Controls.Add(this.buttonPalette);
|
|
this.Controls.Add(this.buttonDefaults);
|
|
this.Controls.Add(this.propertyGrid1);
|
|
this.Name = "GBPrefControl";
|
|
this.Size = new System.Drawing.Size(344, 314);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.PropertyGrid propertyGrid1;
|
|
private System.Windows.Forms.Button buttonDefaults;
|
|
private System.Windows.Forms.Button buttonPalette;
|
|
private System.Windows.Forms.CheckBox checkBoxMuted;
|
|
private System.Windows.Forms.CheckBox cbDisplayBG;
|
|
private System.Windows.Forms.CheckBox cbDisplayOBJ;
|
|
private System.Windows.Forms.CheckBox cbDisplayWIN;
|
|
}
|
|
}
|