Пример #1
0
 void jsinterop_InvokeFromJavascript(object sender, InvokedEventArgs e)
 {
     if (e.Command.Equals("checkbox", StringComparison.InvariantCultureIgnoreCase))
     {
         int checkbox;
         if (int.TryParse(e.Parameters, out checkbox))
         {
             mDal.SetCheckbox(mCurrentPage.PageName, checkbox);
         }
     }
 }