0
votes
0answers
102 views
GetLocalValueEnumerator() Not Returning All Properties
I am trying to perform validation in my WPF application using the solution in Detecting WPF Validation Errors …
3
votes
3answers
162 views
Automatically capitalize all input in WPF
Is there a way to automatically capitalize all input thoughtout a WPF app?
…
0
votes
1answer
414 views
Show selected item in a DataGrid within a ComboBox
I have a WPF toolkit DataGrid as the dropdown in a ComboBox template.
<toolkit:DataGrid x:Name="InnerGrid"
ItemsSource="{TemplateBinding ItemsSource}"
…
1
vote
Aligning content in a WPF Viewbox
According to MSDN the Viewbox is used to stretch the child elements. Since the child elements would be stretched, …
3
votes
wpf listbox change individual items to bold
You can do this using DataTriggers. For a simple example of using a DataTrigger you can check out …
0
votes
Using a WPF toolkit DatePicker as a parameter to an ObjectDataProvider used as an itemssource
If you build your class with INotifyPropertyChanged like this:
public class MyDataObject : INotifyPropertyChanged
{
private DateTime _SelectedDate;
public DateTime SelectedD …
