Tagged Questions

2
votes
2answers
136 views

C# - Passing View to the converter as parameter

I have a view with couple of data templates in the resources of that view. (I don't want to put it somewhere global since its only needed by this particular view) Based on value I get in converter I ...
1
vote
3answers
254 views

Datagrid binding to collection, problem with one column converting

i have one problem with binding one column of my datagrid in custom way. So, i have this code in view: <DataGridTemplateColumn Header="State"> <DataGridTemplateColumn.CellTemplate> ...
1
vote
2answers
1k views

Bind Image.Source according to Boolean without a converter?

I want to have an image bound to a boolean and have the source of the image to depend on the boolean value i.e. true source="image1" false source="image2" I was wondering if there is a way to do it ...
0
votes
1answer
89 views

Bind an image source to URI with Error Image if download fails

I am working on binding a URI to an image and I have binding working just fine. The problem is that the images are generated on the fly and the generation could throw an exception. I'm using a ...
0
votes
1answer
607 views

WPF Binding & Converters

I've been recently playing with WPF and I've come across a number of problems that I can't solve. I have the following code in my generic.xaml: <Style TargetType="{x:Type local:ClearButton}"> ...