【发布时间】:2020-09-22 04:51:16
【问题描述】:
我对 Xamarin.Forms 完全陌生,正在尝试我的第一个 Hello World 应用程序。
我写了以下代码:
<?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="hello_world.MainPage">
<StackLayout>
<Label
Text="Welome"
BackgroundColor="Yellow"
TextColor="Green"
HeightRequest="{ConstraintExpression Type=RelativeToView, Factor=0.05, Constant=0}"
FontSize="Medium" />
</StackLayout>
</ContentPage>
但是,我收到了错误
No property, BindableProperty, or event found for "HeightRequest", or mismatching type between value and property.
我哪里错了?
【问题讨论】:
标签: xamarin.forms compiler-errors