我在网格中有 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 属性的正确格式是什么?