Hello,
I have an application with the following properties:
- The application can have multiple main windows.
- Each main window contains a RadRibbonView and so inherites from RadRibbonWindow.
- In addition, I need to create another main window that doesn't contain a RadRibbonView, and so I used a RadWindow to implement it.
I can create this new window, show it in the taskbar and interact with it.
The problem appears when the window is in background and the user clicks on the button to display it. Normally the window should be bring at the top of all windows. I have tried to call BringIntoView, but it doesn't work. In a standard WPF window, I can call Activate to do the job, but this method is not implemented in RadWindow.
How can I implement this feature?
Patrick