ShellContextMenu.cs 511 B

1234567891011121314151617181920212223
  1. using SharpShell.SharpContextMenu;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using System.Windows.Forms;
  8. namespace GeekDesk.Util
  9. {
  10. class ShellContextMenu : SharpContextMenu
  11. {
  12. protected override bool CanShowMenu()
  13. {
  14. throw new NotImplementedException();
  15. }
  16. protected override ContextMenuStrip CreateMenu()
  17. {
  18. throw new NotImplementedException();
  19. }
  20. }
  21. }