Example #1
0
 private void passwordBox_KeyUp(object sender, KeyEventArgs e)
 {
     if (e.Key == Key.Enter)
     {
         //Get our ByflyClient
         CoffeeJelly.Byfly.ByflyView.ByflyTools.ParserCallbackDelegate pcd = new ByflyTools.ParserCallbackDelegate((b) => b.GetAccountData());
         pcd.BeginInvoke(_boundedClient, null, null);
     }
 }
        private void passwordBox_KeyUp(object sender, KeyEventArgs e)
        {
            if (e.Key == Key.Enter)
            {
                //Get our ByflyClient
                CoffeeJelly.Byfly.ByflyView.ByflyTools.ParserCallbackDelegate pcd = new ByflyTools.ParserCallbackDelegate((b) => b.GetAccountData());
                pcd.BeginInvoke(_boundedClient, null, null);
            }

        }