Tagged Questions
2
votes
1answer
287 views
Bind to Color of a Brush
I am trying to animate the Fill property of a path. What I have so far is a ColorAnimation that works well. The target property is (Shape.Fill).(SolidColorBrush.Color) and I set it to a value of ...
2
votes
2answers
811 views
WPF Edit Resource
Hi is there any way to change a Resource brush from code or via some binding?
what I want to do is change the color of my "main" brush when a button is clicked.
Thanks a lot!
Edit:
Its a ...
1
vote
1answer
139 views
Binding to a brush cause memory leack?
Let's say I have following classes in my app.
MainWindow.xaml.cs
public partial class MainWindow : Window
{
public SolidColorBrush Brush { get; set; }
public MainWindow()
{
...
1
vote
3answers
3k views
Creating a WPF ValueConverter for a Brush
On the Nerd Plus Art blog today, there was a post about creating WPF Resources for arrows, which the author uses frequently. I have a side project that has Back and Forward buttons, so I thought that ...