| Name | Message | Date |
|---|---|---|
| 📄 AvaloniaManager.cs | 1 month ago | |
| 📄 GridTreeWindow.cs | 1 month ago | |
| 📄 OutGridTree.cs | 1 month ago | |
| 📄 OutGridTree.csproj | 1 month ago | |
| 📄 packages.lock.json | 1 month ago |
📄
OutGridTree/GridTreeWindow.cs
using Avalonia.Controls; using Avalonia.Layout; namespace OutGridTree; internal sealed class GridTreeWindow : Window { public GridTreeWindow() { Title = "Out-GridTree"; Width = 1080; Height = 720; WindowStartupLocation = WindowStartupLocation.CenterScreen; Content = new TextBlock() { Text = "Out-GridTree", HorizontalAlignment = HorizontalAlignment.Center, VerticalAlignment = VerticalAlignment.Center, }; } }