Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Windows Presentation Foundation Development Cookbook

You're reading from   Windows Presentation Foundation Development Cookbook 100 recipes to build rich desktop client applications on Windows

Arrow left icon
Product type Paperback
Published in Feb 2018
Publisher Packt
ISBN-13 9781788399807
Length 524 pages
Edition 1st Edition
Arrow right icon
Author (1):
Arrow left icon
Kunal Chowdhury Kunal Chowdhury
Author Profile Icon Kunal Chowdhury
Kunal Chowdhury
Arrow right icon
View More author details
Toc

Table of Contents (13) Chapters Close

Preface 1. WPF Fundamentals 2. Using WPF Standard Controls FREE CHAPTER 3. Layouts and Panels 4. Working with Data Bindings 5. Using Custom Controls and User Controls 6. Using Styles, Templates, and Triggers 7. Using Resources and MVVM Patterns 8. Working with Animations 9. Using WCF Services 10. Debugging and Threading 11. Interoperability with Win32 and WinForm 12. Other Books You May Enjoy

Working with dependency properties

WPF provides a set of services which can be used to extend the CLR properties to provide additional benefits such as automatic UI notifications in the ecosystem. To implement the dependency property, the class must be inherited from the DependencyObject class.

A CLR property reads directly from the private member of the class, whereas a dependency property is stored in a dictionary of keys and values provided by the base class. As the dependency property stores the property only when it is changed, it uses a great deal less memory and is accessed faster.

To easily create a dependency property in a .cs file, use the propdp code snippet. In any class file which is inherited from DependencyObject, write propdp followed by TAB to generate the structure of it. Navigate using the TAB key and change the type, name, owner, and metadata details.

In this recipe, we will learn how to use a dependency property to automatically notify the UI that a change has been...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at ₹800/month. Cancel anytime