Select Page

WPF: Wrong culture formatting

Unfortunately, WPF does not apply certain localization settings automatically if the application is running e.g. on a german system. By default, the comma separator is an english “.” and not a “,”, etc. According to this site, you can run...

WPF for Beginners: Using Comboboxes in DataGrids

Scenario You have 2 simple MySQL / SQL / SQlite database tables like “customer” and “offer” with a foreign key relation between them (1 customer, * offers). You want to show the offer table in a DataGrid, and the “customer” column...

Using WPF ComboBox with list of ComboBoxItems and DataBinding

For WPF beginners coming from Windows Forms, it may seem like it’s easier to use a ComboBox with the drop-down items loaded from an external database / Entity Framework than to work with simple static items. For DB access, you set ItemsSource (e.g. EF object),...