24 lines
511 B
C#
24 lines
511 B
C#
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();
|
|
}
|
|
}
|
|
}
|