Files
LanMountainDesktop/LanMontainDesktop/Views/Components/IDesktopComponentWidget.cs
lincube 2d09c1aca2 0.2.4
稳定性提升
2026-03-03 11:10:57 +08:00

20 lines
442 B
C#

using LanMontainDesktop.Services;
namespace LanMontainDesktop.Views.Components;
public interface IDesktopComponentWidget
{
void ApplyCellSize(double cellSize);
}
public interface ITimeZoneAwareComponentWidget
{
void SetTimeZoneService(TimeZoneService timeZoneService);
void ClearTimeZoneService();
}
public interface IWeatherInfoAwareComponentWidget
{
void SetWeatherInfoService(IWeatherInfoService weatherInfoService);
}