- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
在 WPF 中创建 ViewModel 时,有时需要转换 ObservableCollection
中可用的数据(源集合)转换为扩展/限制/转换原始元素(目标集合)的包装元素集合,而元素的数量和顺序始终反射(reflect)原始集合。
就像Select扩展方法,但它会不断更新,因此可用于 WPF 绑定(bind)。
如果一个元素被添加到索引 x 处的源中,则相同元素的 Wrapper 被添加到目标集合中的相同索引 x 处。如果索引 y 的元素在源集合中被删除,则索引 y 的元素在目标集合中被删除。
假设有一个 ObservableCollection<ClassA>
,但我需要绑定(bind)的是 ReadOnlyObservableCollection<ClassB>
(或等效的),其中 ClassB
-> ClassA
如下:
class ClassB : INotifyPropertyChanged, IDisposable
{
public ClassB(ClassA a)
{
Wrapped = a;
(Wrapped as INotifyPropertyChanged).PropertyChanged+=WrappedChanged;
}
public ClassA Wrapped { get; private set; }
public int SomeOtherProperty { get { return SomeFunction(Wrapped); }
WrappedChanged(object s, NotifyPropertyChangedArgs a) { ... }
...
}
我可以自己写TemplatedTransformCollectionWrapper
,我可以在哪里写这个:
ObservableCollection<ClassA> source;
TemplatedTransformCollectionWrapper theCollectionThatWillBeUsedInABinding
= TemplatedTransformCollectionWrapper(source, classA => new ClassB(classA));
TemplatedTransformCollectionWrapper 理想地包装所有实现 INotifyCollectionChanged
的集合并正确处理所有可能的添加、删除、替换原始、包装、集合的操作。
写TemplatedTransformCollectionWrapper
并不简单正确,这似乎是其他人已经做过的事情,甚至可能是核心框架的一部分。但是我找不到它。
最佳答案
我将在此处发布我的解决方法 - 这是一个自定义类。仍然希望得到更好的答案。
using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Collections.Specialized;
using System.Linq;
namespace ViewLayer
{
public class TransformObservableCollection<T,Source> : INotifyCollectionChanged, IList, IReadOnlyList<T>, IDisposable
{
public TransformObservableCollection(ObservableCollection<Source> wrappedCollection, Func<Source,T> transform)
{
m_WrappedCollection = wrappedCollection;
m_TransformFunc = transform;
((INotifyCollectionChanged)m_WrappedCollection).CollectionChanged += TransformObservableCollection_CollectionChanged;
m_TransformedCollection = new ObservableCollection<T>(m_WrappedCollection.Select(m_TransformFunc));
}
public void Dispose()
{
if (m_WrappedCollection == null) return;
((INotifyCollectionChanged)m_WrappedCollection).CollectionChanged -= TransformObservableCollection_CollectionChanged;
m_WrappedCollection = null;
}
void TransformObservableCollection_CollectionChanged(object sender, NotifyCollectionChangedEventArgs e)
{
switch (e.Action)
{
case NotifyCollectionChangedAction.Add:
if (e.NewItems == null || e.NewItems.Count != 1)
break;
m_TransformedCollection.Insert(e.NewStartingIndex,m_TransformFunc((Source)e.NewItems[0]));
return;
case NotifyCollectionChangedAction.Move:
if (e.NewItems == null || e.NewItems.Count != 1 || e.OldItems == null || e.OldItems.Count != 1)
break;
m_TransformedCollection.Move(e.OldStartingIndex, e.NewStartingIndex);
return;
case NotifyCollectionChangedAction.Remove:
if (e.OldItems == null || e.OldItems.Count != 1)
break;
m_TransformedCollection.RemoveAt(e.OldStartingIndex);
return;
case NotifyCollectionChangedAction.Replace:
if (e.NewItems == null || e.NewItems.Count != 1 || e.OldItems == null || e.OldItems.Count != 1 || e.OldStartingIndex != e.NewStartingIndex)
break;
m_TransformedCollection[e.OldStartingIndex] = m_TransformFunc((Source)e.NewItems[0]);
return;
} // This is most likely called on a Clear(), we don't optimize the other cases (yet)
m_TransformedCollection.Clear();
foreach (var item in m_WrappedCollection)
m_TransformedCollection.Add(m_TransformFunc(item));
}
#region IList Edit functions that are unsupported because this collection is read only
public int Add(object value) { throw new InvalidOperationException(); }
public void Clear() { throw new InvalidOperationException(); }
public void Insert(int index, object value) { throw new InvalidOperationException(); }
public void Remove(object value) { throw new InvalidOperationException(); }
public void RemoveAt(int index) { throw new InvalidOperationException(); }
#endregion IList Edit functions that are unsupported because this collection is read only
#region Accessors
public T this[int index] { get { return m_TransformedCollection[index]; } }
object IList.this[int index] { get { return m_TransformedCollection[index]; } set { throw new InvalidOperationException(); } }
public bool Contains(T value) { return m_TransformedCollection.Contains(value); }
bool IList.Contains(object value) { return ((IList)m_TransformedCollection).Contains(value); }
public int IndexOf(T value) { return m_TransformedCollection.IndexOf(value); }
int IList.IndexOf(object value) { return ((IList)m_TransformedCollection).IndexOf(value); }
public int Count { get { return m_TransformedCollection.Count; } }
public IEnumerator<T> GetEnumerator() { return m_TransformedCollection.GetEnumerator(); }
IEnumerator IEnumerable.GetEnumerator() { return ((IEnumerable)m_TransformedCollection).GetEnumerator(); }
#endregion Accessors
public bool IsFixedSize { get { return false; } }
public bool IsReadOnly { get { return true; } }
public void CopyTo(Array array, int index) { ((IList)m_TransformedCollection).CopyTo(array, index); }
public void CopyTo(T[] array, int index) { m_TransformedCollection.CopyTo(array, index); }
public bool IsSynchronized { get { return false; } }
public object SyncRoot { get { return m_TransformedCollection; } }
ObservableCollection<T> m_TransformedCollection;
ObservableCollection<Source> m_WrappedCollection;
Func<Source, T> m_TransformFunc;
event NotifyCollectionChangedEventHandler INotifyCollectionChanged.CollectionChanged
{
add { ((INotifyCollectionChanged)m_TransformedCollection).CollectionChanged += value; }
remove { ((INotifyCollectionChanged)m_TransformedCollection).CollectionChanged -= value; }
}
}
}
关于c# - ObservableCollection 逐元素变换/投影包装器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13920703/
正在尝试创建一个 python 包。似乎有效,但我收到警告。我的 setup.py 是: #! /usr/bin/env python from distutils.core import setup
我导入了一个数据类型 X ,定义为 data X a = X a 在本地,我定义了一个通用量化的数据类型,Y type Y = forall a. X a 现在我需要定义两个函数, toY 和 fro
我似乎无法让编译器让我包装 Tokio AsyncRead: use std::io::Result; use core::pin::Pin; use core::task::{Context, Po
我有两个函数“a”和“b”。当用户上传文件时,“b”被调用。 “b”重命名文件并返回新文件名。之后应该编辑该文件。像这样: def a(): edits file def b(): r
我使用 Entity Framework 作为我的 ORM,我的每个类都实现了一个接口(interface),该接口(interface)基本上表示表结构(每个字段一个只读属性)。这些接口(inter
有没有办法打开一个程序,通常会打开一个新的jframe,进入一个现有的jframe? 这里是解释,我下载了一个java游戏,其中一个是反射游戏,它在一个jframe中打开,框架内有一堆子面板,我想要做
我想要下面的布局 | AA BBBBBBB | 除非没有足够的空间,在这种情况下 | AA | | BBBBBBB | 在这种情况下,A 是复选框,B 是复选框旁边的 Text
我正在尝试以不同的方式包装我的网站,以便将背景分为 2 部分。灰色部分是主要背景,还有白色部分,它较小并包装主要内容。 基本上我想要this看起来像this . 我不太确定如何添加图像来创建阴影效果,
我正在使用 : 读取整数文件 int len = (int)(new File(file).length()); FileInputStream fis = new FileInputStream(f
我使用 maven 和 OpenJDK 1.8 打包了一个 JavaFX 应用程序我的 pom.xml 中的相关部分: maven-assembly-plugin
我正在使用两个不同的 ItemsControl 来生成一个按钮列表。
我有一个情况,有一个变量会很方便,to , 可以是 TimerOutput或 nothing .我有兴趣提供一个采用与 @timeit 相同参数的宏来自 TimerOutputs(例如 @timeit
我正在尝试包装一个名为 content 的 div与另一个具有不同背景的 div。 但是,当将“margin-top”与 content 一起使用时div,似乎包装 DIV 获得了边距顶部而不是 co
文档不清楚,它似乎允许包装 dll 和 csproj 以在 Asp.Net Core 5 应用程序中使用。它是否允许您在 .Net Core 5 网站中使用针对 .Net Framework 4.6
我被要求开发一个层,该层将充当通用总线,而不直接引用 NServiceBus。到目前为止,由于支持不引人注目的消息,这并不太难。除了现在,我被要求为 IHandleMessages 提供我们自己的定义
我正在尝试包装 getServersideProps使用身份验证处理程序函数,但不断收到此错误:TypeError: getServerSideProps is not a function我的包装看
我有一个项目,它在特定位置(不是/src/resources)包含资源(模板文件)。我希望在运行 package-bin 时将这些资源打包。 我看到了 package-options 和 packag
我正在寻找打印从一系列对象中绘制的 div。我可以通过使用下面的管道语法来实现这一点。 each i, key in faq if (key == 0) |
我在 Meteor.js“main.js - Server”中有这个方法。 Meteor.methods({ messageSent: function (message) { var a
我注意到,如果我的自定义Polymer 1.x元素的宽度比纸张输入元素上的验证错误消息的宽度窄,那么错误将超出自定义元素的右边界。参见下图: 有没有一种机制可以防止溢出,例如在到达自定义元素的边界时自
我是一名优秀的程序员,十分优秀!