5

我是 MVVM 和 WPF 的新手,但我知道 MVVM 中发生了什么。我在主窗口中的用户控件之间切换时遇到问题。在我的应用程序中,我有:带有日志和 2 个链接的 MainWindow.xaml:全部显示并新建。当然,我有它的 ViewModel。我还有 2 个 UserControls:ShowAll 和 Create with ViewModels 以及其中的所有逻辑(添加数据等)。当我单击链接创建新或单击 ShowAll 时显示全部时,如何显示创建表单?

在 windowForms 我只是隐藏 UC,但这里没有代码:)

我的 MainWindow.xaml:

<Window x:Class="Test.Views.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="MainWindow" Height="300" Width="300">
    <Grid>
        <StackPanel>
            <TextBox Text="{Binding Name}"/>
            <Button Content="Change" Command="{Binding ChangeCommand}"/>
        </StackPanel>
    </Grid>
</Window>

我的 MainWindowViewModel:

class MainWindowViewModel : BaseViewModel
{
    private Person _person;
    private BaseCommand _changeCommand;

    public MainWindowViewModel()
    {
        _person = new Person();
    }

    public string Name
    {
        get
        {
            return _person.Name;
        }
        set
        {
            if (_person.Name != value)
                _person.Name = value;
            OnPropertyChanged(() => Name);
        }
    }

    public ICommand ChangeCommand
    {
        get
        {
            if (_changeCommand == null)
                _changeCommand = new BaseCommand(() => change());
            return _changeCommand;
        }
    }

    private void change()
    {
        _person = new Person();
        Name = _person.Imie;
    }
}

在 Create 和 ShowAll 中没有代码。在 xaml 中只有一个标签,VM 是空的。只是为了测试。

感谢帮助!

4

1 回答 1

10

您可以使用 a根据绑定到的 ViewModel 的类型ContentControl显示特定的。DataTemplateContentControl

http://www.japf.fr/2009/03/thinking-with-mvvm-data-templates-contentcontrol/

绑定到 ShowAll 按钮的命令可以简单地更改绑定到内容控件的主 ViewModel 上的属性。

于 2013-10-21T20:20:03.403 回答