完成Grid示例

This commit is contained in:
zengwenjie
2025-09-30 08:21:01 +08:00
parent a023c7f6cb
commit 61117b2098
6 changed files with 246 additions and 4 deletions

View File

@@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
namespace RazorEngineTest
{
public class UICollection : ObservableCollection<UIElement>
{
public UICollection() { }
}
}