Welcome to AppDev Edge blogs, where our members have access to the latest insights from the AppDev experts.
As a site visitor, you can stay on top of trends in learning and technology with blogs by the AppDev team, including President Craig Jensen and Vice President of Technology Martin Schaeferle. AppDev Edge members also have access to blogs by our Microsoft MVP and expert instructors including Ken Getz, Robert Green, Don Kiely and Doug Ware.
For complete access to AppDev Edge, learn more about the site and
how to become a member.
Sorry, but there are no more tags available to filter with.
-
In general, it's no problem to modify WPF resources at runtime. You can use the TryFindResource method to search the same path as the XAML parser, given a starting point, and a name for the resource. like this: Button btn = (Button)sender; var brush = (SolidColorBrush)(btn.TryFindResource("TextBrush"...