mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
16 lines
359 B
C#
16 lines
359 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace RainmeterStudio.Documents.DocumentEditorFeatures
|
|||
|
{
|
|||
|
public interface IToolboxProvider
|
|||
|
{
|
|||
|
bool SupportsToolboxDrop { get; }
|
|||
|
IEnumerable<string> ToolboxItems { get; }
|
|||
|
|
|||
|
event EventHandler ToolboxItemsChanged;
|
|||
|
}
|
|||
|
}
|