1

对于一个项目,我实现了一个类似于 IntelliSense 的小型控件,它只不过是一个ListBox. 它DataTemplateStackPanel控股 oneImage和 one组成TextBlock。没有其他的。正如您在我的控件的第一个屏幕截图中看到的那样,ListBox 的选择框选择了整个项目(这通常正是人们所期望的):

自定义列表框

但是我的 VS11 中的“被盗”图标质量很差,所以我想像 Visual Studio 那样调整选择:

Visual Studio 智能感知

您可以看到仅选择了文本(视觉表示确实忽略了图像/图标),我也想知道如何实现此行为。

编辑:图标只是具有透明背景的 GIF 文件。我会用更好的替换它们,但是我对如何获得所需的行为很感兴趣。

4

2 回答 2

3

这是通过替换 ListBoxItem 控件模板的解决方案。在我的测试中,我只显示两个文本字符串,第二个突出显示。

<Page.Resources>
    <Style x:Key="ItemStyle" TargetType="ListBoxItem">
        <Setter Property="Template">
            <Setter.Value>
                <ControlTemplate TargetType="ListBoxItem">
                    <ContentPresenter/>
                </ControlTemplate>
            </Setter.Value>
        </Setter>
    </Style>

    <Style x:Key="Selected" TargetType="{x:Type TextBlock}">
        <Style.Triggers>
            <DataTrigger Binding="{Binding Path=IsSelected, 
                         RelativeSource={RelativeSource Mode=FindAncestor, 
                         AncestorType={x:Type ListBoxItem}}}" Value="True">
                <Setter Property="Background" 
                        Value="{x:Static SystemColors.HighlightBrush}"/>
            </DataTrigger>
        </Style.Triggers>
    </Style>

    <DataTemplate x:Key="ItemTemplate" DataType="{x:Type ViewModel:DataItem}">
        <Grid>
            <Grid.ColumnDefinitions>
                <ColumnDefinition Width="auto" SharedSizeGroup="c1"/>
                <ColumnDefinition Width="auto" SharedSizeGroup="c2"/>
                <ColumnDefinition Width="*"/>
            </Grid.ColumnDefinitions>
            <Image Source="../Images/Collapse.png"/>
            <TextBlock Grid.Column="1" Text="{Binding Name}" Margin="0,0,5,0"/>
            <TextBlock Style="{StaticResource Selected}" 
                       Grid.Column="2" Text="{Binding Description}"/>
        </Grid>
    </DataTemplate>
</Page.Resources>

<Page.DataContext>
    <Samples:Page3ViewModel/>
</Page.DataContext>

<Grid>
    <ListBox 
        Grid.IsSharedSizeScope="True"
        SelectedIndex="2"
        HorizontalContentAlignment="Stretch"
        ItemsSource="{Binding Items}" 
        ItemContainerStyle="{StaticResource ItemStyle}"
        ItemTemplate="{StaticResource ItemTemplate}"/>
</Grid>

视图模型包含一组简单的数据项

public class Page3ViewModel
{
    public Page3ViewModel()
    {
        Items = new List<DataItem>
            {
                new DataItem{Name = "One", Description = "First"},
                new DataItem{Name = "Two", Description = "Second"},
                new DataItem{Name = "Three", Description = "Third"},
                new DataItem{Name = "Four", Description = "Fourth"},
            };
    }
    public IEnumerable<DataItem> Items { get; private set; }
}

给予

在此处输入图像描述

于 2012-06-16T15:57:33.550 回答
1

您的问题是由于 WPF 呈现ListBox中的每个项目的方式。它使用ItemContainerStyle将每个项目包装在ListBoxItem中。正是这个ListBoxItem包含要显示的内容(在您的情况下是包含图像和文本块的 StackPanel)。

默认情况下,ListBoxItem在它显示的所有内容周围显示蓝色矩形。

我想出了一个解决方案,但它是一个 hack。只需将图像放大并让背景像素颜色与列表框的背景颜色匹配(在我的情况下为白色)并使用以下 XAML。

<ListBox Margin="5"
         ItemsSource="{Binding Items}">
    <ListBox.ItemTemplate>
        <DataTemplate>
            <StackPanel Orientation="Horizontal"
                        Margin="-2,0,0,0">
                <Image Source="Save-icon.png" />
                <TextBlock Margin="5,8,0,0"
                           Text="{Binding}" />
            </StackPanel>
        </DataTemplate>
     </ListBox.ItemTemplate>
</ListBox>

这是结果:

在此处输入图像描述

更新

我想出了一个修改,这使得它少了一点黑客攻击。在我的ItemTemplate中,我用一个Border包围了图像,它使用绑定从它的父ListBox获取其背景颜色。(图像周围不再有边框)。

将 XAML 更新为此:

<ListBox Margin="5"
         ItemsSource="{Binding Items}"
         Background="LightSteelBlue">

    <ListBox.ItemTemplate>
        <DataTemplate>
            <StackPanel Orientation="Horizontal"
                        Margin="-2,0,0,0">
                <Border Background="{Binding Path=Background, RelativeSource={RelativeSource AncestorType=ListBox}}"
                        Padding="10">
                    <Image Source="Save-icon.png"/>
                 </Border>
                 <TextBlock Margin="5,8,0,0"
                            Text="{Binding}" />
            </StackPanel>
        </DataTemplate>
    </ListBox.ItemTemplate>

</ListBox>

这是新的结果:

在此处输入图像描述

现在您需要做的就是更新ListBox的背景颜色,一切都会自动调整。例如

<ListBox Margin="20"
         ItemsSource="{Binding Items}"
         Background="PeachPuff">

在此处输入图像描述

于 2012-06-16T14:58:26.167 回答