Form1.cs
上传用户:yiyuerguo
上传日期:2014-09-27
资源大小:3781k
文件大小:4k
源码类别:

C#编程

开发平台:

Others

  1. using System;
  2. using System.Drawing;
  3. using System.Collections;
  4. using System.ComponentModel;
  5. using System.Windows.Forms;
  6. using System.Data;
  7. namespace flash
  8. {
  9. /// <summary>
  10. /// Form1 的摘要说明。
  11. /// </summary>
  12. public class Form1 : System.Windows.Forms.Form
  13. {
  14. private System.Windows.Forms.MainMenu mainMenu1;
  15. private System.Windows.Forms.MenuItem menuItem1;
  16. private System.Windows.Forms.MenuItem menuItem2;
  17. private AxMediaPlayer.AxMediaPlayer axMediaPlayer1;
  18. /// <summary>
  19. /// 必需的设计器变量。
  20. /// </summary>
  21. private System.ComponentModel.Container components = null;
  22. public Form1()
  23. {
  24. //
  25. // Windows 窗体设计器支持所必需的
  26. //
  27. InitializeComponent();
  28. //
  29. // TODO: 在 InitializeComponent 调用后添加任何构造函数代码
  30. //
  31. }
  32. /// <summary>
  33. /// 清理所有正在使用的资源。
  34. /// </summary>
  35. protected override void Dispose( bool disposing )
  36. {
  37. if( disposing )
  38. {
  39. if (components != null) 
  40. {
  41. components.Dispose();
  42. }
  43. }
  44. base.Dispose( disposing );
  45. }
  46. #region Windows 窗体设计器生成的代码
  47. /// <summary>
  48. /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  49. /// 此方法的内容。
  50. /// </summary>
  51. private void InitializeComponent()
  52. {
  53. System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(Form1));
  54. this.mainMenu1 = new System.Windows.Forms.MainMenu();
  55. this.menuItem1 = new System.Windows.Forms.MenuItem();
  56. this.menuItem2 = new System.Windows.Forms.MenuItem();
  57. this.axMediaPlayer1 = new AxMediaPlayer.AxMediaPlayer();
  58. ((System.ComponentModel.ISupportInitialize)(this.axMediaPlayer1)).BeginInit();
  59. this.SuspendLayout();
  60. // 
  61. // mainMenu1
  62. // 
  63. this.mainMenu1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
  64.   this.menuItem1});
  65. // 
  66. // menuItem1
  67. // 
  68. this.menuItem1.Index = 0;
  69. this.menuItem1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
  70.   this.menuItem2});
  71. this.menuItem1.Text = "文件";
  72. this.menuItem1.Click += new System.EventHandler(this.menuItem1_Click);
  73. // 
  74. // menuItem2
  75. // 
  76. this.menuItem2.Index = 0;
  77. this.menuItem2.Text = "打开文件";
  78. this.menuItem2.Click += new System.EventHandler(this.menuItem2_Click);
  79. // 
  80. // axMediaPlayer1
  81. // 
  82. this.axMediaPlayer1.Location = new System.Drawing.Point(8, 16);
  83. this.axMediaPlayer1.Name = "axMediaPlayer1";
  84. this.axMediaPlayer1.OcxState = ((System.Windows.Forms.AxHost.State)(resources.GetObject("axMediaPlayer1.OcxState")));
  85. this.axMediaPlayer1.Size = new System.Drawing.Size(272, 216);
  86. this.axMediaPlayer1.TabIndex = 0;
  87. // 
  88. // Form1
  89. // 
  90. this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
  91. this.ClientSize = new System.Drawing.Size(292, 273);
  92. this.Controls.Add(this.axMediaPlayer1);
  93. this.Menu = this.mainMenu1;
  94. this.Name = "Form1";
  95. this.Text = "Form1";
  96. ((System.ComponentModel.ISupportInitialize)(this.axMediaPlayer1)).EndInit();
  97. this.ResumeLayout(false);
  98. }
  99. #endregion
  100. /// <summary>
  101. /// 应用程序的主入口点。
  102. /// </summary>
  103. [STAThread]
  104. static void Main() 
  105. {
  106. Application.Run(new Form1());
  107. }
  108. private void menuItem2_Click(object sender, System.EventArgs e)
  109. {
  110. OpenFileDialog ofDialog = new OpenFileDialog();
  111. ofDialog.AddExtension = true;
  112. ofDialog.CheckFileExists = true;
  113. ofDialog.CheckPathExists = true;
  114. //the next sentence must be in single line
  115. ofDialog.Filter = "VCD文件(*.dat)|*.dat|Audio文件(*.avi)|*.avi|WAV文件(*.wav)|*.wav|MP3文件(*.mp3)|*.mp3|所有文件 (*.*)|*.*";
  116. ofDialog.DefaultExt = "*.mp3";
  117. if(ofDialog.ShowDialog() == DialogResult.OK)
  118. {
  119. this.axMediaPlayer1.FileName = ofDialog.FileName;
  120. }
  121. }
  122. private void menuItem1_Click(object sender, System.EventArgs e)
  123. {
  124. }
  125. }
  126. }