| 1234567891011121314151617181920212223 |
- using SharpShell.SharpContextMenu;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows.Forms;
- namespace GeekDesk.Util
- {
- class ShellContextMenu : SharpContextMenu
- {
- protected override bool CanShowMenu()
- {
- throw new NotImplementedException();
- }
- protected override ContextMenuStrip CreateMenu()
- {
- throw new NotImplementedException();
- }
- }
- }
|