9 lines
186 B
C#
9 lines
186 B
C#
namespace TheXamlGuy.TaskbarGroup.Core
|
|
{
|
|
public interface ITaskbar : IInitializable, IDisposable
|
|
{
|
|
TaskbarState GetCurrentState();
|
|
|
|
IntPtr GetHandle();
|
|
}
|
|
} |