WPFに利用可能な領域を100%占有する方法はありますか?WPFで幅を100%に設定する方法
CSSで
width: 100%;
と同じように、私は、このXAMLを持っている、と私は100%の幅を取るためにグリッドを強制する方法がわかりません。
<ListBox Name="lstConnections">
<ListBox.ItemTemplate>
<DataTemplate>
<Grid Background="LightPink">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="Auto"/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<TextBlock Grid.Row="0" Grid.Column="0" Text="{Binding Path=User}" Margin="4"></TextBlock>
<TextBlock Grid.Row="0" Grid.Column="1" Text="{Binding Path=Password}" Margin="4"></TextBlock>
<TextBlock Grid.Row="1" Grid.Column="0" Grid.ColumnSpan="2" Text="{Binding Path=Host}" Margin="4"></TextBlock>
</Grid>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
結果は、私はそれがピンク作ら
alt text http://foto.darth.cz/pictures/wpf_width.jpg
ようなので、それはそれがかかりますどのくらいのスペース明らかだ見えます。私はピンクのグリッドを100%幅にする必要があります。
リンクが死んでいるの... –
@MartiniBiancoは、私は申し訳ありませんが、この質問は8歳。私はイメージに何があったのか覚えていないし、WPFをそれ以来使っていない。 –