1

我在网格中有 2 行,因为第一行的大小是固定的。我正在尝试在OnIdiom此处应用该功能。尝试如下:

<Grid.RowDefinitions>
    <RowDefinition>
        <RowDefinition.Height>
            <OnIdiom x:TypeArguments="x:Double">
                <OnIdiom.Phone>30</OnIdiom.Phone>
                <OnIdiom.Tablet>60</OnIdiom.Tablet>
            </OnIdiom>
        </RowDefinition.Height>
    </RowDefinition>
    <RowDefinition Height="auto"/>
</Grid.RowDefinitions>

但是在错误列表中出现以下错误:

No property, bindable property, or event found for 'Height', or mismatching type between value and property.

RowDefinition 高度 OnIdiom 属性的正确格式是什么?

4

2 回答 2

4

您可以使用OnIdiom标记扩展:

<RowDefinition Height="{OnIdiom Phone=30, Tablet=60}"/>
于 2019-12-08T09:51:18.290 回答
0
<Grid>
        <Grid.RowDefinitions>
            <RowDefinition Height="{OnIdiom Phone=30, Tablet=60}" />
            <RowDefinition Height="auto" />
        </Grid.RowDefinitions>
        <StackLayout
            Grid.Row="0"
            BackgroundColor="Blue"
            HorizontalOptions="FillAndExpand"
            VerticalOptions="FillAndExpand" />
    </Grid>
于 2019-12-10T05:38:36.123 回答