2
我想在我的Windows Phone 8.1應用程序添加一個命令欄,使用Visual Studio 2013 Update 2的下面是XAML代碼:無法分配財產「Windows.UI.Xaml.FrameworkElement.MinHeight」
<Page
x:Class="App1.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:App1"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<Page.BottomAppBar>
<CommandBar>
<AppBarButton Icon="Accept" Label="appbarbutton"/>
</CommandBar>
</Page.BottomAppBar>
<Grid>
</Grid>
</Page>
的<CommandBar>...</CommandBar>
標籤有藍色的波浪線,出現以下錯誤:
Error 1 The text associated with this error code could not be found.
Failed to assign to property 'Windows.UI.Xaml.FrameworkElement.MinHeight'. [Line: 6 Position: 9]
我怎樣才能解決這個問題?我對Windows Phone和C#比較陌生,上週纔開始使用。任何幫助,將不勝感激!
感謝,
託尼
設置'MinHeight'可能不是真正的問題。你能發表一些關於錯誤的更多細節嗎?整個xaml,堆棧跟蹤等?或者可能是可以重現相同的工作樣本。 – pushpraj
我更新了xaml並刪除了'MinHeight',並且我得到了同樣的錯誤。我剛剛創建了一個空白Windows Phone應用程序(Visual C#)。然後在MainPage.xaml上,文檔大綱> BottomAppBar - >添加命令欄。與上面相同的錯誤... –
如果刪除CommandBar,錯誤是否仍然存在?檢查Mainpage.g.cs的Line:6 Position:9並查看是否有一些有趣的內容(通常在obj文件夾中的某處)。由於我現在不打電話給env,所以我可能只能提示你。 – pushpraj