Reputation: 55
Might be this question a blunder :(...
I have a a button in silverlight application...
<Button Height="25" Width="100" Grid.Column="0" Grid.Row="0" Click="Button_Click"/>
I read that silverlight need WCF to interact with server side... So is it like to access my "Button_Click" event I need WCF ?
Upvotes: 0
Views: 1064
Reputation: 935
No you dont need WCF to access you Button_Click event. You can direcly go to Code Behind and use the EventArgs e event handler.
The server side is normally database access and that is not needed for events!
Upvotes: 3