WPF data bindings : Binding to Nested Class
Today I come across interesting data binding situation. I wanted to display a ListBox control binded to all possible values of specific enum. The challenging part was the fact that enum was defined inside static dictionary class. Apparently, you shall use the plus + sign in order to achieve the required result.
1 namespace DataBindings 2 { [...]