vote up 0 vote down star

There is the button control in silverlight application . Can I send a mouse click event to it programmatically?

flag

5 Answers

vote up 0 vote down

The classic way to do this in .Net is to P/Invoke SendInput() from user32.dll, since there's no way to do this with the .Net framework.

I'm not familiar with Silverlight, but I know that it uses a compact sandbox of a .Net, so if interoperability is available, you'll find plenty examples on the internet.

link|flag
vote up 0 vote down

I see, event delegate can be called from class where it is declared. But is there a way to call event delegate from other class?

link|flag
vote up 0 vote down

Oli, when i try to call event handler directly I have that error: "The event 'System.Windows.Controls.Primitives.ButtonBase.Click' can only appear on the left hand side of += or -=".

link|flag
vote up 1 vote down

You can't make the Click event fire for security reasons, because then you would be able to do things like force a user into full screen mode without them knowing it. As Oli said, you could call the Click event handler directly, but you can't actually fire a Click event.

link|flag
vote up 1 vote down

I've not used Silverlight but I assume it's the same process as Windows.Forms and WebControls. You'll just need to call the button's .Click(Object o, EventArgs e) method.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.