private void Window_Loaded(object sender, RoutedEventArgs e)
{
openSystemsTerminalControl1.InitInstance(System.Environment.GetEnvironmentVariable("USERPROFILE") + @"\Documents\Micro Focus\Reflection\demo.rdox");
}
private void OpenSystemsTerminalControl1_TerminalInitializedEvent(object sender, System.ComponentModel.AsyncCompletedEventArgs e)
{
// Check if error occurred during the terminal initialization
if (e.Error != null)
{
MessageBox.Show("Error during terminal initialization step: " + e.Error); return;
}
}