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
Mastering Windows Presentation Foundation

You're reading from   Mastering Windows Presentation Foundation Build responsive UIs for desktop applications with WPF

Arrow left icon
Product type Paperback
Published in Mar 2020
Publisher Packt
ISBN-13 9781838643416
Length 626 pages
Edition 2nd Edition
Languages
Arrow right icon
Author (1):
Arrow left icon
Sheridan Yuen Sheridan Yuen
Author Profile Icon Sheridan Yuen
Sheridan Yuen
Arrow right icon
View More author details
Toc

Table of Contents (15) Chapters Close

Preface 1. A Smarter Way of Working with WPF 2. Debugging WPF Applications FREE CHAPTER 3. Writing Custom Application Frameworks 4. Becoming Proficient with Data Binding 5. Using the Right Controls for the Job 6. Adapting the Built-In Controls 7. Mastering Practical Animations 8. Creating Visually Appealing User Interfaces 9. Implementing Responsive Data Validation 10. Completing that Great User Experience 11. Improving Application Performance 12. Deploying Your Masterpiece Application 13. What Next? 14. Other Books You May Enjoy

Altering default behavior

The developers of the ItemsControl class gave it a particular default behavior. They thought that any objects that extended the UIElement class would have their own UI container and so, should be displayed directly, rather than allowing them to be templated in the usual way.

There is a method named IsItemItsOwnContainer in the ItemsControl class, which is called by the WPF Framework, to determine whether an item in the Items collection is its own item container or not. Let's first take a look at the source code of this method:

public bool IsItemItsOwnContainer(object item) 
{ 
  return IsItemItsOwnContainerOverride(item); 
} 

Note that internally, this method just calls the IsItemItsOwnContainerOverride method, returning its value unchanged. Let's take a look at the source code of that method now:

protected virtual bool IsItemItsOwnContainerOverride(object item) 
{ 
  return (item is UIElement); 
} 

Here, we see two things: The first is the default...

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 R$50/month. Cancel anytime