Как связать форму данных в XAML - PullRequest
0 голосов
/ 12 мая 2011
....
xmlns:viewmodel="clr-namespace:MyRecipe.ViewModels">

<navigation:Page.Resources>
    <viewmodel:RecipeViewModel x:Key="RecipeViewModel" />
</navigation:Page.Resources>

<toolkit:DataForm x:Name="form" 
        HorizontalAlignment="Left" VerticalAlignment="Top"
        ItemsSource="{Binding Recipes}" Width="500" Height="600" />

В viewmodel:

public EntitySet<Recipe> Recipes
{
    get { return _recipes; }
    set
    {
        if (_recipes != value)
        {
            _recipes = value;
            OnPropertyChanged("Recipes");
        }
    }
}

Я хочу связать форму данных с набором сущностей Recipes.Форма данных не показывает никаких полей или признаков того, что она связана.Что не так?

1 Ответ

0 голосов
/ 12 мая 2011

Исправлено:

<toolkit:DataForm x:Name="form" 
HorizontalAlignment="Left" VerticalAlignment="Top"
DataContext="{StaticResource RecipeViewModel}" 
ItemsSource="{Binding Recipes}" Width="500" Height="600" />

Пришлось добавить строку DataContext.

...