Hi,
In my application, i want to display few bits (bool) values in the UI. I have created a parent user control (say 'UserControlDataRepository') which will hold multiple child user controls (say 'UserControlBitData'). One UserControlDataRepository is nothing but a 'StackPanel' control. UserControlBitData is nothing but a image and label.
In my application each bit contains a bool value and its name which is stored in a class (say 'BitItem.cs'). This class is binded to 'UserControlBitData', bool value will be binded to image control and text of the bit is binded to the label control.
The problem here in my case is few bits are combined to form a enum value, which now i have to show with a combobox control. So instead of a label in 'UserControlBitData' i have to use combobox for few bot values. That means 3 bits will give 8 enum values. How i can run time combine two types of UserControls in the Prant user control.
Is it possible to load different child UserControls in a parent UserControl and bind them to different classes?
Thanks,
IamHuM