Browse by Tags
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")); if (brush != null) { brush.Color = Colors...
Read More...