2016-05-18 131 views
0

我需要在c#中运行Windows 10的默认相机应用程序。 我试过不同的方法,如:从桌面应用程序运行Windows 10的相机应用程序

process.start("camera.exe"): 
ms-camera:// 
microsoft.windows.camera 

但都失败了。

这不是一个商店应用程序,所以我不能使用“launch URI”方法。

+0

你能在 “所有失败” 的详细点吗?具体发生了什么? –

+0

也许有这样的解释:https://msdn.microsoft.com/windows/uwp/audio-video-camera/index – CathalMF

+0

你把camera.exe的完整路径? – BugFinder

回答

4

使用此启动相机应用:

Process.Start("microsoft.windows.camera:"); 
+0

有没有使用物理相机的任何相机模拟?我的笔记本电脑上没有安装usb cam或cam。因此,我想知道是否有任何相机模拟可以用作UWP应用程序的物理相机? – gayan1991

0

相机应用是通用的Windows应用程序,所以你不能简单地执行* .exe文件。使用Nasreddine所示的注册协议或通过IApplicationActivationManager这种方法。

this answer

public enum ActivateOptions 
{ 
    None = 0x00000000, // No flags set 
    DesignMode = 0x00000001, // The application is being activated for design mode, and thus will not be able to 
           // to create an immersive window. Window creation must be done by design tools which 
           // load the necessary components by communicating with a designer-specified service on 
           // the site chain established on the activation manager. The splash screen normally 
           // shown when an application is activated will also not appear. Most activations 
           // will not use this flag. 
    NoErrorUI = 0x00000002, // Do not show an error dialog if the app fails to activate.         
    NoSplashScreen = 0x00000004, // Do not show the splash screen when activating the app. 
} 

[ComImport, Guid("2e941141-7f97-4756-ba1d-9decde894a3d"), InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] 
interface IApplicationActivationManager 
{ 
    // Activates the specified immersive application for the "Launch" contract, passing the provided arguments 
    // string into the application. Callers can obtain the process Id of the application instance fulfilling this contract. 
    IntPtr ActivateApplication([In] String appUserModelId, [In] String arguments, [In] ActivateOptions options, [Out] out UInt32 processId); 
    IntPtr ActivateForFile([In] String appUserModelId, [In] IntPtr /*IShellItemArray* */ itemArray, [In] String verb, [Out] out UInt32 processId); 
    IntPtr ActivateForProtocol([In] String appUserModelId, [In] IntPtr /* IShellItemArray* */itemArray, [Out] out UInt32 processId); 
} 

[ComImport, Guid("45BA127D-10A8-46EA-8AB7-56EA9078943C")]//Application Activation Manager 
class ApplicationActivationManager : IApplicationActivationManager 
{ 
    [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)/*, PreserveSig*/] 
    public extern IntPtr ActivateApplication([In] String appUserModelId, [In] String arguments, [In] ActivateOptions options, [Out] out UInt32 processId); 
    [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] 
    public extern IntPtr ActivateForFile([In] String appUserModelId, [In] IntPtr /*IShellItemArray* */ itemArray, [In] String verb, [Out] out UInt32 processId); 
    [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] 
    public extern IntPtr ActivateForProtocol([In] String appUserModelId, [In] IntPtr /* IShellItemArray* */itemArray, [Out] out UInt32 processId); 
} 

使用源代码,然后通过其AppUserModelID Microsoft.WindowsCamera_8wekyb3d8bbwe!App启动相机应用:

private void button3_Click(object sender, EventArgs e) 
{ 
    ApplicationActivationManager appActiveManager = new ApplicationActivationManager(); 
    uint pid; 
    appActiveManager.ActivateApplication("Microsoft.WindowsCamera_8wekyb3d8bbwe!App", null, ActivateOptions.None, out pid); 
} 
+0

我试过两种方法,但都失败 第一种方法显示弹出窗口,以在窗口存储中查找新应用程序 第二种方法发送异常 –

+0

我已经在Windows 10上成功测试了这两种方法。也许您已卸载计算机上的相机应用程序。您可以从计算机上的Windows 10的开始菜单启动相机应用程序吗? – NineBerry

+0

我可以从菜单启动它。 你可以请检阅你的答案。 –

相关问题