Example #1
0
 static public void ShowUserManuls()
 {
     try
     {
         if (thisInstance == null)
         {
             thisInstance = new Manuals();
         }
         if (!thisInstance.IsVisible)
         {
             thisInstance.Show();
         }
         thisInstance.Focus();
     }
     catch (Exception ex)
     {
         Log.This(ex);
     }
 }
Example #2
0
 private void rbnUserManul_Click(object sender, RoutedEventArgs e)
 {
     Manuals.ShowUserManuls();
 }