【发布时间】:2014-09-29 18:29:38
【问题描述】:
我目前正在学习 Xamarin 开发,看起来学习曲线相当长。
我有一个标签页类 (TabbedPageTest.cs),我继承自 TabbedPage。
现在我如何才能查看该页面。
假设我想使用表格视图中的单元格进行导航。
TableView tb = new TableView
{
Intent = TableIntent.Menu,
Root = new TableRoot
{
new TableSection("Tabbed Page Test")
{
new TextCell
{
// What all codes can I add here to navigate or view TabbedPageTest.cs?
}
}
}
}
【问题讨论】:
标签: xamarin.ios xamarin xamarin.forms