134 lines
5.0 KiB
C#
134 lines
5.0 KiB
C#
namespace BizHawk.Client.EmuHawk
|
|
{
|
|
partial class FileExtensionPreferences
|
|
{
|
|
/// <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 Windows Form 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.OkBtn = new System.Windows.Forms.Button();
|
|
this.CancelBtn = new System.Windows.Forms.Button();
|
|
this.PrefPanel = new System.Windows.Forms.Panel();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
this.label3 = new System.Windows.Forms.Label();
|
|
this.SuspendLayout();
|
|
//
|
|
// OkBtn
|
|
//
|
|
this.OkBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.OkBtn.Location = new System.Drawing.Point(232, 208);
|
|
this.OkBtn.Name = "OkBtn";
|
|
this.OkBtn.Size = new System.Drawing.Size(60, 23);
|
|
this.OkBtn.TabIndex = 0;
|
|
this.OkBtn.Text = "&Ok";
|
|
this.OkBtn.UseVisualStyleBackColor = true;
|
|
this.OkBtn.Click += new System.EventHandler(this.OkBtn_Click);
|
|
//
|
|
// CancelBtn
|
|
//
|
|
this.CancelBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.CancelBtn.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|
this.CancelBtn.Location = new System.Drawing.Point(298, 208);
|
|
this.CancelBtn.Name = "CancelBtn";
|
|
this.CancelBtn.Size = new System.Drawing.Size(60, 23);
|
|
this.CancelBtn.TabIndex = 1;
|
|
this.CancelBtn.Text = "&Cancel";
|
|
this.CancelBtn.UseVisualStyleBackColor = true;
|
|
this.CancelBtn.Click += new System.EventHandler(this.CancelBtn_Click);
|
|
//
|
|
// PrefPanel
|
|
//
|
|
this.PrefPanel.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.PrefPanel.AutoScroll = true;
|
|
this.PrefPanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|
this.PrefPanel.Location = new System.Drawing.Point(12, 55);
|
|
this.PrefPanel.Name = "PrefPanel";
|
|
this.PrefPanel.Size = new System.Drawing.Size(346, 147);
|
|
this.PrefPanel.TabIndex = 2;
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(12, 9);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(296, 13);
|
|
this.label1.TabIndex = 3;
|
|
this.label1.Text = "Select a preferred Platform to run for the given file extensions.";
|
|
//
|
|
// label2
|
|
//
|
|
this.label2.AutoSize = true;
|
|
this.label2.Location = new System.Drawing.Point(12, 24);
|
|
this.label2.Name = "label2";
|
|
this.label2.Size = new System.Drawing.Size(352, 13);
|
|
this.label2.TabIndex = 4;
|
|
this.label2.Text = "Note: The game database overrides these options. They only take effect";
|
|
//
|
|
// label3
|
|
//
|
|
this.label3.AutoSize = true;
|
|
this.label3.Location = new System.Drawing.Point(12, 39);
|
|
this.label3.Name = "label3";
|
|
this.label3.Size = new System.Drawing.Size(245, 13);
|
|
this.label3.TabIndex = 5;
|
|
this.label3.Text = "when a Rom is unable to be found in the database";
|
|
//
|
|
// FileExtensionPreferences
|
|
//
|
|
this.AcceptButton = this.OkBtn;
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.CancelButton = this.CancelBtn;
|
|
this.ClientSize = new System.Drawing.Size(370, 243);
|
|
this.Controls.Add(this.label3);
|
|
this.Controls.Add(this.label2);
|
|
this.Controls.Add(this.label1);
|
|
this.Controls.Add(this.PrefPanel);
|
|
this.Controls.Add(this.CancelBtn);
|
|
this.Controls.Add(this.OkBtn);
|
|
this.MinimumSize = new System.Drawing.Size(203, 175);
|
|
this.Name = "FileExtensionPreferences";
|
|
this.ShowIcon = false;
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|
this.Text = "File Extension Preferences";
|
|
this.Load += new System.EventHandler(this.FileExtensionPreferences_Load);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Button OkBtn;
|
|
private System.Windows.Forms.Button CancelBtn;
|
|
private System.Windows.Forms.Panel PrefPanel;
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.Label label2;
|
|
private System.Windows.Forms.Label label3;
|
|
}
|
|
} |