2026-02-28 12:30:16 +08:00
|
|
|
namespace LanMontainDesktop.ComponentSystem;
|
|
|
|
|
|
|
|
|
|
public static class BuiltInComponentIds
|
|
|
|
|
{
|
|
|
|
|
public const string Clock = "Clock";
|
2026-03-02 22:46:10 +08:00
|
|
|
public const string DesktopClock = "DesktopClock";
|
2026-03-03 04:56:04 +08:00
|
|
|
public const string DesktopWeatherClock = "DesktopWeatherClock";
|
2026-03-02 22:46:10 +08:00
|
|
|
public const string DesktopTimer = "DesktopTimer";
|
2026-03-03 04:56:04 +08:00
|
|
|
public const string DesktopWeather = "DesktopWeather";
|
|
|
|
|
public const string DesktopHourlyWeather = "DesktopHourlyWeather";
|
|
|
|
|
public const string DesktopMultiDayWeather = "DesktopMultiDayWeather";
|
2026-03-03 15:09:49 +08:00
|
|
|
public const string DesktopExtendedWeather = "DesktopExtendedWeather";
|
|
|
|
|
public const string DesktopClassSchedule = "DesktopClassSchedule";
|
2026-03-03 18:26:29 +08:00
|
|
|
public const string DesktopMusicControl = "DesktopMusicControl";
|
|
|
|
|
public const string DesktopAudioRecorder = "DesktopAudioRecorder";
|
2026-03-01 00:34:07 +08:00
|
|
|
public const string Blank2x4 = "Blank2x4";
|
2026-03-01 16:50:06 +08:00
|
|
|
public const string Date = "Date";
|
2026-03-02 20:02:14 +08:00
|
|
|
public const string MonthCalendar = "MonthCalendar";
|
|
|
|
|
public const string LunarCalendar = "LunarCalendar";
|
2026-03-02 22:46:10 +08:00
|
|
|
public const string HolidayCalendar = "HolidayCalendar";
|
2026-03-04 02:02:34 +08:00
|
|
|
public const string DesktopDailyPoetry = "DesktopDailyPoetry";
|
|
|
|
|
public const string DesktopDailyArtwork = "DesktopDailyArtwork";
|
2026-03-03 04:56:04 +08:00
|
|
|
public const string DesktopWhiteboard = "DesktopWhiteboard";
|
|
|
|
|
public const string DesktopBlackboardLandscape = "DesktopBlackboardLandscape";
|
2026-02-28 12:30:16 +08:00
|
|
|
}
|