I'm trying to get the Tag property to work on a MediaElement
MyMediaElement.Tag.Value = 3 ---- to set a value
MyMediaElement.Tag --- to retrieve the value
To my reading of the SDK this should work... right? But instead (in VisStudio) I see MyMediaElement.Tag returning ""
SetValue("Tag", 3) --- doesn't work (and shouldn't according to the SDK)
What am I missing
tom