ContextMenuStripEx.cs 510 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Windows.Forms;
  5. using System.IO;
  6. using System.Drawing;
  7. using System.Drawing.Drawing2D;
  8. using System.ComponentModel;
  9. namespace LYFZ.ComponentLibrary
  10. {
  11. public class ContextMenuStripEx:System.Windows.Forms.ContextMenuStrip
  12. {
  13. public ContextMenuStripEx(System.ComponentModel.IContainer components)
  14. : base(components)
  15. {
  16. }
  17. public ContextMenuStripEx()
  18. {
  19. }
  20. }
  21. }