Activate a particular window

31 May 20211 minute to read

A Particular child window can be activated using its name or using its reference as follows:

  • C#
  • //Activating Window using its name.
    
    DockingManager.ActivateWindow("element1");
    
    //Activating Window using its reference.
    
    DockingManager.ActiveWindow = element1;

    Refer Also

    Using ActiveWindow Property