Common Properties get disappeared after converting a WPF control into UserControl
WPF
2
Posts
2
Posters
0
Views
1
Watching
-
Once I convert a WPF control into UserControl, Some of its Common Properties get disappeared. How can I retain properties like 'Content', 'GroupName' for a RadioButton control after conversion?
-
Once I convert a WPF control into UserControl, Some of its Common Properties get disappeared. How can I retain properties like 'Content', 'GroupName' for a RadioButton control after conversion?
After you convert something into a user control, it is now embedded within that user control. You have to create properties to interact with the control you have just converted into a user control.