Calendar rendering.

This commit is contained in:
Burak Kaan Köse
2026-03-23 10:22:47 +01:00
parent 8d143e3b08
commit 8586d0ef54
12 changed files with 1347 additions and 32 deletions
@@ -0,0 +1,13 @@
namespace Wino.Calendar.Controls;
public sealed class HeaderTextLayout
{
public HeaderTextLayout(string text, double width)
{
Text = text;
Width = width;
}
public string Text { get; set; }
public double Width { get; set; }
}