将模型从窗口绑定到UserControls

时间:2018-07-04 10:08:05

标签: c# wpf

我需要在双向模式下将"CommonViewModel"对象和后面的代码"MainWindow"及其子对象"UserControl1""UserControl2"绑定在一起

MainWindow.xaml

<Window x:Class="Testing.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:local="clr-namespace:Testing"
    mc:Ignorable="d"
    Title="MainWindow" Height="350" Width="525">
    <StackPanel>
        <local:UserControl1/>
        <local:UserControl2/>
    </StackPanel>
</Window>

MainWindow.xaml.cs

public partial class MainWindow : Window
{
    public CommonViewModel commonViewModel = new CommonViewModel();
    public MainWindow()
    {
        InitializeComponent();
        this.DataContext = commonViewModel;
    }
}

UserControl1.xaml

<UserControl x:Class="Testing.UserControl1"
         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
         xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
         mc:Ignorable="d" 
         d:DesignHeight="300" d:DesignWidth="300">
    <StackPanel >
        <TextBox Text="{Binding CommonProperity1,Mode=TwoWay}"/>
    </StackPanel>
</UserControl>

UserControl2.xaml

<UserControl x:Class="Testing.UserControl2"
         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
         xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
         mc:Ignorable="d" 
         d:DesignHeight="300" d:DesignWidth="300">
    <StackPanel>
        <TextBox Text="{Binding CommonProperity2,Mode=TwoWay}"/>
    </StackPanel>
</UserControl>

我的对象 CommonViewModel.cs

public class CommonViewModel : NotifyChangeClass
{
    private string _Localtextdata1;
    private string _Localtextdata2;

    public string CommonProperity1
    {
        get { return _Localtextdata1; }
        set
        {
            _Localtextdata1 = value;
            NotifyPropertyChange("CommonProperity1");
        }
    }
    public string CommonProperity2
    {
        get { return _Localtextdata2; }
        set
        {
            _Localtextdata2 = value;
            NotifyPropertyChange("CommonProperity2");
        }
    }
}

public class NotifyChangeClass : INotifyPropertyChanged
{
    public event PropertyChangedEventHandler PropertyChanged;

    protected void NotifyPropertyChange(string ProperityName)
    {
        if (PropertyChanged != null)
        {
            PropertyChanged(this, new PropertyChangedEventArgs(ProperityName));
        }
    }
}

1 个答案:

答案 0 :(得分:0)

抱歉,是的,它是正确的,错误是在框架内,代码没有错。

仍然感谢您的帮助。

相关问题