fork download
  1. namespace WindowsFormsApplication1
  2. {
  3. partial class UserControl1
  4. {
  5. /// <summary>
  6. /// 必要なデザイナー変数です。
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9.  
  10. /// <summary>
  11. /// 使用中のリソースをすべてクリーンアップします。
  12. /// </summary>
  13. /// <param name="disposing">マネージ リソースが破棄される場合 true、破棄されない場合は 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.  
  23. #region コンポーネント デザイナーで生成されたコード
  24.  
  25. /// <summary>
  26. /// デザイナー サポートに必要なメソッドです。このメソッドの内容を
  27. /// コード エディターで変更しないでください。
  28. /// </summary>
  29. private void InitializeComponent()
  30. {
  31. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(UserControl1));
  32. this.axWindowsMediaPlayer1 = new AxWMPLib.AxWindowsMediaPlayer();
  33. ((System.ComponentModel.ISupportInitialize)(this.axWindowsMediaPlayer1)).BeginInit();
  34. this.SuspendLayout();
  35. //
  36. // axWindowsMediaPlayer1
  37. //
  38. this.axWindowsMediaPlayer1.Dock = System.Windows.Forms.DockStyle.Fill;
  39. this.axWindowsMediaPlayer1.Enabled = true;
  40. this.axWindowsMediaPlayer1.Location = new System.Drawing.Point(0, 0);
  41. this.axWindowsMediaPlayer1.Name = "axWindowsMediaPlayer1";
  42. this.axWindowsMediaPlayer1.OcxState = ((System.Windows.Forms.AxHost.State)(resources.GetObject("axWindowsMediaPlayer1.OcxState")));
  43. this.axWindowsMediaPlayer1.Size = new System.Drawing.Size(150, 150);
  44. this.axWindowsMediaPlayer1.TabIndex = 0;
  45. //
  46. // UserControl1
  47. //
  48. this.AllowDrop = true;
  49. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  50. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  51. this.Controls.Add(this.axWindowsMediaPlayer1);
  52. this.Name = "UserControl1";
  53. ((System.ComponentModel.ISupportInitialize)(this.axWindowsMediaPlayer1)).EndInit();
  54. this.ResumeLayout(false);
  55.  
  56. }
  57.  
  58. #endregion
  59.  
  60. private AxWMPLib.AxWindowsMediaPlayer axWindowsMediaPlayer1;
  61. }
  62. }
  63.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
Compilation failed: 2 error(s), 0 warnings
amespace name `AxWMPLib' could not be found. Are you missing a using directive or an assembly reference?
prog.cs(14,33): error CS0115: `WindowsFormsApplication1.UserControl1.Dispose(bool)' is marked as an override but no suitable method found to override
stdout
Standard output is empty