./nugetz

#win10

65 packages tagged with “win10

Rox.Xamarin.Video

View videos in Xamarin Forms with the VideoView control. Supports Android, iOS, and UWP. The VideoView control uses native controls on each platform. VideoView for Android, AVPlayerViewController for iOS, and MediaElement for UWP. The VideoView control in its simplest form can be used with the built-in controller. The VideoView control can also be bound to your own controls. The VideoView.Source property is of type ImageSource. This means you can set the VideoView.Source in the same way you would set the Image.Source property, including being able to use ImageSource.FromResource(). **************** XAML Usage: ---------------- xmlns:roxv="clr-namespace:Rox;assembly=Rox.Xamarin.Video.Portable" <roxv:VideoView AutoPlay="True" LoopPlay="True" ShowController="True" Source="http://www.sample-videos.com/video/mp4/720/big_buck_bunny_720p_1mb.mp4" /> **************** Sample Application is available at: ---------------- https://github.com/Rod-at-Rox/RoxXamarinVideo **************** In your iOS project "AppDelegate" code file, you must call "Rox.VideoIos.Init()" before "Xamarin.Forms.Forms.Init()". It should look something like: ---------------- Rox.VideoIos.Init(); global::Xamarin.Forms.Forms.Init(); LoadApplication(new MyVideoApplication()); **************** The VideoView has the following methods: - Task Start(); (Start and Resume playing the video) - Task Pause(); (Pause and Resume playing the video) - Task Stop(); (Stop playing the video) ---------------- The VideoView has the following bindable properties: - bool AutoPlay { get; set; } (Automatically starts playing the video, when video has finished loading) - TimeSpan Duration { get; } (The duration of the video, available after video has loaded) - bool FullScreen { get; set; } (View the video in full screen mode) - bool LoopPlay { get; set; } (Start playing the video again from the start, once it has finished) - bool Muted { get; set; } (Mutes the volume) - TimeSpan Position { get; set; } (The current position of the video during playback, available after video has loaded) - TimeSpan PositionInterval { get; set; } (The interval at which to update the current position of the video during playback, PositionInterval of TimeSpan.Zero will disable timer) - bool ShowController { get; set; } (Determines if the built-in controller is visible) - ImageSource Source { get; set; } (The source of the video to load, See Xamarin article "Working with Images") - VideoStateType VideoState { get; } (The current state of the VideoView: Empty, Error, Buffering, Playing, Paused, Stopped) - double Volume { get; set; } (The sound level of the audio, from 0 to 1) - ICommand PropertyChangedCommand { get; set; } (Executes a command when any of the VideoView properties change) ****************

v2.1.0158.5K
xamarinformsxamarin.formsxamplugin

LumiaSensorCoreSDKUWP

Lumia SensorCore SDK is a collection of 4 APIs utilising data from different sensors (for example, accelerometer) and also location information. This information can be used to track user's physical activities and motion. The sensors are able to run constantly in the background, collecting and preserving data for up to past ten days. With the Lumia SensorCore SDK one can access to step counter that provides information on how many steps and for how long time the user has been walking. The SDK also provides information about changes in user's physical activity. For example, when user remains stationary, or starts or stops walking. The SDK also provides user location information including a list of geo-coordinates where the user has spent some time and user's home and work location and information about user's movements. All SensorCore APIs are now being deprecated. The APIs will continue to work in existing devices, but it is not guaranteed that new devices would support SensorCore any more. Instead, you should look into Windows platform APIs for activity monitoring and step counting. They will replace SensorCore APIs and will be supported by upcoming devices. However, they will not be supported by the majority of existing devices. Therefore, as an intermediary solution, you might want to use both APIs in your application. Unfortunately, Place Monitor and Track Point Monitor do not have equivalent OS APIs available as of yet. We recommended that you start migrating existing apps to use Lumia SensorCore Step Counter or Activity Monitor APIs to the corresponding Windows platform APIs. We do not recommended that you use Lumia SensorCore APIs in any new apps. Platform requirement: Lumia Windows Phone 8.1 or Lumia Windows Phone 10

v1.2.0.12713.7K
SenseSensorCoreSDKWindowsPhonewp81win10