Tagged Questions
3
votes
2answers
909 views
Aliasing Resources (WPF)
I am trying to alias a resource in XAML, as follows:
<UserControl.Resources>
<StaticResourceExtension x:Key="newName" ResourceKey="oldName"/>
</UserControl.Resources>
...
1
vote
2answers
440 views
Tiling rectangles seamlessly in WPF while maintaing subpixel accuracy?
I have had the problem described in the question Tiling rectangles seamlessly in WPF, but am not really happy with the answers given there.
I am painting a bar chart by painting lots of rectangles ...