Hi.
I'm creating a WPF UserControl with many elements inside. I need to work with them and I need to give them names. I've seen that in some custom controls people are naming elements this way:
PART_name
Should I name my elements like PART_ListBox.. etc? Or what's the purpose of this? Is it to differentiate that these names are part of a UserControl?
Btw my class inhertis directly from UserControl, not from Control.
class MyControl: UserControl {}