mirror of
https://github.com/ckaczor/FloatingStatusWindow.git
synced 2026-01-13 17:22:47 -05:00
20 lines
407 B
C#
20 lines
407 B
C#
using System;
|
|
using System.Drawing;
|
|
|
|
namespace ChrisKaczor.Wpf.Windows.FloatingStatusWindow;
|
|
|
|
public interface IWindowSource
|
|
{
|
|
Guid Id { get; }
|
|
string Name { get; }
|
|
string WindowSettings { get; set; }
|
|
Icon Icon { get; }
|
|
|
|
bool HasSettingsMenu { get; }
|
|
bool HasRefreshMenu { get; }
|
|
bool HasAboutMenu { get; }
|
|
|
|
void ShowSettings();
|
|
void Refresh();
|
|
void ShowAbout();
|
|
} |