MainForm.Designer.cs
上传用户:linger1010
上传日期:2008-12-08
资源大小:561k
文件大小:5k
源码类别:

Windows Mobile

开发平台:

C#

  1. namespace PlayingSound
  2. {
  3. partial class MainForm
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. private System.Windows.Forms.MainMenu mainMenu1;
  10. /// <summary>
  11. /// Clean up any resources being used.
  12. /// </summary>
  13. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  14. protected override void Dispose(bool disposing)
  15. {
  16. if(disposing && (components != null))
  17. {
  18. components.Dispose();
  19. }
  20. base.Dispose(disposing);
  21. }
  22. #region Windows Form Designer generated code
  23. /// <summary>
  24. /// Required method for Designer support - do not modify
  25. /// the contents of this method with the code editor.
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.mainMenu1 = new System.Windows.Forms.MainMenu();
  30. this.m_btnBrowse = new System.Windows.Forms.Button();
  31. this.m_openFileDialog = new System.Windows.Forms.OpenFileDialog();
  32. this.m_pnlFile = new System.Windows.Forms.Panel();
  33. this.m_txtFile = new System.Windows.Forms.TextBox();
  34. this.m_btnPlayOnce = new System.Windows.Forms.Button();
  35. this.m_btnPlayLoop = new System.Windows.Forms.Button();
  36. this.m_btnStop = new System.Windows.Forms.Button();
  37. this.m_pnlFile.SuspendLayout();
  38. this.SuspendLayout();
  39. // 
  40. // m_btnBrowse
  41. // 
  42. this.m_btnBrowse.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  43. this.m_btnBrowse.Location = new System.Drawing.Point(164, 26);
  44. this.m_btnBrowse.Name = "m_btnBrowse";
  45. this.m_btnBrowse.Size = new System.Drawing.Size(67, 20);
  46. this.m_btnBrowse.TabIndex = 0;
  47. this.m_btnBrowse.Text = "Browse";
  48. this.m_btnBrowse.Click += new System.EventHandler(this.m_btnBrowse_Click);
  49. // 
  50. // m_openFileDialog
  51. // 
  52. this.m_openFileDialog.Filter = "WAV Sound File (*.wav)|*.wav";
  53. // 
  54. // m_pnlFile
  55. // 
  56. this.m_pnlFile.BackColor = System.Drawing.SystemColors.Control;
  57. this.m_pnlFile.Controls.Add(this.m_txtFile);
  58. this.m_pnlFile.Controls.Add(this.m_btnBrowse);
  59. this.m_pnlFile.Location = new System.Drawing.Point(3, 3);
  60. this.m_pnlFile.Name = "m_pnlFile";
  61. this.m_pnlFile.Size = new System.Drawing.Size(234, 49);
  62. // 
  63. // m_txtFile
  64. // 
  65. this.m_txtFile.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  66. | System.Windows.Forms.AnchorStyles.Right)));
  67. this.m_txtFile.Location = new System.Drawing.Point(3, 3);
  68. this.m_txtFile.Name = "m_txtFile";
  69. this.m_txtFile.ReadOnly = true;
  70. this.m_txtFile.Size = new System.Drawing.Size(228, 21);
  71. this.m_txtFile.TabIndex = 1;
  72. // 
  73. // m_btnPlayOnce
  74. // 
  75. this.m_btnPlayOnce.Location = new System.Drawing.Point(6, 59);
  76. this.m_btnPlayOnce.Name = "m_btnPlayOnce";
  77. this.m_btnPlayOnce.Size = new System.Drawing.Size(102, 20);
  78. this.m_btnPlayOnce.TabIndex = 2;
  79. this.m_btnPlayOnce.Text = "Play Once";
  80. this.m_btnPlayOnce.Click += new System.EventHandler(this.m_btnPlayOnce_Click);
  81. // 
  82. // m_btnPlayLoop
  83. // 
  84. this.m_btnPlayLoop.Location = new System.Drawing.Point(6, 85);
  85. this.m_btnPlayLoop.Name = "m_btnPlayLoop";
  86. this.m_btnPlayLoop.Size = new System.Drawing.Size(102, 20);
  87. this.m_btnPlayLoop.TabIndex = 2;
  88. this.m_btnPlayLoop.Text = "Play Loop";
  89. this.m_btnPlayLoop.Click += new System.EventHandler(this.m_btnPlayLoop_Click);
  90. // 
  91. // m_btnStop
  92. // 
  93. this.m_btnStop.Location = new System.Drawing.Point(6, 111);
  94. this.m_btnStop.Name = "m_btnStop";
  95. this.m_btnStop.Size = new System.Drawing.Size(102, 20);
  96. this.m_btnStop.TabIndex = 2;
  97. this.m_btnStop.Text = "Stop";
  98. this.m_btnStop.Click += new System.EventHandler(this.m_btnStop_Click);
  99. // 
  100. // MainForm
  101. // 
  102. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  103. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  104. this.AutoScroll = true;
  105. this.ClientSize = new System.Drawing.Size(240, 268);
  106. this.Controls.Add(this.m_btnStop);
  107. this.Controls.Add(this.m_btnPlayLoop);
  108. this.Controls.Add(this.m_btnPlayOnce);
  109. this.Controls.Add(this.m_pnlFile);
  110. this.Menu = this.mainMenu1;
  111. this.Name = "MainForm";
  112. this.Text = "Form1";
  113. this.m_pnlFile.ResumeLayout(false);
  114. this.ResumeLayout(false);
  115. }
  116. #endregion
  117. private System.Windows.Forms.Button m_btnBrowse;
  118. private System.Windows.Forms.OpenFileDialog m_openFileDialog;
  119. private System.Windows.Forms.Panel m_pnlFile;
  120. private System.Windows.Forms.TextBox m_txtFile;
  121. private System.Windows.Forms.Button m_btnPlayOnce;
  122. private System.Windows.Forms.Button m_btnPlayLoop;
  123. private System.Windows.Forms.Button m_btnStop;
  124. }
  125. }