Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
1k views

WPF TargetNullValue returning value when the textbox's binding is set to OneWayToSource

I have this xaml textbox <TextBox Text="{Binding ProdFilter.Min, Mode=OneWayToSource, UpdateSourceTrigger=PropertyChanged, TargetNullValue=''}" Width="50" DockPanel.Dock="Right" TabIndex="3" ...
3
votes
2answers
533 views

WPF ObservableCollection: How to add a blank line in one form's combobox, but not actually affect the ObservableCollection?

I have a static ObservableCollection in a Data Repository class. I use it to populate a combobox on one of my forms (which needs to be able to include a blank line which represents NULL). I use the ...
3
votes
1answer
2k views

How do I set TargetNullValue to a date?

I'm using the WPF toolkit's Calendar control to allow users to select a date. If the date is not yet selected then the property the SelectedDate is bound to is Null. This makes the Calendar default ...
3
votes
3answers
2k views

DataTemplate with TargetNullValue in a ListBox

I have the following DataTemplate in a Listbox <ListBox Grid.Column="1" Grid.Row="2" ItemsSource="{Binding People}" SelectedItem="{Binding SelectedPerson}"> <ListBox.ItemTemplate> ...
2
votes
1answer
68 views

Silverlight: How to Set TargetNullValue to Visibility.Collapsed in Binding

Happy New Year! I'm binding TextBlock.Visiblitiy to something, and I want to set the Binding.TargetNullValue to Collapsed, how can I do it in XAML? This one How do I set TargetNullValue to a date? ...
2
votes
3answers
81 views

Equiv. to Coalesce() in XAML Binding?

In SQL I can do this: Select Coalesce(Property1, Property2, Property3, 'All Null') as Value From MyTable If Property1, 2 and 3 are all null, then I get 'All Null' How do I do this in XAML? I ...
2
votes
4answers
570 views

How to hide stringformat if data is null

How to hide a stringformat when data is not present.Consider this sample <TextBlock Text="{Binding Amount, StringFormat=Total: {0:C}}" /> in this case if Amount is null,Then it will show just ...
0
votes
1answer
428 views

TargetNullValue, how set string from windows resource[WPF]

Hi I would like set default value for binding on Text property. In widows resources I have const string values: <Window.Resources> <sys:String ...