rainmeter-studio/RainmeterStudio.Core/Editor/Features/IToolboxProvider.cs

16 lines
347 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;
2014-09-12 10:26:52 +00:00
namespace RainmeterStudio.Core.Editor.Features
2014-07-29 16:42:52 +00:00
{
public interface IToolboxProvider
{
bool SupportsToolboxDrop { get; }
IEnumerable<string> ToolboxItems { get; }
event EventHandler ToolboxItemsChanged;
}
}