4

私はしばらくの間解決に向けて取り組んできました、そして少しの助けを使うことができました。私は以前にこの例を見たことがあることを知っていますが、今夜私は必要なものに近いものを見つけることができません。

キャッシュまたはDomainServiceのいずれかからすべてのDropDownListを提供するサービスがあります。これらはIEnumerableとして表示され、GetLookup(LookupId)を使用してリポジトリから要求されます。

MetaDataClassを次のように装飾したカスタム属性を作成しました。

[Lookup(Lookup.Products)]
public Guid ProductId

AutoGenerateFieldsに設定されたカスタムデータフォームを作成し、自動生成フィールドをインターセプトしています。

CustomAttributeをチェックしていますが、機能します。

CustomDataFormのこのコード(簡潔にするために標準のコメントは削除されています)を考えると、フィールド生成をオーバーライドして、その場所にバインドされたコンボボックスを配置する次のステップは何ですか?

public class CustomDataForm : DataForm
{
    private Dictionary<string, DataField> fields = new Dictionary<string, DataField>();

    public Dictionary<string, DataField> Fields
    {
        get { return this.fields; }
    }

    protected override void OnAutoGeneratingField(DataFormAutoGeneratingFieldEventArgs e)
    {
        PropertyInfo propertyInfo = this.CurrentItem.GetType().GetProperty(e.PropertyName);

        foreach (Attribute attribute in propertyInfo.GetCustomAttributes(true))
        {
            LookupFieldAttribute lookupFieldAttribute = attribute as LookupFieldAttribute;
            if (lookupFieldAttribute != null)
            {                    
                //   Create a combo box.
                //   Bind it to my Lookup IEnumerable
                //   Set the selected item to my Field's Value
                //   Set the binding two way
            }
        }
        this.fields[e.PropertyName] = e.Field;
        base.OnAutoGeneratingField(e);
    }
}

SL4/VS2010の引用された実例をいただければ幸いです。

ありがとう

更新-ここに私がいます。コンボを取得しましたが、itemsSourceがない場合でも、常に空です。

if (lookupFieldAttribute != null)
{
    ComboBox comboBox = new ComboBox();
    Binding newBinding = e.Field.Content.GetBindingExpression(TextBox.TextProperty).ParentBinding.CreateCopy();
    newBinding.Mode = BindingMode.TwoWay;
    newBinding.Converter = new LookupConverter(lookupRepository);
    newBinding.ConverterParameter = lookupFieldAttribute.Lookup.ToString();
    comboBox.SetBinding(ComboBox.SelectedItemProperty,newBinding);
    comboBox.ItemsSource = lookupRepository.GetLookup(lookupFieldAttribute.Lookup);                    
    e.Field.Content = comboBox;                    
}
4

1 に答える 1

4

私は解決策を見つけました。

if (lookupFieldAttribute != null)
{
    ComboBox comboBox = new ComboBox();
    Binding newBinding = e.Field.Content.GetBindingExpression(TextBox.TextProperty).ParentBinding.CreateCopy();
    var itemsSource = lookupRepository.GetLookup(lookupFieldAttribute.Lookup);
    var itemsSourceBinding = new Binding { Source = itemsSource };
    comboBox.SetBinding(ItemsControl.ItemsSourceProperty, itemsSourceBinding);
    newBinding.Mode = BindingMode.TwoWay;
    newBinding.Converter = new LookupConverter(lookupRepository);
    newBinding.ConverterParameter = lookupFieldAttribute.Lookup.ToString();
    comboBox.SetBinding(ComboBox.SelectedItemProperty,newBinding);
    e.Field.Content = comboBox;                    
}
于 2010-05-05T11:28:16.313 に答える