`

wpf - use of DependencyObject to implement data model

    博客分类:
  • WPF
wpf 
阅读更多

The most common practise to implement the DataModel is by declaring the class to implements the INotifyPropertyChanged interface. 

 

However, it is one of the many ways that you can implement data model, an alternative way is to use DependencyObject. 

 

The rationale behind DependencyObject as the base class to implement data model is that it 

 

  1. It has SetValue and GetValue to operate on those DependencyProperty
  2. It has the OnPropertyChanged(DependencyPropertyChangedEventArgs) to notify an update is on going. 

 

 

We can define our Data Model as follow.

 

    public string Message
    {
      get { return (string)GetValue(MessageProperty); }
      set {
        SetAndRaiseProeprtyChanged(MessageProperty, value);
        //SetValue(MessageProperty, value); 
      }
    }

    // Using a DependencyProperty as the backing store for Message.  This enables animation, styling, binding, etc...
    public static readonly DependencyProperty MessageProperty =
        DependencyProperty.Register("Message", typeof(string), typeof(DataModel), new UIPropertyMetadata(string.Empty));


    private void SetAndRaiseProeprtyChanged(DependencyProperty dp, object newValue)
    {
      var oldvalue = GetValue(dp);
      SetValue(dp, newValue);
      OnPropertyChanged(new DependencyPropertyChangedEventArgs(dp, oldValue: oldvalue, newValue: newValue));
    }

  }
 

and suppose that there is a view which consumes the data model, here is the view (window)

 

<Window x:Class="DependencyObjectDemo1.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="MainWindow" Height="350" Width="525">
    <StackPanel>
        <TextBlock Name="textBlock" Text="{Binding Message}" />
        <Button Click="ChangeDataModel" Content="Click me to change DataModel"/>
    </StackPanel>
</Window>
 

and here is the code that connect the data model and the view. 

 

  public partial class MainWindow : Window
  {
    public MainWindow()
    {
      InitializeComponent();

      InitializeDataModel();
    }

    public void InitializeDataModel()
    {
      var dataModel = new DataModel
      {
        Message = "Hello world"
      };

      this.DataContext = dataModel;
    }

    private void ChangeDataModel(object sender, RoutedEventArgs e)
    {
      var dataModel = this.DataContext as DataModel;
      if (dataModel != null)
      {
        dataModel.Message = "New Message";
      }
    }
  }
 

 

 

CAVEAT: it has been discussed on some other thread about the performance/memory hit by introducing the DependencyObject as the base class of Data model . Generally it is believed that the performance of DependencyObject over INotifyPropertyChanged (which is lightweighted) is that DependencyObject 's impl is slightly slower.

 

 

 

TODO:study and research the performance  statistics to prove the performance advantage.

分享到:
评论

相关推荐

    gong-wpf-dragdrop, GongSolutions.WPF.DragDrop 库是WPF的拖动'n'拖放框架.zip

    gong-wpf-dragdrop, GongSolutions.WPF.DragDrop 库是WPF的拖动'n'拖放框架 简介GongSolutions.WPF.DragDrop 库是一个易于使用的拖拉'n'拖放框架。特性使用 MVVM: 拖放逻辑可以放在ViewModel中。 代码不需要放在in中...

    wpf-mvvm-DeskTop-Sample-master_C#_WPF_wpf客户端zfs_

    标题中的“wpf-mvvm-DeskTop-Sample-master”表明这是一个关于WPF(Windows Presentation Foundation)桌面应用程序的示例项目,使用了MVVM(Model-View-ViewModel)设计模式。这个项目是用C#编程语言编写的,面向的...

    WPF-Blockly-master.zip

    **WPF-Blockly** 是一个基于Windows Presentation Foundation (WPF) 的图形化编程工具,它为用户提供了构建和设计程序的直观界面。WPF作为Microsoft .NET Framework的一部分,主要用于构建桌面应用程序,它提供了...

    WPF-ScreenData.zip

    超酷WPF数据可视化,全套源程序,非常适合做数据可视化的程序员使用,WPF,XAML。 找了好久的资源,附有很多很详细的插图,是大数据时代不可缺少的可视化学习数据,仅供大家学习使用请勿用做商业用途。与大家一起...

    WPF-ControlBase-master.zip

    在这个名为"WPF-ControlBase-master.zip"的压缩包中,我们可以推测它包含了一个基于WPF的控制库项目,可能是一个开源或者个人开发的项目,用于提供自定义的WPF控件。这些控件可能是对标准WPF控件的扩展或增强,也...

    C#开发WPF-Silverlight动画及游戏系列教程-深蓝色右手 4

    C#开发WPF-Silverlight动画及游戏系列教程-深蓝色右手 C#开发WPF-Silverlight动画及游戏系列教程-深蓝色右手 C#开发WPF-Silverlight动画及游戏系列教程-深蓝色右手

    WPF-Samples-master_WPF基本sample_

    WPF的基本空间历程,使用.net core3.0.1版本

    WPF-Diagram-Designer:WPF图表设计器源代码

    通过深入研究WPF-Diagram-Designer的源代码(如WPF-Diagram-Designer-master文件夹中的内容),开发者不仅可以学习到如何在WPF中构建复杂的图形界面,还可以了解到图形编辑器的设计原理和实现细节,对于提升图形应用...

    Wpf-glTF-testing.zip

    在“Wpf-glTF-testing.zip”压缩包中,我们有一个基于WPF(Windows Presentation Foundation)的简化glTF文件查看器项目。 WPF是.NET Framework的一部分,是一个用于构建Windows桌面应用程序的框架。它提供了丰富的...

    wpf-datagrid-access DB

    在这个“wpf-datagrid-access DB”主题中,我们将深入探讨如何利用WPF Datagrid与Microsoft Access数据库进行交互,实现数据的读取、更新和保存。 1. **WPF Datagrid简介** - Datagrid是WPF中的一个数据展示控件,...

    wpf---StatusBar

    “wpf---StatusBar”这个标题表明我们将探讨的是WPF(Windows Presentation Foundation)框架中的StatusBar组件。WPF是.NET Framework的一部分,用于构建桌面应用程序,它提供了丰富的用户界面(UI)功能。StatusBar...

    WPF-强大的图表.zip

    **WPF - 强大的图表技术** Windows Presentation Foundation (WPF) 是Microsoft开发的一个用于构建桌面应用程序的框架,它提供了丰富的图形系统,包括对2D和3D图形的强大支持。在WPF中,开发人员可以利用各种图表...

    WPF-ScreenData:WPF制作的可视化大屏显示示例

    **WPF-ScreenData项目详解** **一、WPF简介** WPF(Windows Presentation Foundation)是微软.NET Framework的一部分,主要用于构建Windows桌面应用程序。它提供了一种全新的用户界面开发模型,结合了丰富的图形、...

    WPF-快速添加新手引导功能(支持MVVM).doc

    WPF 快速添加新手引导功能(支持 MVVM) 本文将介绍如何快速添加新手引导功能到 WPF 项目中,采用 MVVM 模式,并使用开源项目 AIStudio.Wpf.Controls 的修改版本 9WPFControls 实现新手引导功能。下面将详细介绍...

    practical-wpf-charts-graphics-master.rar

    该资源"practical-wpf-charts-graphics-master.rar"包含了这本书的源代码,为读者提供了丰富的实践案例和深入理解WPF图表及图形编程的宝贵材料。 WPF(Windows Presentation Foundation)是.NET Framework的一部分...

    WPF-MVVM计算器

    **WPF-MVVM计算器详解** Windows Presentation Foundation (WPF) 是Microsoft开发的一种用户界面框架,用于构建桌面应用程序。在WPF中,Model-View-ViewModel(MVVM)设计模式是一种广泛采用的架构模式,它将业务...

    WPF-MvvmLight

    **WPF-MvvmLight** 是一个面向初学者的教程资源,旨在帮助他们理解并实践如何在Windows Presentation Foundation(WPF)应用中使用MvvmLight框架。MvvmLight,全称Model-View-ViewModel Light,是由GalaSoft开发的一...

    C#开发WPF-Silverlight动画及游戏系列教程-深蓝色右手1

    C#开发WPF-Silverlight动画及游戏系列教程-深蓝色右手 C#开发WPF-Silverlight动画及游戏系列教程-深蓝色右手 C#开发WPF-Silverlight动画及游戏系列教程-深蓝色右手

    c#-的WPF---MVVM例子

    在“c#-的WPF---MVVM例子”中,我们可能会看到以下关键概念: 1. **数据绑定**:WPF的强项之一就是其强大的数据绑定功能。通过数据绑定,View中的UI元素可以直接与ViewModel中的属性关联,当ViewModel中的数据改变...

    WPF-MVVM-简单示例

    **WPF-MVVM-简单示例** 在本文中,我们将深入探讨如何使用MVVM(Model-View-ViewModel)设计模式来构建一个基于WPF(Windows Presentation Foundation)的应用程序。这个示例着重于通过操作XML数据来实现基本的CRUD...

Global site tag (gtag.js) - Google Analytics