MainForm.Designer.cs
上传用户:linger1010
上传日期:2008-12-08
资源大小:561k
文件大小:5k
- namespace PlayingSound
- {
- partial class MainForm
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- private System.Windows.Forms.MainMenu mainMenu1;
- /// <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.mainMenu1 = new System.Windows.Forms.MainMenu();
- this.m_btnBrowse = new System.Windows.Forms.Button();
- this.m_openFileDialog = new System.Windows.Forms.OpenFileDialog();
- this.m_pnlFile = new System.Windows.Forms.Panel();
- this.m_txtFile = new System.Windows.Forms.TextBox();
- this.m_btnPlayOnce = new System.Windows.Forms.Button();
- this.m_btnPlayLoop = new System.Windows.Forms.Button();
- this.m_btnStop = new System.Windows.Forms.Button();
- this.m_pnlFile.SuspendLayout();
- this.SuspendLayout();
- //
- // m_btnBrowse
- //
- this.m_btnBrowse.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.m_btnBrowse.Location = new System.Drawing.Point(164, 26);
- this.m_btnBrowse.Name = "m_btnBrowse";
- this.m_btnBrowse.Size = new System.Drawing.Size(67, 20);
- this.m_btnBrowse.TabIndex = 0;
- this.m_btnBrowse.Text = "Browse";
- this.m_btnBrowse.Click += new System.EventHandler(this.m_btnBrowse_Click);
- //
- // m_openFileDialog
- //
- this.m_openFileDialog.Filter = "WAV Sound File (*.wav)|*.wav";
- //
- // m_pnlFile
- //
- this.m_pnlFile.BackColor = System.Drawing.SystemColors.Control;
- this.m_pnlFile.Controls.Add(this.m_txtFile);
- this.m_pnlFile.Controls.Add(this.m_btnBrowse);
- this.m_pnlFile.Location = new System.Drawing.Point(3, 3);
- this.m_pnlFile.Name = "m_pnlFile";
- this.m_pnlFile.Size = new System.Drawing.Size(234, 49);
- //
- // m_txtFile
- //
- this.m_txtFile.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.m_txtFile.Location = new System.Drawing.Point(3, 3);
- this.m_txtFile.Name = "m_txtFile";
- this.m_txtFile.ReadOnly = true;
- this.m_txtFile.Size = new System.Drawing.Size(228, 21);
- this.m_txtFile.TabIndex = 1;
- //
- // m_btnPlayOnce
- //
- this.m_btnPlayOnce.Location = new System.Drawing.Point(6, 59);
- this.m_btnPlayOnce.Name = "m_btnPlayOnce";
- this.m_btnPlayOnce.Size = new System.Drawing.Size(102, 20);
- this.m_btnPlayOnce.TabIndex = 2;
- this.m_btnPlayOnce.Text = "Play Once";
- this.m_btnPlayOnce.Click += new System.EventHandler(this.m_btnPlayOnce_Click);
- //
- // m_btnPlayLoop
- //
- this.m_btnPlayLoop.Location = new System.Drawing.Point(6, 85);
- this.m_btnPlayLoop.Name = "m_btnPlayLoop";
- this.m_btnPlayLoop.Size = new System.Drawing.Size(102, 20);
- this.m_btnPlayLoop.TabIndex = 2;
- this.m_btnPlayLoop.Text = "Play Loop";
- this.m_btnPlayLoop.Click += new System.EventHandler(this.m_btnPlayLoop_Click);
- //
- // m_btnStop
- //
- this.m_btnStop.Location = new System.Drawing.Point(6, 111);
- this.m_btnStop.Name = "m_btnStop";
- this.m_btnStop.Size = new System.Drawing.Size(102, 20);
- this.m_btnStop.TabIndex = 2;
- this.m_btnStop.Text = "Stop";
- this.m_btnStop.Click += new System.EventHandler(this.m_btnStop_Click);
- //
- // MainForm
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
- this.AutoScroll = true;
- this.ClientSize = new System.Drawing.Size(240, 268);
- this.Controls.Add(this.m_btnStop);
- this.Controls.Add(this.m_btnPlayLoop);
- this.Controls.Add(this.m_btnPlayOnce);
- this.Controls.Add(this.m_pnlFile);
- this.Menu = this.mainMenu1;
- this.Name = "MainForm";
- this.Text = "Form1";
- this.m_pnlFile.ResumeLayout(false);
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.Button m_btnBrowse;
- private System.Windows.Forms.OpenFileDialog m_openFileDialog;
- private System.Windows.Forms.Panel m_pnlFile;
- private System.Windows.Forms.TextBox m_txtFile;
- private System.Windows.Forms.Button m_btnPlayOnce;
- private System.Windows.Forms.Button m_btnPlayLoop;
- private System.Windows.Forms.Button m_btnStop;
- }
- }