Trigger volume buttons to take picture UWP

不想你离开。 提交于 2019-11-29 12:37:54

I was wondering if there is a possibility to trigger and handle when the user presses the volume up and/or down button inside an UWP app

No, hardware Volume controls need special permission for development, if you are an ordinary developer, it is not possible to access these hardware controls, you can refer to Start, Back, Search, Power, and Volume control behavior.

I try to use a selfie stick, but as windows 10 camera app does not provide the possibility to take picture and record video with it.

I'm not sure why is selfie stick doesn't support take pictures and record, some windows phones don't have a camera hardware button, like Lumia 640. But for device like Lumia 950 which has a camera hardware button, the camera hardware button is accessible in UWP app. As you can see from the official Basic camera app sample, it registers the event handlers for hardware buttons of Camera like this:

if (ApiInformation.IsTypePresent("Windows.Phone.UI.Input.HardwareButtons"))
{
    HardwareButtons.CameraPressed += HardwareButtons_CameraPressed;
}

When use this API, you need to reference Microsoft Mobile Extension SDK for Universal App Platform in your project.

If accessing camera hardware button is not enough for you, my suggestion is that you may submit a request to add this new features for developing through the Windows Feedback tool.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!