Custom Items in Lists in C# forms? -
I'm a bit new to developing the C # form of the app and I know, what's the best way to create one around Controls that holds a list of horizontal objects. In which each of these items governs horizontally its parental control, in which a thumbnail on the left and the right big text block of the image and a small text block under it, basically it is not a predefined control Can be found in the toolbox. Any ideas?
You can put it in the form control with panels, or in WPF with RapPanel and StackPanel.
In WindowsForms, I will create a user control that holds the right layout for one item, then make their list on run time.
In WPF I control a list, but use the WrapPanels and StackPanels to set the layout template.
WPF Better solution is long term if you do not have to be together with winforms
Comments
Post a Comment