我想在我的wpf应用程序中打开Msexcel,任何人都知道如何打开wpf应用程序

时间:2014-12-29 11:12:38

标签: wpf xaml wpf-controls wpftoolkit

 void Page1_Loaded(object sender, RoutedEventArgs e)
        {

            ProcessStartInfo startInfo = new ProcessStartInfo();
            startInfo.FileName = "C:\\Users\\ss.prajapati\\Desktop\\Demo.xlsx";
            startInfo.Arguments = file;
            Process.Start(startInfo);
        }

我知道如何打开进程,任何人都可以举例说明如何在我的wpf应用程序中打开excel。我想这样做<code>enter image description here</code>

1 个答案:

答案 0 :(得分:0)

您是否看过这个:https://social.msdn.microsoft.com/Forums/vstudio/en-US/acbf043d-8381-4113-b8c4-572acf3c8711/open-exe-program-inside-wpf-window-possible?forum=wpf - 您可以使用findwindow和setwindow将excel的父级设置为您的应用程序