Tagged Questions
3
votes
1answer
303 views
is it a bad idea to have static wpf value converters?
Instead of declaring the converter in the Resources, i can do something like
IsEnabled={Binding Path=SomeProp, Converter={x:Static namespace:Converter.Instance}}"
where Instance is instantiated ...
2
votes
4answers
1k views
Why does my converter giving an invalid cast error?
I created a Converter to convert from double to integer.
But the line "return (int)value;" always gets a "specified cast is not valid."
What do I have to do so that my Converter successfully ...
2
votes
3answers
2k views
Currency formatting on ComboBox items
I have a ComboBox bound to an ObservableCollection of decimals. What is the correct way to apply our currency converter to the items?
Edit:
a) I have an existing currency converter that I must use
...
1
vote
3answers
250 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
971 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
2answers
56 views
Validating a nullable int using a IValueConverter
I'm trying to perform a validation property. We have a nullable property called:
public int? Number
{
get { return _number; }
set
{
if (_number != value)
{
...
0
votes
1answer
75 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
2answers
877 views
When will the ValueConverter's Convert method be called in wpf
I have an ObservableCollection bound to a list box and a boolean property bound to a button. I then defined two converters, one that operates on the collection and the other operates on the boolean ...
0
votes
1answer
591 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}"> ...
0
votes
1answer
428 views
How can I easily add a WPF Converter item template to Visual Studio?
I find myself creating Converters often and would like to be able to:
right-click on my Converters folder
Add New Item...
choose Converter Item Template
I found these instructions but I can ...