Hello I have a Toggle button in Silverlight.
I want to set its state to "pressed".
First I tried :
btButton.IsPressed = true
But that does not work (readonly).
Then I tried :
btButton.SetValue(ToggleButton.IsPressedProperty, true);
Which also does not work. How do I accomplish this ? I'd assume it would not be that hard...