-
WPF Localization Using RESX Files
I discovered this article, WPF Localization Using RESX Files, on codeproject.com when I was thinking about how to localize my WPF application, BarModelMaker. After having examined the sample code of the… More.
-
Customize WPF ComboBox
There is a column in the Lines ListView of the Edit Model dialog box of the GeometryViz3D tool for the user to choose the color of the lines. Previously the… More.
-
ListView, ComboBox, and ObservableCollection
Published an article on CodeProject, discussing about the issues related to binding ObservableCollection to ListView and ComboBox controls. Please read the article here. More.
-
ObservableCollection
In WPF, we can bind an ObservableCollection<T> object to the ItemsSource property of an ItemsControl, e.g. a ComboBox. When we add or remove an element from the collection, the control… More.
-
CommandManager.InvalidateRequerySuggested()
In a WPF application, I have several Button controls each bound to a ICommand property of a ViewModel. In one of the method of a ViewModel, I invoke a method… More.