现在我遇到了一个问题,因为我想创建一些我希望填充Grid
并进入Grid
的页面。我想创建一系列Button
。
如何在Grid
中创建Page
?
我尝试使用以下代码:
SortedList<string, Page> pageList = new SortedList<string, Page>();
for (int i = 0; i < 3; i++)
{
pageList.Add(string.Format("Page{0}", i), new Page());
}
Grid LayoutRoot = new Grid(); // ???????
如何将Grid
插入Page
?我希望它引用Grid
例如:
pageList["Page2"].LayoutRoot;
感谢。