2016-07-20 22 views
0

の中でGridを伸ばしたいと思います。私は神を持っているコードは正しく動作しません。どんな手掛かり?Viewbox内のグリッドを伸ばす方法

<Viewbox HorizontalAlignment="Stretch" VerticalAlignment="Stretch"> 
     <Grid HorizontalAlignment="Stretch" VerticalAlignment="Stretch"> 
     <Grid.ColumnDefinitions> 
       <ColumnDefinition Width="Auto"></ColumnDefinition> 
      </Grid.ColumnDefinitions> 
      <Grid.RowDefinitions> 
       <RowDefinition Height="*"></RowDefinition> 
       <RowDefinition Height="Auto"></RowDefinition> 
      </Grid.RowDefinitions> 
</Grid> 
</Viewbox> 

enter image description here

+2

はストレッチを追加= "塗りつぶし" ViewBoxを中 – Tuco

答えて

1

ViewboxのstrechプロパティをFillに変更します。

<ビューボックスストレッチ= "塗りつぶし">

関連する問題