Wednesday, June 26, 2019

WPF: How To Remove Just The Min and Max Buttons On a WPF Window

In the XAML of the window set the following:
ResizeMode="NoResize"

No comments:

Post a Comment

Performance: Linking a List of Child Objects To a List of Parent Objects

Many a time I've had to build a relationship where a parent object has a list of child objects linked to it, where the parent itself als...