mirror of
https://github.com/Gericom/EveryFileExplorer.git
synced 2025-06-20 09:55:32 -04:00
84 lines
2.6 KiB
C#
84 lines
2.6 KiB
C#
namespace CommonFiles.UI
|
|
{
|
|
partial class WavePlayer
|
|
{
|
|
/// <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.components = new System.ComponentModel.Container();
|
|
this.trackBar1 = new System.Windows.Forms.TrackBar();
|
|
this.button1 = new System.Windows.Forms.Button();
|
|
this.timer1 = new System.Windows.Forms.Timer(this.components);
|
|
((System.ComponentModel.ISupportInitialize)(this.trackBar1)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// trackBar1
|
|
//
|
|
this.trackBar1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.trackBar1.Location = new System.Drawing.Point(26, 0);
|
|
this.trackBar1.Name = "trackBar1";
|
|
this.trackBar1.Size = new System.Drawing.Size(424, 26);
|
|
this.trackBar1.TabIndex = 0;
|
|
this.trackBar1.Scroll += new System.EventHandler(this.trackBar1_Scroll);
|
|
//
|
|
// button1
|
|
//
|
|
this.button1.Dock = System.Windows.Forms.DockStyle.Left;
|
|
this.button1.Image = global::CommonFiles.Resource.control;
|
|
this.button1.ImageAlign = System.Drawing.ContentAlignment.BottomRight;
|
|
this.button1.Location = new System.Drawing.Point(0, 0);
|
|
this.button1.Name = "button1";
|
|
this.button1.Size = new System.Drawing.Size(26, 26);
|
|
this.button1.TabIndex = 1;
|
|
this.button1.UseVisualStyleBackColor = true;
|
|
this.button1.Click += new System.EventHandler(this.button1_Click);
|
|
//
|
|
// timer1
|
|
//
|
|
this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
|
|
//
|
|
// WavePlayer
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.Controls.Add(this.trackBar1);
|
|
this.Controls.Add(this.button1);
|
|
this.Name = "WavePlayer";
|
|
this.Size = new System.Drawing.Size(450, 26);
|
|
((System.ComponentModel.ISupportInitialize)(this.trackBar1)).EndInit();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.TrackBar trackBar1;
|
|
private System.Windows.Forms.Button button1;
|
|
private System.Windows.Forms.Timer timer1;
|
|
}
|
|
}
|