public void GLWindowRaise() { tlog.Debug(tag, $"GLWindowRaise START"); string name = "myGLWindow"; Rectangle rectangle = new Rectangle(20, 20, 100, 100); GLWindow a1 = new GLWindow(name, rectangle, true); a1.Raise(); a1.Destroy(); tlog.Debug(tag, $"GLWindowRaise END (OK)"); }