csharp4405de34 | 1 | namespace CascadeIDE.Services.Presentation; |
| 2 | |
| 3 | /// <summary> |
| 4 | /// DTO кадра геометрии рабочей строки <c>MainGrid</c> для зон P/F/M. |
| 5 | /// Используется как единый источник для Avalonia-bindings и будущего Skia preview-path. |
| 6 | /// </summary> |
| 7 | public readonly record struct PresentationMainGridLayoutFrame( |
| 8 | string ColumnDefinitions, |
| 9 | int ContentZoneCount, |
| 10 | bool HasExplicitWeights, |
| 11 | IReadOnlyList<double> NormalizedZoneWeights, |
| 12 | IReadOnlyList<PresentationZoneBound> ZoneBounds); |
| 13 | |
| 14 | |
View only · write via MCP/CIDE