2019-06-24 21:45:54 +02:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using System.Windows.Forms;
|
|
|
|
|
|
2019-07-16 23:35:21 +02:00
|
|
|
|
namespace Toolbox.Library
|
2019-06-24 21:45:54 +02:00
|
|
|
|
{
|
|
|
|
|
//Gets the context menus from a tree node when right clicked
|
|
|
|
|
//This can be used to save memory as storing lists of menus for every node takes up too much memory
|
|
|
|
|
public interface IContextMenuNode
|
|
|
|
|
{
|
|
|
|
|
ToolStripItem[] GetContextMenuItems();
|
|
|
|
|
}
|
|
|
|
|
}
|