I'm a newbie and having a little trouble getting the Silverlight (2.2) CheckBox to work. (VS2008, C#, web app)
I've got this in my page.xaml code:
<Canvas x:Name="Auto" Canvas.Left="10" Canvas.Top="175" Cursor="Hand" >
<CheckBox x:Name="cbAuto" Content="This is a checkbox" Click="cbAuto_Click" />
</Canvas>
What I can't figure out is where/how to place the code for "cbAuto_Click"
I'm guessing in Page.xaml.cs ... would someone please point me in the right direction? Thanks.
Start Free Trial