There is the button control in silverlight application . Can I send a mouse click event to it programmatically?
|
|
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. |
||
|
|
|
|
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? |
||
|
|
|
|
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 -=". |
||
|
|
|
|
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. |
||
|
|
|
|
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 |
||
|
|
