BlackBerry.Dialog.Show C# (CSharp) Method

Show() public method

public Show ( ) : void
return void
        public void Show()
        {
            dialog_show (handle);
            Visible = true;
        }

Usage Example

Example #1
0
 public static void Timer()
 {
     using (var dlg = new Dialog ("OMFG–“UNICODE”", "I'm running MØNØ!!!!1")) {
         dlg.Show ();
         for (int i = 50; i > 0; i--) {
             dlg.Message = String.Format("Closing in {0:0.00} seconds.", i/10.0);
             Thread.Sleep (100);
         }
     }
 }
All Usage Examples Of BlackBerry.Dialog::Show