0
嗨我嘗試開發與Xamarin我的第一個跨應用程序,我嘗試做一個選項卡式頁面。 我的XAML代碼是Xamarin表格選項卡式頁面
<?xml version="1.0" encoding="utf-8" ?>
<TabbedPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="using:MyTimesheet.Pages"
x:Class="MyTimesheet.MainRootPage">
<!--Pages can be added as references or inline-->
<local:Page1></local:Page1>
<local:Page2></local:Page2>
</TabbedPage>
我的第1頁第2頁的XAML代碼是相同的:
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="MyTimesheet.Pages.ClientiPage">
<ContentPage.Content>
<StackLayout>
<Label Text="Welcome Clienti" />
</StackLayout>
</ContentPage.Content>
</ContentPage>
我發現,用我的計算策略,但是當我建立一個解決方案我的錯誤更例如:
找不到類型「TabbedPage」。 找不到類型'local:page1'。
有什麼不對? 三江源認爲
新的錯誤 - 新的截圖:
可以打印確切的錯誤語句並在此處上傳? – lowleetak
我有視覺工作室不是英文,所以我traslate錯誤 –
嘗試檢查xmlns:本地。它應該是這樣的格式:xmlns:local =「clr-namespace:MyTimesheet.Pages; assembly = MyTimesheet」 – lowleetak