How to get an access authorization in the foreground of a WPF app? C#

109 Views Asked by At

I am writing a WPF app in C# which opens another program in the background. In my case I am opening TIA-Portal (a SIEMENS Software). To open a project the TIA-Portal needs an access authorization from the user. But the window of the access authorization always appears behind my MainWindow.

The code I am using:

private void openTIA_Click(object sender, RoutedEventArgs e) 
    {
        OpenFileDialog SearchTIAProject = new OpenFileDialog();
        SearchTIAProject.Title = "TIA Projekt öffnen";
        SearchTIAProject.Filter = "TIA Portal Project|*.ap14";

        if (SearchTIAProject.ShowDialog() == true)
        {
            Block_PfadDesTIAProgramms.Visibility = System.Windows.Visibility.Visible;
            Block_PfadDesTIAProgramms.Text = (SearchTIAProject.FileName);
            string projectpath = SearchTIAProject.FileName;
            myPublicPath = GetPublicPath(projectpath);
            myOpenedTIAProject = OpenTIAProject(projectpath); //Functioncall
        }
        else
        {
            MessageBox.Show("Keine Datei ausgewählt!");
        }
    }

public Siemens.Engineering.Project OpenTIAProject(string referedPath) 
    {
        myTIAPortal = new TiaPortal(TiaPortalMode.WithoutUserInterface);
        ProjectComposition projects = myTIAPortal.Projects;
        FileInfo projectPathTIA = new FileInfo(referedPath);
        //This line then needs the access authorization:
        myOpenedTIAProject = projects.Open(projectPathTIA); 

        return myOpenedTIAProject;
    }

I have also tried this around the functioncall but it did not work:

MainWindow.Topmost = false;
myOpenedTIAProject = OpenTIAProject(projectpath);
MainWindow.Topmost = true;
MainWindow.Topmost = false;

Is there any way to the access authorization to the foreground (or the MainWindow to the background)?

0

There are 0 best solutions below