Infragistics XamDataGrid (rant)
Just finished writing a piece of code that would save and restore grid field positions and widths. Yes, I know they have a function for that, but it saves and […]
Just finished writing a piece of code that would save and restore grid field positions and widths. Yes, I know they have a function for that, but it saves and […]
When you add a view to a region (Region.Add(view)), it could be a real view, or a data template from which the view is created. The region tries to associate […]
Very brief note, so I don’t forget the circumstances: I may write a sample later. When you define Prism region in your view like this: <igDock:TabGroupPane prism:RegionManager.RegionName=”SomeRegion” /> Prism has […]
Eager to fix one thing, Microsoft broke another. In .NET 3.5- OneWayToSource bindings did not require source property to have a getter. After all, it is one way from destination […]
I encountered something that looks like a weird WPF bug. Default style will not be applied to controls if both of following conditions are true: 1. The style is the […]
It is official: Prism regions don’t work for a tab control inside a tab control. The reason is described here: http://stackoverflow.com/questions/8592802/tabcontrol-within-tabitem. Simply put, there is only one instance of the […]
“Any customer can have a car painted any colour that he wants so long as it is black” H. Ford Trying to figure out how scoped region managers would work […]
What keeps bothering me about MVVM, is that user-defined views behave very differently from built-in controls. We use built-in controls like this: <ListBox ItemsSource=… SelectedItem=… /> If, however, ListBox were […]
I did more investigation on the bindings (duh, only two months later). It turns out the bindings are replaced when the value of the target dependency property is replaced. This […]
I am kinda tired of this MVVM/bindings crap. I feel like my hands are tied, for variety of reasons: 1. Bindings don’t work with properties of properties, because they rely […]