Mesen-X/GUI.NET/Controls/ctrlTrackbar.Designer.cs

123 lines
5.2 KiB
C#
Raw Normal View History

2015-07-17 20:58:57 -04:00
namespace Mesen.GUI.Controls
{
partial class ctrlTrackbar
{
/// <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.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.lblText = new System.Windows.Forms.Label();
this.trackBar = new System.Windows.Forms.TrackBar();
2017-09-16 22:02:05 -04:00
this.lblValue = new System.Windows.Forms.Label();
2015-07-17 20:58:57 -04:00
this.tableLayoutPanel1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.trackBar)).BeginInit();
this.SuspendLayout();
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.ColumnCount = 1;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.Controls.Add(this.lblText, 0, 2);
this.tableLayoutPanel1.Controls.Add(this.trackBar, 0, 0);
2017-09-16 22:02:05 -04:00
this.tableLayoutPanel1.Controls.Add(this.lblValue, 0, 1);
2017-04-15 13:54:47 -04:00
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
2015-07-17 20:58:57 -04:00
this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
this.tableLayoutPanel1.Margin = new System.Windows.Forms.Padding(0);
2015-07-17 20:58:57 -04:00
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = 3;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
2017-04-15 13:54:47 -04:00
this.tableLayoutPanel1.Size = new System.Drawing.Size(34, 160);
2015-07-17 20:58:57 -04:00
this.tableLayoutPanel1.TabIndex = 0;
//
// lblText
//
this.lblText.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.lblText.AutoSize = true;
2017-04-15 13:54:47 -04:00
this.lblText.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblText.Location = new System.Drawing.Point(0, 148);
this.lblText.Margin = new System.Windows.Forms.Padding(0);
2015-07-17 20:58:57 -04:00
this.lblText.Name = "lblText";
2017-04-15 13:54:47 -04:00
this.lblText.Size = new System.Drawing.Size(34, 12);
2015-07-17 20:58:57 -04:00
this.lblText.TabIndex = 14;
this.lblText.Text = "Text";
this.lblText.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// trackBar
//
this.trackBar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Right)));
2017-04-15 13:54:47 -04:00
this.trackBar.Location = new System.Drawing.Point(0, 0);
this.trackBar.Margin = new System.Windows.Forms.Padding(0);
2015-07-17 20:58:57 -04:00
this.trackBar.Maximum = 100;
this.trackBar.Name = "trackBar";
this.trackBar.Orientation = System.Windows.Forms.Orientation.Vertical;
2017-09-16 22:02:05 -04:00
this.trackBar.Size = new System.Drawing.Size(34, 133);
2015-07-17 20:58:57 -04:00
this.trackBar.TabIndex = 13;
this.trackBar.TickFrequency = 10;
this.trackBar.Value = 50;
this.trackBar.ValueChanged += new System.EventHandler(this.trackBar_ValueChanged);
//
2017-09-16 22:02:05 -04:00
// lblValue
2015-07-17 20:58:57 -04:00
//
2017-09-16 22:02:05 -04:00
this.lblValue.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.lblValue.AutoSize = true;
this.lblValue.BackColor = System.Drawing.Color.White;
this.lblValue.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.lblValue.Location = new System.Drawing.Point(3, 133);
this.lblValue.MinimumSize = new System.Drawing.Size(28, 15);
this.lblValue.Name = "lblValue";
this.lblValue.Size = new System.Drawing.Size(28, 15);
this.lblValue.TabIndex = 15;
this.lblValue.Text = "100";
this.lblValue.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
2015-07-17 20:58:57 -04:00
//
// ctrlTrackbar
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.tableLayoutPanel1);
this.Margin = new System.Windows.Forms.Padding(0);
2015-07-17 20:58:57 -04:00
this.MaximumSize = new System.Drawing.Size(63, 160);
2017-04-15 13:54:47 -04:00
this.MinimumSize = new System.Drawing.Size(34, 160);
2015-07-17 20:58:57 -04:00
this.Name = "ctrlTrackbar";
2017-04-15 13:54:47 -04:00
this.Size = new System.Drawing.Size(34, 160);
2015-07-17 20:58:57 -04:00
this.tableLayoutPanel1.ResumeLayout(false);
this.tableLayoutPanel1.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.trackBar)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
private System.Windows.Forms.Label lblText;
private System.Windows.Forms.TrackBar trackBar;
2017-09-16 22:02:05 -04:00
private System.Windows.Forms.Label lblValue;
2015-07-17 20:58:57 -04:00
}
}