<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="XamlTest.HelloXamlPage">
<Label Text="Hello, XAML!"
VerticalOptions="Start"
HorizontalTextAlignment="Center"
Rotation="-15"
IsVisable="true"
FontSize="Large"
FontAttributes="Bold"
TextColor="Black"
/>
</ContentPage>
這是一個基本的例子,但事情是這樣寫的代碼比上默認的主XAML頁面中的另一種形式的XAML頁面( MainPage.xaml中)默認的工作狀態良好,沒有任何問題,只是其他XAML頁面不能正常工作,給我這個異常:Xamarin.Forms.Xaml.XamlParseException:不能分配財產「IsVisable」:房產不存在
Xamarin.Forms.Xaml.XamlParseException:位置9:10。無法分配 財產「IsVisable」:屬性不存在,或者不分配, 或不匹配價值和物業之間的類型
,我已經在公共應用
public partial class App : Application
{
public App()
{
InitializeComponent();
MainPage = new XamlTest.HelloXamlPage(); // called HelloXamlPage instead of MainPage();
}
改變了代碼稱爲HelloXamlPage而不是MainPage(); 所以任何人都可以幫助我呢?
你有一個錯字 - 它的'IsVisible'。 – Zroq