Example #1
0
 /// <summary>
 /// Set Focus
 /// </summary>
 public void Focus()
 {
     try
     {
         if (RvtWindow == null)
         {
             return;
         }
         RvtWindow.Activate();
         RvtWindow.WindowState = WindowState.Normal;
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.ToString());
     }
 }