rainmeter-studio/RainmeterStudio.Core/Documents/DocumentEditorFeatures/IToolboxProvider.cs

16 lines
364 B
C#
Raw Normal View History

2014-07-29 16:42:52 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace RainmeterStudio.Core.Documents.DocumentEditorFeatures
2014-07-29 16:42:52 +00:00
{
public interface IToolboxProvider
{
bool SupportsToolboxDrop { get; }
IEnumerable<string> ToolboxItems { get; }
event EventHandler ToolboxItemsChanged;
}
}