INotifyPropertyChangedが実装されているのにWPFビューが更新されない(.NET 5.0)[重複]

Jan 05 2021

私のビューには、ビューモデルの「Progress」プロパティにバインドするProgressBarがあります。ビューモデルはINotifyPropertyChangedを実装し、プロパティが変更されると、OnPropertyChanged()が呼び出されます。

バインディングは機能しますが、ビューがProgressBarコントロールの進行状況を更新することはめったにありません。ウィンドウをマウスでドラッグしているときにのみ定期的に更新されます。

MainWindow.xaml

<Window
    x:Class="WpfTest.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:local="clr-namespace:WpfTest"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    Title="MainWindow"
    Width="500"
    Height="500"
    WindowStartupLocation="CenterScreen"
    mc:Ignorable="d">
    <Grid>
        <ProgressBar Value="{Binding Progress}"/>
    </Grid>
</Window>

MainWindow.xaml.cs

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

MainWindowViewModel.cs

class MainWindowViewModel : INotifyPropertyChanged
{
    private readonly Timer updateProgressBarTimer;
    private int progress;

    public int Progress
    {
        get => progress;
        set
        {
            this.progress = value;
            OnPropertyChanged();
        }
    }

    public MainWindowViewModel()
    {
        updateProgressBarTimer = new Timer(OnUpdateProgressBarTimerTick, null, 0, 50);
    }

    private void OnUpdateProgressBarTimerTick(object state)
    {
        this.Progress += 2;
        if (this.Progress > 100)
            this.Progress -= 100;
    }

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

私はINotifyPropertyChangedを頻繁に使用しており、通常は問題が発生することはありませんが、ここでは問題を確認できません。

この問題を修正する方法について何か提案はありますか?

回答

2 soaringmatty Jan 05 2021 at 21:26

を(with )に置き換えるSystem.Threading.Timerと、問題が解決しました。DispatcherTimerDispatcherPriority.Normal

あなたの提案をありがとう