博客
关于我
[WPF 自定义控件]排序、筛选以及高亮
阅读量:435 次
发布时间:2019-03-06

本文共 2112 字,大约阅读时间需要 7 分钟。

如何优化列表以提高查找效率

1. 排序

在WPF中实现数据排序的常用方法是使用 CollectionViewSource。它类似于数据库中的表和视图概念,通过代理实现数据的排序、筛选和分组,而不直接修改原始数据源。以下是使用 CollectionViewSource 实现排序的代码示例:

private readonly CollectionViewSource _viewSource;public HighlightSample(){    InitializeComponent();    _viewSource = new CollectionViewSource    {        Source = Employee.AllExecutives    };    _viewSource.View.Culture = new System.Globalization.CultureInfo("zh-CN");    _viewSource.View.SortDescriptions.Add(new SortDescription(nameof(Employee.FirstName), ListSortDirection.Ascending));    EmployeeElement.ItemsSource = _viewSource.View;}

2. 筛选

CollectionViewSourceView 属性支持过滤功能。以下是实现筛选功能的代码:

_viewSource.View.Filter = (obj) => (obj as Employee).DisplayName.ToLower().Contains(FilterElement.Text);private void OnFilterTextChanged(object sender, TextChangedEventArgs e){    if (_viewSource != null)        _viewSource.View.Refresh();}

3. 高亮显示

为了实现高亮效果,可以使用 TextBlockService 附加属性。以下是实现高亮功能的代码示例:

private static void MarkHighlight(TextBlock target, string highlightText){    var text = target.Text;    target.Inlines.Clear();    if (string.IsNullOrWhiteSpace(text))        return;    if (string.IsNullOrWhiteSpace(highlightText))    {        target.Inlines.Add(new Run { Text = text });        return;    }    while (text.Length > 0)    {        var runText = string.Empty;        var index = text.IndexOf(highlightText, StringComparison.InvariantCultureIgnoreCase);        if (index > 0)        {            runText = text.Substring(0, index);            target.Inlines.Add(new Run { Text = runText, Foreground = _noHighlightBrush });        }        else if (index == 0)        {            runText = text.Substring(0, highlightText.Length);            target.Inlines.Add(new Run { Text = runText });        }        else if (index == -1)        {            runText = text;            target.Inlines.Add(new Run { Text = runText, Foreground = _noHighlightBrush });        }        text = text.Substring(runText.Length);    }}

4. 结语

通过上述方法,我们可以显著提升列表的可用性和效率。虽然高亮功能目前无法直接定义颜色,但可以通过自定义 ToolTipService 来实现更复杂的高亮效果。

5. 参考

6. 源码

转载地址:http://xtyuz.baihongyu.com/

你可能感兴趣的文章
NIO基于UDP协议的网络编程
查看>>
NIO笔记---上
查看>>
NIO蔚来 面试——IP地址你了解多少?
查看>>
NISP一级,NISP二级报考说明,零基础入门到精通,收藏这篇就够了
查看>>
NISP国家信息安全水平考试,收藏这一篇就够了
查看>>
NIS服务器的配置过程
查看>>
Nitrux 3.8 发布!性能全面提升,带来非凡体验
查看>>
NiuShop开源商城系统 SQL注入漏洞复现
查看>>
NI笔试——大数加法
查看>>
NLog 自定义字段 写入 oracle
查看>>
NLog类库使用探索——详解配置
查看>>
NLP 基于kashgari和BERT实现中文命名实体识别(NER)
查看>>
NLP 模型中的偏差和公平性检测
查看>>
Vue3.0 性能提升主要是通过哪几方面体现的?
查看>>
NLP 项目:维基百科文章爬虫和分类【01】 - 语料库阅读器
查看>>
NLP_什么是统计语言模型_条件概率的链式法则_n元统计语言模型_马尔科夫链_数据稀疏(出现了词库中没有的词)_统计语言模型的平滑策略---人工智能工作笔记0035
查看>>
NLP三大特征抽取器:CNN、RNN与Transformer全面解析
查看>>
NLP学习笔记:使用 Python 进行NLTK
查看>>
NLP度量指标BELU真的完美么?
查看>>
NLP的不同研究领域和最新发展的概述
查看>>