Oxygene and WP8 – How to detect the Windows Phone OS Version using Oxygene?

Oxygene and Windows Phone 8 tutorials – Article Index

How to detect the Windows Phone OS Version using Oxygene?

The Environment.OSVersion property returns a string that contains the version of the operating system.

Below is a sample method in Oxygene which displays the Windows Phone OS version.

method GetVersion();

var

WindowsPhoneVersion : string;

Begin

WindowsPhoneVersion := Environment.OSVersion.ToString();

MessageBox.Show(WindowsPhoneVersion.ToString());

End;

Oxygene and WP8 – How to detect the Windows Phone OS Version using Oxygene?

Leave A Reply

Your email address will not be published. Required fields are marked *

You May Also Like

In this post, you will learn about sync provider notifications in Windows 11 and how to disable or enable it...
In this tutorial, let’s learn how to enable or disable the startup sound in Windows 11. By default, when Windows...
The CameraCaptureTask allows the Windows Phone 7 App to launch the Camera Application . This will be useful when the...