タグ付けされた質問 「listboxitem」

6
ListBox ItemTemplateを取得して、ListBoxの全幅を水平方向に拡大する方法は?
ListItemのオレンジ色の背景をListboxの幅いっぱいに拡張したいのですが。 現在、幅はFirstName + LastNameと同じです。 可能なすべての要素を設定しました:Horizo​​ntalAlignment = "Stretch"。 ユーザーがListboxを拡大するときにListboxItemの背景を拡大して、絶対値を入れたくない。 ListBoxItemsの背景色がListBoxの幅を満たすようにするにはどうすればよいですか? <Window x:Class="TestListBoxSelectedItemStyle.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local="clr-namespace:TestListBoxSelectedItemStyle" Title="Window1" Height="300" Width="300"> <Window.Resources> <local:CustomerViewModel x:Key="TheDataProvider"/> <DataTemplate x:Key="CustomerItemTemplate"> <Border CornerRadius="5" Background="Orange" HorizontalAlignment="Stretch" Padding="5" Margin="3"> <StackPanel Orientation="Horizontal" HorizontalAlignment="Stretch" Width="Auto"> <TextBlock HorizontalAlignment="Stretch"> <TextBlock.Text> <MultiBinding StringFormat="{}{0} {1}"> <Binding Path="FirstName"/> <Binding Path="LastName"/> </MultiBinding> </TextBlock.Text> </TextBlock> </StackPanel> </Border> </DataTemplate> </Window.Resources> <Grid> …
356 xaml  listboxitem 
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.