欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

C#實現(xiàn)帶搜索功能的ComboBox

 更新時間:2016年10月26日 14:02:35   作者:眾尋  
這篇文章主要為大家詳細(xì)介紹了C#如何實現(xiàn)帶搜索功能的ComboBox,具有一定的參考價值,感興趣的小伙伴們可以參考一下

帶搜索的ComboBox就是給ComboBox一個依賴屬性的ItemSource,然后通過數(shù)據(jù)源中是否包含要查詢的值,重新給ComboBox綁定數(shù)據(jù)源。

public class EditComboBox : ComboBox
  {
    private bool t = true;//首次獲取焦點標(biāo)志位
    private ObservableCollection<object> bindingList = new ObservableCollection<object>();//數(shù)據(jù)源綁定List
    private string editText = "";//編輯文本內(nèi)容

    /// <summary>
    /// 注冊依賴事件
    /// </summary>
    public static readonly DependencyProperty ItemsSourcePropertyNew = DependencyProperty.Register("MyItemsSource", typeof(IEnumerable), typeof(EditComboBox), new FrameworkPropertyMetadata(new PropertyChangedCallback(ValueChanged)));
    /// <summary>
    /// 數(shù)據(jù)源改變,添加數(shù)據(jù)源到綁定數(shù)據(jù)源
    /// </summary>
    /// <param name="d"></param>
    /// <param name="e"></param>
    private static void ValueChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
    {
      EditComboBox ecb = d as EditComboBox;
      ecb.bindingList.Clear();
      //遍歷循環(huán)操作
      foreach (var item in ecb.MyItemsSource)
      {
        ecb.bindingList.Add(item);
      }
    }
    /// <summary>
    /// 設(shè)置或獲取ComboBox的數(shù)據(jù)源
    /// </summary>
    public IEnumerable MyItemsSource
    {
      get
      {
        return (IEnumerable)GetValue(ItemsSourcePropertyNew);
      }

      set
      {
        if (value == null)
          ClearValue(ItemsSourcePropertyNew);
        else
          SetValue(ItemsSourcePropertyNew, value);
      }
    }
    /// <summary>
    /// 重寫初始化
    /// </summary>
    /// <param name="e"></param>
    protected override void OnInitialized(EventArgs e)
    {
      base.OnInitialized(e);
      this.IsEditable = true;
      this.IsTextSearchEnabled = false;
      this.ItemsSource = bindingList;
    }
    /// <summary>
    /// 下拉框獲取焦點,首次搜索文本編輯框
    /// </summary>
    /// <param name="e"></param>
    protected override void OnGotFocus(RoutedEventArgs e)
    {
      if (t)
        FindTextBox(this);
      else
        t = false;
    }
    /// <summary>
    /// 搜索編輯文本框,添加文本改變事件
    /// </summary>
    /// <param name="obj"></param>
    private void FindTextBox(DependencyObject obj)
    {
      for (int i = 0; i < VisualTreeHelper.GetChildrenCount(obj); i++)
      {
        DependencyObject child = VisualTreeHelper.GetChild(obj, i);
        if (child!=null && child is TextBox)
        {
          //注冊文本改變事件
          (child as TextBox).TextChanged += EditComboBox_TextChanged;
        }
        else
        {
          FindTextBox(child);
        }
      }
    }
    /// <summary>
    /// 文本改變,動態(tài)控制下拉條數(shù)據(jù)源
    /// </summary>
    /// <param name="sender"></param>
    /// <param name="e"></param>
    private void EditComboBox_TextChanged(object sender, TextChangedEventArgs e)
    {
      TextBox tb = sender as TextBox;
      if(tb.IsFocused)
      {
        this.IsDropDownOpen = true;
        if (editText == this.Text)
          return;
        editText = this.Text;
        SetList(editText);
      }
    }
    /// <summary>
    /// 組合框關(guān)閉,數(shù)據(jù)源恢復(fù)
    /// </summary>
    /// <param name="e"></param>
    protected override void OnDropDownClosed(EventArgs e)
    {
      base.OnDropDownClosed(e);
      if (MyItemsSource == null)
        return;
      foreach (var item in MyItemsSource)
      {
        if (!bindingList.Contains(item))
          bindingList.Add(item);
      }
    }
    /// <summary>
    /// 過濾符合條件的數(shù)據(jù)項,添加到數(shù)據(jù)源項中
    /// </summary>
    /// <param name="txt"></param>
    private void SetList(string txt)
    {
      try
      {
        string temp1 = "";
        string temp2 = "";
        if (MyItemsSource == null)
          return;
        foreach (var item in MyItemsSource)
        {
          temp1 = item.GetType().GetProperty(this.DisplayMemberPath).GetValue(item, null).ToString();
          if (string.IsNullOrEmpty(this.SelectedValuePath))
          {
            temp2 = "";
          }
          else
          {
            temp2 = item.GetType().GetProperty(this.SelectedValuePath).GetValue(item, null).ToString();
          }
          if(temp1.Contains(txt)||temp2.StartsWith(txt))
          {
            if (!bindingList.Contains(item))
              bindingList.Add(item);
          }
          else if (bindingList.Contains(item))
          {
            bindingList.Remove(item);
          }
        }
      }
      catch (Exception ex)
      {
        MessageBox.Show(ex.ToString());
      }
    }
  }

調(diào)用方法就是將數(shù)據(jù)源綁定到MyItemsSource上,剩下的就和原有的ComboBox用法一樣了。

復(fù)制代碼 代碼如下:
<local:EditComboBox MyItemsSource="{Binding ProList,Mode=TwoWay}" SelectedItem="{Binding Selpro,Mode=TwoWay}" SelectedValuePath="Id" DisplayMemberPath="Name"/>

效果演示

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

  • C# 命名空間(Namespace)相關(guān)知識總結(jié)

    C# 命名空間(Namespace)相關(guān)知識總結(jié)

    這篇文章主要介紹了C# 命名空間(Namespace)的相關(guān)知識,文中講解非常細(xì)致,代碼幫助大家更好的理解和學(xué)習(xí),感興趣的朋友可以參考下
    2020-06-06
  • C#目錄和文件管理操作詳解

    C#目錄和文件管理操作詳解

    在C#中常用的目錄操作類有Directory,DirectoryInfo,下面這篇文章主要給大家介紹了關(guān)于C#目錄和文件管理操作的相關(guān)資料,需要的朋友可以參考下
    2022-10-10
  • C#實現(xiàn)外排序的示例代碼

    C#實現(xiàn)外排序的示例代碼

    本文介紹了C#中的外排序技術(shù),以及如何使用C#實現(xiàn)外排序算法,通過使用排序算法,可以對大量數(shù)據(jù)進(jìn)行排序,并且可以有效地處理超大數(shù)據(jù)集,感興趣的可以了解下
    2023-11-11
  • C#?WPF后臺動態(tài)添加控件實戰(zhàn)教程

    C#?WPF后臺動態(tài)添加控件實戰(zhàn)教程

    最近嘗試用wpf在后臺動態(tài)添加控件,所以下面這篇文章主要給大家介紹了關(guān)于C#?WPF后臺動態(tài)添加控件的相關(guān)資料,文中通過實例代碼介紹的非常詳細(xì),需要的朋友可以參考下
    2022-05-05
  • C#圖像處理之霓虹效果實現(xiàn)方法

    C#圖像處理之霓虹效果實現(xiàn)方法

    這篇文章主要介紹了C#圖像處理之霓虹效果實現(xiàn)方法,可實現(xiàn)圖片轉(zhuǎn)換成霓虹效果的功能,需要的朋友可以參考下
    2015-04-04
  • C# 實現(xiàn)Scoket心跳機制的方法

    C# 實現(xiàn)Scoket心跳機制的方法

    這篇文章主要介紹了C# 實現(xiàn)Scoket心跳機制的方法,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧
    2020-02-02
  • 使用位運算實現(xiàn)網(wǎng)頁中的過濾、篩選功能實例

    使用位運算實現(xiàn)網(wǎng)頁中的過濾、篩選功能實例

    這篇文章主要介紹了使用位運算實現(xiàn)網(wǎng)頁中的過濾、篩選功能實例,一個比常規(guī)拼接SQL字符串更有新意的一個解決思路,需要的朋友可以參考下
    2014-07-07
  • C#使用GET、POST請求獲取結(jié)果

    C#使用GET、POST請求獲取結(jié)果

    這篇文章主要以一個簡單的用戶登陸為例,詳細(xì)介紹了C#使用GET、POST請求獲取結(jié)果,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2017-01-01
  • c#實現(xiàn)16進(jìn)制和字符串之間轉(zhuǎn)換的代碼

    c#實現(xiàn)16進(jìn)制和字符串之間轉(zhuǎn)換的代碼

    #中十六進(jìn)制字符串的轉(zhuǎn)換函數(shù)
    2007-05-05
  • C#實現(xiàn)事件總線的方法示例

    C#實現(xiàn)事件總線的方法示例

    事件總線是一種用于在應(yīng)用程序內(nèi)部或跨應(yīng)用程序組件之間進(jìn)行事件通信的機制,本文主要介紹了C#實現(xiàn)事件總線的方法示例,具有一定的參考價值,感興趣的可以了解一下
    2024-02-02

最新評論