MVVM WPF中的数据绑定

3

我在MVVM模式方面的知识很少。我的问题是数据没有绑定到XAML控件上,也没有错误提示。进度条仍然停留在0。

HomepageViewModel

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.ComponentModel;
using CSMS_MVVM.Models;

namespace CSMS_MVVM.ViewModels
{
    class HomepageViewModel : INotifyPropertyChanged
    {
        BackgroundWorker _worker;
        public int _progress=20;
        public int Progress
        {
            get { return _progress; }
            set {
                _progress = value;
                OnPropertyChanged(new PropertyChangedEventArgs("Progress"));
            }
        }
        public void startBackgroundProcess()
        {
            _worker = new BackgroundWorker();
            _worker.DoWork += new DoWorkEventHandler(worker_DoWork);
            _worker.ProgressChanged += worker_Progress_Changed;
            _worker.RunWorkerAsync();
        }

        private void worker_Progress_Changed(object sender, ProgressChangedEventArgs e)
        {
            Progress = e.ProgressPercentage;
        }

        private void worker_DoWork(object sender, DoWorkEventArgs e)
        {
            Progress = 20;
        }

        #region INotifyPropertyChanged Members

        public event PropertyChangedEventHandler PropertyChanged;
        public void OnPropertyChanged(PropertyChangedEventArgs e)
        {
            if (PropertyChanged != null)
                PropertyChanged(this, e);
        }

        #endregion
    }
}

Homepage.xaml.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Timers;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using CSMS_MVVM.ViewModels;

namespace CSMS_MVVM.Views
{
    /// <summary>
    /// Interaction logic for Homepage.xaml
    /// </summary>
    public partial class Homepage : Page
    {
        HomepageViewModel hvm;
        public Homepage()
        {
            InitializeComponent();
        }

        private void Page_Loaded_1(object sender, RoutedEventArgs e)
        {
            hvm = new HomepageViewModel();
            hvm.startBackgroundProcess();
        }
    }
}

Homepage.xaml

<Page x:Class="CSMS_MVVM.Views.Homepage"
      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:CSMS_MVVM.ViewModels"
      mc:Ignorable="d" 
      d:DesignHeight="700" d:DesignWidth="1000"
    Title="Homepage" Loaded="Page_Loaded_1" Name="main">
<ProgressBar Name="pbStatus" Value="{Binding Path=Progress}" HorizontalAlignment="Center" Height="20" Margin="0,582,0,0" VerticalAlignment="Top" Width="300">
-----
            <ProgressBar.Effect>
                <DropShadowEffect Color="#FFB6B6B6" ShadowDepth="3" BlurRadius="15" Direction="310"/>
            </ProgressBar.Effect>
        </ProgressBar>
        <TextBlock Text="{Binding Progress}" Margin="0,582,0,0" HorizontalAlignment="Center" VerticalAlignment="Top" />
        <Label Content="Loading ..." HorizontalAlignment="Center" Margin="0,607,0,0" VerticalAlignment="Top"/>
------
</Page>

我是否在正确编码?我在互联网上搜索了一个例子,但是我没有理解它们。

谢谢!

3个回答

7

如果没有其他指定,所有设置的绑定都将绑定到DataContext

private void Page_Loaded_1(object sender, RoutedEventArgs e)
{
    hvm = new HomepageViewModel();
    hvm.startBackgroundProcess();

    this.DataContext = hvm;
}

一旦将数据上下文设置为您的视图模型实例,它应该就可以工作了。


非常感谢,完全忘记了“DataContext”。 - harikrishnan.n0077

2

您可以在代码后台设置页面的DataContext。

另一种选项是将ViewModel创建为XAML资源,并通过数据绑定设置子元素的数据上下文:

<Page x:Class="CSMS_MVVM.Views.Homepage"
  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:CSMS_MVVM.ViewModels"
  mc:Ignorable="d" 
  d:DesignHeight="700" d:DesignWidth="1000"
Title="Homepage" Loaded="Page_Loaded_1" Name="main">
  <Page.Resources>
        <!-- This creates the instance of the HomepageViewModel -->
        <local:HomepageViewModel x:Key="HomepageViewModel" />
  </Page.Resources>
  <ProgressBar DataContext="{StaticResource HomepageViewModel}" 
        Value="{Binding Path=Progress}">

0
public Homepage()       
{        
   InitializeComponent();      
   hvm = new HomepageViewModel();
   this.DataContext=hvm;      
}

在构造函数内创建视图模型对象。


网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接