This repository has been archived on 2024-06-21. You can view files and clone it, but cannot push or open issues or pull requests.
CDSAE3/CDSAE3_Lian_Lian_Kan/Forms/Audio_player.Designer.cs

95 lines
3.2 KiB
C#
Raw Normal View History

2024-03-29 06:18:38 +00:00
namespace CDSAE3_Lian_Lian_Kan.Forms
{
partial class Audio_player
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
/// <param name="disposing">如果应释放托管资源,为 true否则为 false。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region
/// <summary>
/// 设计器支持所需的方法 - 不要修改
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
sp_Button = new PictureBox();
last = new PictureBox();
next = new PictureBox();
((System.ComponentModel.ISupportInitialize)sp_Button).BeginInit();
((System.ComponentModel.ISupportInitialize)last).BeginInit();
((System.ComponentModel.ISupportInitialize)next).BeginInit();
SuspendLayout();
//
// sp_Button
//
sp_Button.Image = Properties.Resources.pause;
sp_Button.Location = new Point(368, 114);
sp_Button.Name = "sp_Button";
sp_Button.Size = new Size(70, 70);
sp_Button.SizeMode = PictureBoxSizeMode.Zoom;
sp_Button.TabIndex = 0;
sp_Button.TabStop = false;
sp_Button.Click += sp_Button_Click;
//
// last
//
last.Image = Properties.Resources.last;
last.Location = new Point(199, 114);
last.Name = "last";
last.Size = new Size(70, 70);
last.SizeMode = PictureBoxSizeMode.Zoom;
last.TabIndex = 1;
last.TabStop = false;
last.Click += last_Click;
//
// next
//
next.Image = Properties.Resources.next;
next.Location = new Point(536, 114);
next.Name = "next";
next.Size = new Size(70, 70);
next.SizeMode = PictureBoxSizeMode.Zoom;
next.TabIndex = 2;
next.TabStop = false;
next.Click += next_Click;
//
// Audio_player
//
AutoScaleDimensions = new SizeF(11F, 24F);
AutoScaleMode = AutoScaleMode.Font;
BackColor = Color.White;
Controls.Add(next);
Controls.Add(last);
Controls.Add(sp_Button);
Name = "Audio_player";
Size = new Size(873, 323);
((System.ComponentModel.ISupportInitialize)sp_Button).EndInit();
((System.ComponentModel.ISupportInitialize)last).EndInit();
((System.ComponentModel.ISupportInitialize)next).EndInit();
ResumeLayout(false);
}
#endregion
private PictureBox sp_Button;
private PictureBox last;
private PictureBox next;
}
}