1
有一個ScrollViewer中的Grid.Row,我想的ScrollViewer高度爲汽車和
它只是想採取一些像素MaxHeight最大高度爲百分比
有一個ScrollViewer中的Grid.Row,我想的ScrollViewer高度爲汽車和
它只是想採取一些像素MaxHeight最大高度爲百分比
<Grid>
<Grid.RowDefinitions>
<RowDefinition MaxHeight=".33*" />
<RowDefinition Height=".66*" />
</Grid.RowDefinitions>
<Grid Grid.row="0">
<!-- scroll viewer -->
</Grid>
<Grid Grid.row="1">
<!-- other -->
</grid>
</Grid>
容器的1/3最大值
我認爲這可能是你想要的?
我得到一個錯誤無法轉換.33 *。你測試過了嗎? – Paparazzi
該行的三分之一,還是整個電網的三分之一? – McGarnagle
是你在說什麼 - ' '? –
@RohitVats我猜你的意思是: ' –
Viv