fork download
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9.  
  10. namespace WindowsFormsApplication1
  11. {
  12. class MyMenuStrip : MenuStrip
  13. {
  14. //コンストラクタへイベントなどを書く
  15. public MyMenuStrip()
  16. {
  17. this.Click += new EventHandler(MyMenuStrip_Click);
  18. }
  19.  
  20. void MyMenuStrip_Click(object sender, EventArgs e)
  21. {
  22. throw new NotImplementedException();
  23. }
  24. }
  25. }
  26.  
Not running #stdin #stdout 0s 0KB
stdin
Standard input is empty
stdout
Standard output is empty