94 lines
3.9 KiB
C#
94 lines
3.9 KiB
C#
namespace BizHawk.Client.EmuHawk
|
|
{
|
|
partial class ScanlineSlider
|
|
{
|
|
/// <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.scanlinetrackbar = new System.Windows.Forms.TrackBar();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.button1 = new System.Windows.Forms.Button();
|
|
((System.ComponentModel.ISupportInitialize)(this.scanlinetrackbar)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// scanlinetrackbar
|
|
//
|
|
this.scanlinetrackbar.Location = new System.Drawing.Point(23, 14);
|
|
this.scanlinetrackbar.Maximum = 100;
|
|
this.scanlinetrackbar.Name = "scanlinetrackbar";
|
|
this.scanlinetrackbar.Size = new System.Drawing.Size(207, 45);
|
|
this.scanlinetrackbar.TabIndex = 0;
|
|
this.scanlinetrackbar.TickFrequency = 5;
|
|
this.scanlinetrackbar.TickStyle = System.Windows.Forms.TickStyle.Both;
|
|
this.scanlinetrackbar.Scroll += new System.EventHandler(this.scanlinetrackbar_Scroll);
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(31, 68);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(21, 13);
|
|
this.label1.TabIndex = 1;
|
|
this.label1.Text = "0%";
|
|
//
|
|
// button1
|
|
//
|
|
this.button1.Location = new System.Drawing.Point(89, 63);
|
|
this.button1.Name = "button1";
|
|
this.button1.Size = new System.Drawing.Size(75, 23);
|
|
this.button1.TabIndex = 2;
|
|
this.button1.Text = "Close";
|
|
this.button1.UseVisualStyleBackColor = true;
|
|
this.button1.Click += new System.EventHandler(this.button1_Click);
|
|
//
|
|
// ScanlineSlider
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(253, 91);
|
|
this.Controls.Add(this.button1);
|
|
this.Controls.Add(this.label1);
|
|
this.Controls.Add(this.scanlinetrackbar);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.Name = "ScanlineSlider";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|
this.Text = "Scanline Intensity";
|
|
this.Load += new System.EventHandler(this.ScanlineSlider_Load);
|
|
((System.ComponentModel.ISupportInitialize)(this.scanlinetrackbar)).EndInit();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.TrackBar scanlinetrackbar;
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.Button button1;
|
|
}
|
|
} |