mirror of
https://github.com/ckaczor/FloatingStatusWindow.git
synced 2026-01-14 01:25:36 -05:00
Start upgrading to .NET 7
This commit is contained in:
@@ -1,19 +1,20 @@
|
||||
using System.Drawing;
|
||||
using System;
|
||||
using System.Drawing;
|
||||
|
||||
namespace FloatingStatusWindowLibrary
|
||||
namespace ChrisKaczor.Wpf.FloatingStatusWindow;
|
||||
|
||||
public interface IWindowSource
|
||||
{
|
||||
public interface IWindowSource
|
||||
{
|
||||
string Name { get; }
|
||||
string WindowSettings { get; set; }
|
||||
Icon Icon { get; }
|
||||
Guid Id { get; }
|
||||
string Name { get; }
|
||||
string WindowSettings { get; set; }
|
||||
Icon Icon { get; }
|
||||
|
||||
bool HasSettingsMenu { get; }
|
||||
bool HasRefreshMenu { get; }
|
||||
bool HasAboutMenu { get; }
|
||||
bool HasSettingsMenu { get; }
|
||||
bool HasRefreshMenu { get; }
|
||||
bool HasAboutMenu { get; }
|
||||
|
||||
void ShowSettings();
|
||||
void Refresh();
|
||||
void ShowAbout();
|
||||
}
|
||||
}
|
||||
void ShowSettings();
|
||||
void Refresh();
|
||||
void ShowAbout();
|
||||
}
|
||||
Reference in New Issue
Block a user