Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Mastering Visual Studio 2017

You're reading from   Mastering Visual Studio 2017 Build windows apps using WPF and UWP, accelerate cloud development with Azure, explore NuGet, and more

Arrow left icon
Product type Paperback
Published in Jul 2017
Publisher Packt
ISBN-13 9781787281905
Length 466 pages
Edition 1st Edition
Languages
Tools
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 (11) Chapters Close

Preface 1. What is New in Visual Studio 2017 IDE? FREE CHAPTER 2. What is New in C# 7.0? 3. Building Applications for Windows Using XAML Tools 4. Building Applications for Windows 10 Using UWP Tools 5. Building Applications with .NET Core 6. Managing NuGet Packages 7. Debugging Applications with Visual Studio 2017 8. Live Unit Testing with Visual Studio 2017 9. Accelerate Cloud Development with Microsoft Azure 10. Working with Source Controls

WPF property system

WPF provides a new property system, which extends the functionality of the default CLR (Common Language Runtime) property and is known as a dependency property. A normal CLR property is a wrapper to its getter and setter implementation of its private variable; whereas a dependency property extends it to provide you a way to compute the value based on the value of other inputs.

In addition to this, it also provides you with a way to do self-contained validation, set default values, monitor changes to its value, and do a callback.

To work with a dependency property, you must derive the class from DependencyObject, which will work as the observer. It holds the new property system defined within the DependencyObject class:

A CLR property looks like this:

  private string m_AuthorName; 
 
  public string AuthorName 
  { 
     get { return m_AuthorName; } 
     set...
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 $19.99/month. Cancel anytime
Banner background image