Files
LanMountainDesktop/LanMountainDesktop/Views/Components/IDesktopComponentWidget.cs
lincube 5d35e0d21c 0.4.4
bilibili热搜组件
2026-03-06 00:29:40 +08:00

35 lines
876 B
C#

using LanMountainDesktop.Services;
namespace LanMountainDesktop.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);
}
public interface IRecommendationInfoAwareComponentWidget
{
void SetRecommendationInfoService(IRecommendationInfoService recommendationInfoService);
}
public interface ICalculatorInfoAwareComponentWidget
{
void SetCalculatorDataService(ICalculatorDataService calculatorDataService);
}
public interface IDesktopPageVisibilityAwareComponentWidget
{
void SetDesktopPageContext(bool isOnActivePage, bool isEditMode);
}