Windows Phone camera customization

How can I use the camera in Windows Phone 10 and save screenshots o pictures with out flash (I mean blocking the flash option to the users) Is it possible?

Upvotes: 0

Views: 92

Answers (2)

Redwerk
Redwerk

Reputation: 56

here is an article on how to make and save a screenshot, works for win 8.1, also for Windows Phone 10 http://blogs.msdn.com/b/lighthouse/archive/2013/10/18/capturing-snapshot-in-windows-8-1-store-app.aspx

Upvotes: 0

danvy
danvy

Reputation: 2105

You can create the user experience you want making your own camera app. Universal Windows Platform APIs will give you full control over what your user will be able to do.

Take this sample camera app as a good starting point

https://github.com/Microsoft/Windows-universal-samples/tree/master/Samples/CameraStarterKit

The process of taking a picture using the camera and taking a screenshot are completely different.

Upvotes: 1

Related Questions