1

我有一个Entry类,我想通过它向 WPF 中的 Gridview 公开数据(通过List<Entry>)。我需要在 Gridview 中为Entry对象的每个属性设置一列(也为 的每个条目获取一列propsA3),但我不确定如何为数组定义 getter/setter 方法以便始终获取/设置属性的基础数据。

public Entry
{
  private ObjA oA;
  private ObjB[] listB;

  public int PropA1 {get {return oA.Prop1;} set {oA.Prop1 = value;}}
  public int PropA2 {get {return oA.Prop2;} set {oA.Prop1 = value;}}
  public int[] propsA3;
}

public ObjA
{
   public int Prop1 {get, set};
   public int Prop2 {get, set};

   public int getVal3(ObjB b) {return calSomethin(b);}
   public int setVal3(ref ObjB b, int val) { /*do something to ObjB*/}
}

public ObjB
{
   Byte[] data;
}

我想要的PropsA3具有以下获取/设置行为:

Entry e;

得到: int a = e.propsA3[i];=> a = oA.getVal3(listB[i]);

设置: e.propsA3[i] = 5; => oA.setVal3(listB[i], val);

这可能吗?如何实现这一点,或者我必须如何更改类设计才能获得预期的结果?

4

2 回答 2

1

这应该工作

pulbic Entry 
{
    public ObjA propsA3 { get; set; }
}

public ObjA
{
   public int Prop1 {get, set};
   public int Prop2 {get, set};

   public int this[ObjB b]
   {
      get { return getVal(b); }
      set { /* do something*/ }
   }

   private int getVal3(ObjB b) {return calSomethin(b);}
   private int setVal3(ref ObjB b, int val) { /*do something to ObjB*/}
}
于 2013-06-26T12:38:59.123 回答
1

这是可能的,但我不确定有什么好处,你可以使用包装类来做到这一点。例如:

public class Entry
{
    private ObjA oA;
    private ObjB[] listB;

    public int PropA1 {get {return {oA.Prop1}} set {oA.Prop1 = value;}}
    public int PropA2 {get {return {oA.Prop2}} set {oA.Prop1 = value;}}
    public EntryProperties propsA3;

    public Entry() 
    {
        propsA3 = new EntryProperties(this);
    }

    public class EntryProperties 
    {
        private Entry _entry;

        public EntryProperties(Entry entry) {
            _entry = entry;
        }

        public int this[int index] {
            get { return _entry.oA.getVal3(_entry.listB[index]); }
            set { _entry.oA.setVal3(_entry.listB[index], value); }
        }
    }
}

话虽如此,我真的认为这不是一个好主意 - 为什么不在网格中定义一个具有所需属性的视图模型类,然后手动设置这些属性,或者使用 AutoMapper 或 ValueInjector 之类的东西来这样做......

于 2013-06-26T12:36:42.360 回答