我试图实现一个UserControl的简单示例,该示例在TextBox中显示当前的DateTime,每秒更新四次。

我创建一个简单的用户控件:

<UserControl x:Class="UC.TestUC"
             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"
             xmlns:local="clr-namespace:UC"
             mc:Ignorable="d"
             d:DesignHeight="50" d:DesignWidth="100">
    <d:UserControl.DataContext>
        <local:TestUC_VM/>
    </d:UserControl.DataContext>
    <Grid Background="Azure">
        <TextBox Text="{Binding TestString}"/>
    </Grid>
</UserControl>

其ViewModel在哪里:
namespace UC
{
    public class TestUC_VM : INotifyPropertyChanged
    {
        private string _testString;
        public string TestString
        {
            get => _testString;
            set
            {
                if (value == _testString) return;
                _testString = value;
                OnPropertyChanged();
            }
        }

        public TestUC_VM()
        {
            TestString = "Test string.";
        }

        public event PropertyChangedEventHandler PropertyChanged;
        void OnPropertyChanged([CallerMemberName] string propertyName = null) => PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
    }
}

MainWindow XAML:
<Window x:Class="UC.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:UC"
        mc:Ignorable="d"
        Title="MainWindow" Height="100" Width="200">
    <Window.DataContext>
        <local:MainWindow_VM/>
    </Window.DataContext>
    <Window.Resources>
        <local:TestUC_VM x:Key="TestUC_VM"/>
    </Window.Resources>
    <Grid>
        <local:TestUC DataContext="{StaticResource TestUC_VM}"/>
    </Grid>
</Window>

及其ViewModel:
namespace UC
{
    public class MainWindow_VM
    {
        public TestUC_VM _uc_VM;

        public MainWindow_VM()
        {
            _uc_VM = new TestUC_VM();
            Task.Run(() => ChangeString());
        }

        public async Task ChangeString()
        {
            while (true)
            {
                _uc_VM.TestString = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff");
                await Task.Delay(250);
            }
        }
    }
}

即使我看到调试器正在传递TestString setter,MainWindow也不会更新。
我很确定在MainWindow中设置UC的DataContext时会遗漏一些琐碎的事情,但是经过数小时的浏览和思考,我还是找不到任何东西。

任何帮助表示赞赏。

最佳答案

表达方式

<local:TestUC DataContext="{StaticResource TestUC_VM}"/>

将TestUC_VM资源的值分配给UserControl的DataContext。这是与主 View 模型的_uc_VM成员不同的对象,您稍后将对其进行更新。

将成员(member)变成公共(public)属性(property)
public TestUC_VM UcVm { get; } = new TestUC_VM();

和写
<local:TestUC DataContext="{Binding UcVm}"/>

像这样更新 View 模型:
UcVm.TestString = ...

关于c# - WPF-MVVM-UserControl绑定(bind),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/55219357/

10-14 22:48