Search Results

3
votes

A working Drag&Drop enabled ListView implementation for WPF?

Drag&drop is not SO hard, really :) try reading this http://www.beacosta.com/blog/?p=53 post on drag&drop. …
0
votes

Splitting WPF interface across multiple Xaml files

Use styles and user controls. Divide your interface on smaller parts and code them in another xaml files. Example: <Window> <VeryBigControl> <VeryBig …