使用数据模板选择器时 WPF ComboBox 键索引不起作用

发布于 2024-09-24 11:11:04 字数 1380 浏览 6 评论 0 原文

使用数据模板选择器时,我遇到有关 WPF 组合框的问题。

基本上,WPF 组合框有一个标准行为,如果您使用键盘键入某个字符,它会将您直接带到从该字符开始的项目。我不知道此功能的正式名称,暂时将其称为“Key Indexing”。

我现在想创建一个以不同方式显示其项目的组合框。我使用 DataTemplateSelector 实现了这一点;

    <ComboBox SelectedItem="{Binding Selection}" x:Name="Input" ItemsSource="{Binding Parties}">
        <ComboBox.ItemTemplateSelector>
            <Editor:PartyTemplateSelector DefaultTemplate="{StaticResource Default}" NewTemplate="{StaticResource New}" OldTemplate="{StaticResource Old}"/>
        </ComboBox.ItemTemplateSelector>
    </ComboBox>

而 PartyTemplateSelector 是:

public class PartyTemplateSelector : DataTemplateSelector
{
    public DataTemplate DefaultTemplate
    {
        get; set;
    }

    public DataTemplate NewTemplate
    {
        get; set;
    }

    public DataTemplate OldTemplate
    {
        get; set;
    }

    public override DataTemplate SelectTemplate(object item, DependencyObject container)
    {
        var party = (Party) item;
        if (party is OldDisplay)
        {
            return OldTemplate;                
        }

        if(counterparty.NewLook)
        {
            return NewTemplate;
        }
        return DefaultTemplate;
    }
}

除了失去关键索引功能之外,它工作得很好。当我在组合框下拉时键入一个键时,它不会将我带到从我键入的字符开始的项目。

谁能帮我解决这个问题吗?

问候。

I have a problem regarding WPF combobox when using data template selector.

Basically, WPF combobox has a standard behaviour which will take you directly to the item that starts from a character if you type that character using keyboard. I don't know the official name for this functionality and will temporarily call it "Key Indexing".

I now want to create a ComboBox which displays its item differently. I achieved this using DataTemplateSelector;

    <ComboBox SelectedItem="{Binding Selection}" x:Name="Input" ItemsSource="{Binding Parties}">
        <ComboBox.ItemTemplateSelector>
            <Editor:PartyTemplateSelector DefaultTemplate="{StaticResource Default}" NewTemplate="{StaticResource New}" OldTemplate="{StaticResource Old}"/>
        </ComboBox.ItemTemplateSelector>
    </ComboBox>

And the PartyTemplateSelector is:

public class PartyTemplateSelector : DataTemplateSelector
{
    public DataTemplate DefaultTemplate
    {
        get; set;
    }

    public DataTemplate NewTemplate
    {
        get; set;
    }

    public DataTemplate OldTemplate
    {
        get; set;
    }

    public override DataTemplate SelectTemplate(object item, DependencyObject container)
    {
        var party = (Party) item;
        if (party is OldDisplay)
        {
            return OldTemplate;                
        }

        if(counterparty.NewLook)
        {
            return NewTemplate;
        }
        return DefaultTemplate;
    }
}

It works fine apart from that the key indexing ability is lost. When I type a key while the combobox is dropped down, it does not take me to the item that starts from the character I typed.

Can anyone help me with this?

Regards.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

递刀给你 2024-10-01 11:11:04

尝试 ,其中“prop”应该是您要检查与按键是否匹配的属性的路径。

编辑:当然,您可以直接在 ComboBox 标记内使用它,而不是作为单独的标记。

Try <TextSearch.TextPath="prop" /> where 'prop' should be the path to the property you want to examine for matches against the keypresses.

Edit: of course, you can use it directly inside the ComboBox tag and not as a separate one.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文