ME3Explorer.GenericWindow.BringToFront C# (CSharp) Method

BringToFront() public method

public BringToFront ( ) : void
return void
        public void BringToFront()
        {
            if (wpf != null)
            {
                wpf.RestoreAndBringToFront();
            }
            else if (winform != null)
            {
                winform.RestoreAndBringToFront();
            }
        }

Usage Example

 private void viewButton_Click(object sender, RoutedEventArgs e)
 {
     current?.BringToFront();
 }