This commit is contained in:
lincube
2026-03-01 00:34:07 +08:00
parent 473a84e47b
commit f0e44c0f87
22 changed files with 3388 additions and 697 deletions

View File

@@ -3,4 +3,5 @@ namespace LanMontainDesktop.ComponentSystem;
public static class BuiltInComponentIds
{
public const string Clock = "Clock";
public const string Blank2x4 = "Blank2x4";
}

View File

@@ -29,6 +29,15 @@ public sealed class ComponentRegistry
MinWidthCells: 1,
MinHeightCells: 1,
AllowStatusBarPlacement: true,
AllowDesktopPlacement: true),
new DesktopComponentDefinition(
BuiltInComponentIds.Blank2x4,
"Blank 2x4",
"Rectangle",
"Layout",
MinWidthCells: 2,
MinHeightCells: 4,
AllowStatusBarPlacement: false,
AllowDesktopPlacement: true)
};