web-dev-qa-db-ja.com

WPFで幅を100%に設定する方法

[〜#〜] wpf [〜#〜]のコンポーネントに使用可能なスペースを100%使用するよう指示する方法はありますか?

好む

width: 100%;  

cSSで

私はこのXAMLを持っていますが、Gridに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%幅にする必要があります。

63
Jakub Arnold

幅に課しているのはGridのコンテナです。この場合、それはListBoxItemであり、デフォルトで左揃えです。次のようにストレッチするように設定できます。

<ListBox>
    <!-- other XAML omitted, you just need to add the following bit -->
    <ListBox.ItemContainerStyle>
        <Style TargetType="ListBoxItem">
            <Setter Property="HorizontalAlignment" Value="Stretch"/>
        </Style>
    </ListBox.ItemContainerStyle>
</ListBox>
85
Kent Boogaart

次のようにHorizontalContentAlignment="Stretch"を使用できます。

<ListBox HorizontalContentAlignment="Stretch"/>
54