Basically, I have a function that deals with various items, based on what the user clicked on.
So when they right click on say a label and I open my context menu, how do I figure out what label (object) it was that they clicked on?
I could do an event for every label, but that seems... bad.
I attempted to use the event DropDownOpening to see if I could access the sender for the right click to open the menu, but haven't had any luck there.
I attempted this: Dim a As RadLabelElement = sender
And that looks like its right, meaning it has the correct Text property of the label I clicked on. But what I really need is the .tag property off of it, and it is set to Nothing. Although I can directly look at the label.tag and its correct.