0

我正在尝试开发自定义用户控件。在我的用户控件中,我使用两个控件一个列表框和一个文本框。文本框用于过滤列表框中的项目。为此,我的过滤方法遇到了问题。在我的过滤器方法中,我需要将对象转换为 ItemSource 类型。但我不明白我该如何投射它。这是我尝试的代码:

    public static readonly DependencyProperty ItemSourceProperty = DependencyProperty.Register("ItemSourrce", typeof(IEnumerable), typeof(SSSearchListBox), new PropertyMetadata(new PropertyChangedCallback(OnItemsSourcePropertyChanged)));

    private static void OnItemsSourcePropertyChanged(DependencyObject sender, DependencyPropertyChangedEventArgs e)
    {
        var control = sender as SSSearchListBox;
        if (control != null)
            control.OnItemsSourceChanged((IEnumerable)e.OldValue, (IEnumerable)e.NewValue);

    }

    private void OnItemsSourceChanged(IEnumerable oldValue, IEnumerable newValue)
    {
        // Remove handler for oldValue.CollectionChanged 
        var oldValueINotifyCollectionChanged = newValue as INotifyCollectionChanged;

        if (null != oldValueINotifyCollectionChanged)
        {
            oldValueINotifyCollectionChanged.CollectionChanged -= new NotifyCollectionChangedEventHandler(newValueINotifyCollectionChanged_CollectionChanged);
        }
        // Add handler for newValue.CollectionChanged (if possible) 
        var newValueINotifyCollectionChanged = newValue as INotifyCollectionChanged;
        if (null != newValueINotifyCollectionChanged)
        {
            newValueINotifyCollectionChanged.CollectionChanged += new NotifyCollectionChangedEventHandler(newValueINotifyCollectionChanged_CollectionChanged);
        }
    }

    void newValueINotifyCollectionChanged_CollectionChanged(object sender, NotifyCollectionChangedEventArgs e)
    {
        //Do your stuff here. 

    } 

    public IEnumerable ItemSourrce
    {
        get { return (IEnumerable)this.GetValue(ItemSourceProperty); }
        set { this.SetValue(ItemSourceProperty, value); }
    }
public void TextFiltering(ICollectionView filteredview, DevExpress.Xpf.Editors.TextEdit textBox)
    {
        string filterText = "";
        filteredview.Filter = delegate(object obj)
        {

            if (String.IsNullOrEmpty(filterText))
            {
                return true;
            }
            string str = obj as string; // Problem is here.
                                        // I need to cast obj to my ItemSourrce Data Type.
            if (String.IsNullOrEmpty(obj.ToString()))
            {
                return true;
            }

            int index = str.IndexOf(filterText, 0, StringComparison.InvariantCultureIgnoreCase);
            return index > -1;
        };
        textBox.EditValueChanging += delegate
        {
            filterText = textBox.Text;
            filteredview.Refresh();
        };
    }

    private void textEdit1_GotFocus(object sender, RoutedEventArgs e)
    {

        ICollectionView view = CollectionViewSource.GetDefaultView(ItemSourrce);
        TextFiltering(view, textEdit1);
    }

调用此使用控制:

   List<testClass> myList = new List<testClass>();
    public void testMethod()
    {
        for (int i = 0; i < 20; i++)
        {
            myList.Add(new testClass { testData=i.ToString()});
        } 
        myTestControl.ItemSourrce = myList;
    }

    public class testClass
    {
      public string testData { get; set; }
    }

谢谢

4

2 回答 2

0

好吧,您想要分配给 ItemSource(或 ItemsSource 以保持命名一致性)的所有内容都必须实现 IEnumerable 接口。这意味着基本上所有你可以通过 foreach 迭代的东西(简单地说)。所以每一个List、array、collection、Dictionaries等等。

Normaly 你不能迭代一个普通的开箱即用的字符串!

因此,如果您的对象确实是一个字符串(在调试时使用断点检查它),您必须以某种方式拆分它。

ps:顺便说一下这段代码

if (String.IsNullOrEmpty(obj.ToString()))
{
   return true;
}

从不(除了一些罕见的无意义的示例,其中您为 ToStirng() 显式返回空字符串)返回 true,因为 obj.ToString() 永远不会为 null 或 Empty。在 Object 类型(每个 .net 类型都基于)的标准实现中,它返回命名空间和类型的名称。

于 2012-04-29T05:31:17.150 回答
0

如果我理解得很好,您的对象是 typetestClass而不是string.

所以你的代码应该是你尝试进行强制转换的地方。

string str = string.Empty;

testClass myObject = obj as testClass;

if (myObject == null)
    return true;
else
    str = myObject.testData;

if (string.IsNullOrEmpty(str))
    return true;

return str.IndexOf(filterText, 0, StringComparison.InvariantCultureIgnoreCase) > -1;
于 2012-04-29T05:53:29.253 回答