Advanced Forum Search Results
-
Hi Amanda,
I hope they add a custom formatter property to the DatePicker other than just (Long, Short)
I was not able to use the SelectedDateChanged for formatting because Editing causes changes before Editing is completed. I tried LostFocus but it continuously looped during my test. I think ...
-
I am using this as a solution until {Binding Path="", Mode=TwoWay} becomes possible.
Page XAML
<local:UserBox Grid.Column='1' Grid.Row='1' DataContext='{Binding}' Tag='FieldName'/>
UserControl XAML
<toolkit:AutoCompleteBox
...
-
Would you please post a code example of how you solved this?
I am still searching (hard) for how to add an event handler to a control in a DataTemplate created dynamically.
I would like to add LostFocus="DatePicker_LostFocus" to DatePicker1 in the DataTemplate below.
Any example would be ...
-
Grid.ColumnSpan="4" works
Grid.ColumnSpan="{Binding Span}" gives page error for Span of type string or type int.
Error: an unhandled exception Code: 2004 System.Windows.Markup.XmlParse.Exception
Has anyone seen this?