diff --git a/Slider/ChooseColorWithRGBSliders/ChooseColorWithRGBSliders.jsproj b/Slider/ChooseColorWithRGBSliders/ChooseColorWithRGBSliders.jsproj new file mode 100644 index 0000000..894aefc --- /dev/null +++ b/Slider/ChooseColorWithRGBSliders/ChooseColorWithRGBSliders.jsproj @@ -0,0 +1,82 @@ + + + + + Debug + AnyCPU + + + Debug + ARM + + + Debug + x64 + + + Debug + x86 + + + Release + AnyCPU + + + Release + ARM + + + Release + x64 + + + Release + x86 + + + + 75a1624f-45eb-4ae7-8e30-471382171045 + + + 11.0 + + + + + + Windows + 8.0 + en-US + ChooseColorWithRGBSliders_TemporaryKey.pfx + + + + Designer + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Slider/ChooseColorWithRGBSliders/ChooseColorWithRGBSliders_TemporaryKey.pfx b/Slider/ChooseColorWithRGBSliders/ChooseColorWithRGBSliders_TemporaryKey.pfx new file mode 100644 index 0000000..25f098f Binary files /dev/null and b/Slider/ChooseColorWithRGBSliders/ChooseColorWithRGBSliders_TemporaryKey.pfx differ diff --git a/Slider/ChooseColorWithRGBSliders/ReadMe.html b/Slider/ChooseColorWithRGBSliders/ReadMe.html new file mode 100644 index 0000000..31a208d --- /dev/null +++ b/Slider/ChooseColorWithRGBSliders/ReadMe.html @@ -0,0 +1,10 @@ +

+ In this example there are three RadSliders, one for each of the three colors in the RGB palette. By dragging the slide handle the color in the + square on the right changes. The color also changes if the user taps on the slider scale. +

+

+ To achieve this, five configuration properties of RadSlider have been used and and event handler has been added to both the change and slide events. +

+

+ There is a detailed explanation on how this can be achieved in the RadSlider's documentation under the "How To" section. +

diff --git a/Slider/ChooseColorWithRGBSliders/css/default.css b/Slider/ChooseColorWithRGBSliders/css/default.css new file mode 100644 index 0000000..808dbfc --- /dev/null +++ b/Slider/ChooseColorWithRGBSliders/css/default.css @@ -0,0 +1,70 @@ +.mainContent { + margin: 120px; + display: -ms-grid; + -ms-grid-columns: 4fr 8fr; + -ms-grid-rows: auto; +} + +.info { + color: #feef7a; + margin-left: 120px; +} + +#slider-container { + -ms-grid-column: 1; + -ms-grid-row: 1; + + display: -ms-grid; + -ms-grid-columns: 1fr 1fr 1fr; + -ms-grid-rows: 1fr 10fr; + + text-align: center; +} + + #slider-container h2 { + -ms-grid-column: 1; + -ms-grid-column-span: 3; + -ms-grid-row: 1; + } + + #sliderRed-container { + -ms-grid-column: 1; + -ms-grid-row: 2; + } + + #sliderGreen-container { + -ms-grid-column: 2; + -ms-grid-row: 2; + } + + #sliderBlue-container { + -ms-grid-column: 3; + -ms-grid-row: 2; + } + +#color-sample-container { + -ms-grid-column: 2; + -ms-grid-row: 1; + + display: -ms-grid; + -ms-grid-columns: 1fr; + -ms-grid-rows: 1fr 10fr; + + padding-left: 50px; +} + + #color-sample-container h2 { + -ms-grid-column: 1; + -ms-grid-row: 1; + } + + #color-sample { + -ms-grid-column: 1; + -ms-grid-row: 2; + + width: 310px; + height: 310px; + background: rgb(0, 0, 0); + border: 2px solid #FFF; + margin-top: 18px; + } \ No newline at end of file diff --git a/Slider/ChooseColorWithRGBSliders/default.html b/Slider/ChooseColorWithRGBSliders/default.html new file mode 100644 index 0000000..5dcd62e --- /dev/null +++ b/Slider/ChooseColorWithRGBSliders/default.html @@ -0,0 +1,75 @@ + + + + + Customization + + + + + + + + + + + + + + + + + +
+
+

RGB Sliders

+ +
+

Red

+
+
+
+

Green

+
+
+
+

Blue

+
+
+ +
+
+

Color Sample

+
+
+
+
+
+ + diff --git a/Slider/ChooseColorWithRGBSliders/images/logo.png b/Slider/ChooseColorWithRGBSliders/images/logo.png new file mode 100644 index 0000000..e26771c Binary files /dev/null and b/Slider/ChooseColorWithRGBSliders/images/logo.png differ diff --git a/Slider/ChooseColorWithRGBSliders/images/smalllogo.png b/Slider/ChooseColorWithRGBSliders/images/smalllogo.png new file mode 100644 index 0000000..1eb0d9d Binary files /dev/null and b/Slider/ChooseColorWithRGBSliders/images/smalllogo.png differ diff --git a/Slider/ChooseColorWithRGBSliders/images/splashscreen.png b/Slider/ChooseColorWithRGBSliders/images/splashscreen.png new file mode 100644 index 0000000..c951e03 Binary files /dev/null and b/Slider/ChooseColorWithRGBSliders/images/splashscreen.png differ diff --git a/Slider/ChooseColorWithRGBSliders/images/storelogo.png b/Slider/ChooseColorWithRGBSliders/images/storelogo.png new file mode 100644 index 0000000..dcb6727 Binary files /dev/null and b/Slider/ChooseColorWithRGBSliders/images/storelogo.png differ diff --git a/Slider/ChooseColorWithRGBSliders/js/default.js b/Slider/ChooseColorWithRGBSliders/js/default.js new file mode 100644 index 0000000..d860a2d --- /dev/null +++ b/Slider/ChooseColorWithRGBSliders/js/default.js @@ -0,0 +1,59 @@ +// For an introduction to the Blank template, see the following documentation: +// http://go.microsoft.com/fwlink/?LinkId=232509 +(function () { + "use strict"; + + WinJS.Binding.optimizeBindingReferences = true; + + var app = WinJS.Application; + var activation = Windows.ApplicationModel.Activation; + + var colorContainer, + sliderRedValue = 0, + sliderGreenValue = 0, + sliderBlueValue = 0; + + function changeSlideHandler(e) { + var slider = e.target; + + if (slider.element.id == "sliderRed") { + sliderRedValue = e.value; + } else if (slider.element.id == "sliderGreen") { + sliderGreenValue = e.value; + } else if (slider.element.id == "sliderBlue") { + sliderBlueValue = e.value; + } + + colorContainer.style.background = "rgb(" + sliderRedValue + "," + sliderGreenValue + "," + sliderBlueValue + ")"; + } + + WinJS.Namespace.define("RGBSlider", { + ChangeSlideHandler: WinJS.Utilities.markSupportedForProcessing(changeSlideHandler) + }); + + app.onactivated = function (args) { + if (args.detail.kind === activation.ActivationKind.launch) { + if (args.detail.previousExecutionState !== activation.ApplicationExecutionState.terminated) { + // TODO: This application has been newly launched. Initialize + // your application here. + } else { + // TODO: This application has been reactivated from suspension. + // Restore application state here. + } + args.setPromise(WinJS.UI.processAll().then(function() { + colorContainer = document.getElementById("color-sample"); + })); + } + }; + + app.oncheckpoint = function (args) { + // TODO: This application is about to be suspended. Save any state + // that needs to persist across suspensions here. You might use the + // WinJS.Application.sessionState object, which is automatically + // saved and restored across suspension. If you need to complete an + // asynchronous operation before your application is suspended, call + // args.setPromise(). + }; + + app.start(); +})(); diff --git a/Slider/ChooseColorWithRGBSliders/package.appxmanifest b/Slider/ChooseColorWithRGBSliders/package.appxmanifest new file mode 100644 index 0000000..03c1886 --- /dev/null +++ b/Slider/ChooseColorWithRGBSliders/package.appxmanifest @@ -0,0 +1,48 @@ + + + + + + + ChooseColorWithRGBSliders + myankov + images\storelogo.png + + + + 6.2.1 + 6.2.1 + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Slider/Slider.sln b/Slider/Slider.sln index 3d0d241..6cd4fd0 100644 --- a/Slider/Slider.sln +++ b/Slider/Slider.sln @@ -1,72 +1,98 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 2012 -Project("{262852C6-CD72-467D-83FE-5EEB1973A190}") = "GettingStarted", "GettingStarted\GettingStarted.jsproj", "{A9CB79E9-4B28-4FD2-9C63-5C591F4B89B1}" -EndProject -Project("{262852C6-CD72-467D-83FE-5EEB1973A190}") = "Customization", "CustomizingTicksAndLabels\Customization.jsproj", "{63C84321-8AA7-4E38-A778-675E07B0CB3D}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Debug|ARM = Debug|ARM - Debug|x64 = Debug|x64 - Debug|x86 = Debug|x86 - Release|Any CPU = Release|Any CPU - Release|ARM = Release|ARM - Release|x64 = Release|x64 - Release|x86 = Release|x86 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {A9CB79E9-4B28-4FD2-9C63-5C591F4B89B1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {A9CB79E9-4B28-4FD2-9C63-5C591F4B89B1}.Debug|Any CPU.Build.0 = Debug|Any CPU - {A9CB79E9-4B28-4FD2-9C63-5C591F4B89B1}.Debug|Any CPU.Deploy.0 = Debug|Any CPU - {A9CB79E9-4B28-4FD2-9C63-5C591F4B89B1}.Debug|ARM.ActiveCfg = Debug|ARM - {A9CB79E9-4B28-4FD2-9C63-5C591F4B89B1}.Debug|ARM.Build.0 = Debug|ARM - {A9CB79E9-4B28-4FD2-9C63-5C591F4B89B1}.Debug|ARM.Deploy.0 = Debug|ARM - {A9CB79E9-4B28-4FD2-9C63-5C591F4B89B1}.Debug|x64.ActiveCfg = Debug|x64 - {A9CB79E9-4B28-4FD2-9C63-5C591F4B89B1}.Debug|x64.Build.0 = Debug|x64 - {A9CB79E9-4B28-4FD2-9C63-5C591F4B89B1}.Debug|x64.Deploy.0 = Debug|x64 - {A9CB79E9-4B28-4FD2-9C63-5C591F4B89B1}.Debug|x86.ActiveCfg = Debug|x86 - {A9CB79E9-4B28-4FD2-9C63-5C591F4B89B1}.Debug|x86.Build.0 = Debug|x86 - {A9CB79E9-4B28-4FD2-9C63-5C591F4B89B1}.Debug|x86.Deploy.0 = Debug|x86 - {A9CB79E9-4B28-4FD2-9C63-5C591F4B89B1}.Release|Any CPU.ActiveCfg = Release|Any CPU - {A9CB79E9-4B28-4FD2-9C63-5C591F4B89B1}.Release|Any CPU.Build.0 = Release|Any CPU - {A9CB79E9-4B28-4FD2-9C63-5C591F4B89B1}.Release|Any CPU.Deploy.0 = Release|Any CPU - {A9CB79E9-4B28-4FD2-9C63-5C591F4B89B1}.Release|ARM.ActiveCfg = Release|ARM - {A9CB79E9-4B28-4FD2-9C63-5C591F4B89B1}.Release|ARM.Build.0 = Release|ARM - {A9CB79E9-4B28-4FD2-9C63-5C591F4B89B1}.Release|ARM.Deploy.0 = Release|ARM - {A9CB79E9-4B28-4FD2-9C63-5C591F4B89B1}.Release|x64.ActiveCfg = Release|x64 - {A9CB79E9-4B28-4FD2-9C63-5C591F4B89B1}.Release|x64.Build.0 = Release|x64 - {A9CB79E9-4B28-4FD2-9C63-5C591F4B89B1}.Release|x64.Deploy.0 = Release|x64 - {A9CB79E9-4B28-4FD2-9C63-5C591F4B89B1}.Release|x86.ActiveCfg = Release|x86 - {A9CB79E9-4B28-4FD2-9C63-5C591F4B89B1}.Release|x86.Build.0 = Release|x86 - {A9CB79E9-4B28-4FD2-9C63-5C591F4B89B1}.Release|x86.Deploy.0 = Release|x86 - {63C84321-8AA7-4E38-A778-675E07B0CB3D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {63C84321-8AA7-4E38-A778-675E07B0CB3D}.Debug|Any CPU.Build.0 = Debug|Any CPU - {63C84321-8AA7-4E38-A778-675E07B0CB3D}.Debug|Any CPU.Deploy.0 = Debug|Any CPU - {63C84321-8AA7-4E38-A778-675E07B0CB3D}.Debug|ARM.ActiveCfg = Debug|ARM - {63C84321-8AA7-4E38-A778-675E07B0CB3D}.Debug|ARM.Build.0 = Debug|ARM - {63C84321-8AA7-4E38-A778-675E07B0CB3D}.Debug|ARM.Deploy.0 = Debug|ARM - {63C84321-8AA7-4E38-A778-675E07B0CB3D}.Debug|x64.ActiveCfg = Debug|x64 - {63C84321-8AA7-4E38-A778-675E07B0CB3D}.Debug|x64.Build.0 = Debug|x64 - {63C84321-8AA7-4E38-A778-675E07B0CB3D}.Debug|x64.Deploy.0 = Debug|x64 - {63C84321-8AA7-4E38-A778-675E07B0CB3D}.Debug|x86.ActiveCfg = Debug|x86 - {63C84321-8AA7-4E38-A778-675E07B0CB3D}.Debug|x86.Build.0 = Debug|x86 - {63C84321-8AA7-4E38-A778-675E07B0CB3D}.Debug|x86.Deploy.0 = Debug|x86 - {63C84321-8AA7-4E38-A778-675E07B0CB3D}.Release|Any CPU.ActiveCfg = Release|Any CPU - {63C84321-8AA7-4E38-A778-675E07B0CB3D}.Release|Any CPU.Build.0 = Release|Any CPU - {63C84321-8AA7-4E38-A778-675E07B0CB3D}.Release|Any CPU.Deploy.0 = Release|Any CPU - {63C84321-8AA7-4E38-A778-675E07B0CB3D}.Release|ARM.ActiveCfg = Release|ARM - {63C84321-8AA7-4E38-A778-675E07B0CB3D}.Release|ARM.Build.0 = Release|ARM - {63C84321-8AA7-4E38-A778-675E07B0CB3D}.Release|ARM.Deploy.0 = Release|ARM - {63C84321-8AA7-4E38-A778-675E07B0CB3D}.Release|x64.ActiveCfg = Release|x64 - {63C84321-8AA7-4E38-A778-675E07B0CB3D}.Release|x64.Build.0 = Release|x64 - {63C84321-8AA7-4E38-A778-675E07B0CB3D}.Release|x64.Deploy.0 = Release|x64 - {63C84321-8AA7-4E38-A778-675E07B0CB3D}.Release|x86.ActiveCfg = Release|x86 - {63C84321-8AA7-4E38-A778-675E07B0CB3D}.Release|x86.Build.0 = Release|x86 - {63C84321-8AA7-4E38-A778-675E07B0CB3D}.Release|x86.Deploy.0 = Release|x86 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 2012 +Project("{262852C6-CD72-467D-83FE-5EEB1973A190}") = "GettingStarted", "GettingStarted\GettingStarted.jsproj", "{A9CB79E9-4B28-4FD2-9C63-5C591F4B89B1}" +EndProject +Project("{262852C6-CD72-467D-83FE-5EEB1973A190}") = "Customization", "CustomizingTicksAndLabels\Customization.jsproj", "{63C84321-8AA7-4E38-A778-675E07B0CB3D}" +EndProject +Project("{262852C6-CD72-467D-83FE-5EEB1973A190}") = "ChooseColorWithRGBSliders", "ChooseColorWithRGBSliders\ChooseColorWithRGBSliders.jsproj", "{75A1624F-45EB-4AE7-8E30-471382171045}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Debug|ARM = Debug|ARM + Debug|x64 = Debug|x64 + Debug|x86 = Debug|x86 + Release|Any CPU = Release|Any CPU + Release|ARM = Release|ARM + Release|x64 = Release|x64 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {A9CB79E9-4B28-4FD2-9C63-5C591F4B89B1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {A9CB79E9-4B28-4FD2-9C63-5C591F4B89B1}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A9CB79E9-4B28-4FD2-9C63-5C591F4B89B1}.Debug|Any CPU.Deploy.0 = Debug|Any CPU + {A9CB79E9-4B28-4FD2-9C63-5C591F4B89B1}.Debug|ARM.ActiveCfg = Debug|ARM + {A9CB79E9-4B28-4FD2-9C63-5C591F4B89B1}.Debug|ARM.Build.0 = Debug|ARM + {A9CB79E9-4B28-4FD2-9C63-5C591F4B89B1}.Debug|ARM.Deploy.0 = Debug|ARM + {A9CB79E9-4B28-4FD2-9C63-5C591F4B89B1}.Debug|x64.ActiveCfg = Debug|x64 + {A9CB79E9-4B28-4FD2-9C63-5C591F4B89B1}.Debug|x64.Build.0 = Debug|x64 + {A9CB79E9-4B28-4FD2-9C63-5C591F4B89B1}.Debug|x64.Deploy.0 = Debug|x64 + {A9CB79E9-4B28-4FD2-9C63-5C591F4B89B1}.Debug|x86.ActiveCfg = Debug|x86 + {A9CB79E9-4B28-4FD2-9C63-5C591F4B89B1}.Debug|x86.Build.0 = Debug|x86 + {A9CB79E9-4B28-4FD2-9C63-5C591F4B89B1}.Debug|x86.Deploy.0 = Debug|x86 + {A9CB79E9-4B28-4FD2-9C63-5C591F4B89B1}.Release|Any CPU.ActiveCfg = Release|Any CPU + {A9CB79E9-4B28-4FD2-9C63-5C591F4B89B1}.Release|Any CPU.Build.0 = Release|Any CPU + {A9CB79E9-4B28-4FD2-9C63-5C591F4B89B1}.Release|Any CPU.Deploy.0 = Release|Any CPU + {A9CB79E9-4B28-4FD2-9C63-5C591F4B89B1}.Release|ARM.ActiveCfg = Release|ARM + {A9CB79E9-4B28-4FD2-9C63-5C591F4B89B1}.Release|ARM.Build.0 = Release|ARM + {A9CB79E9-4B28-4FD2-9C63-5C591F4B89B1}.Release|ARM.Deploy.0 = Release|ARM + {A9CB79E9-4B28-4FD2-9C63-5C591F4B89B1}.Release|x64.ActiveCfg = Release|x64 + {A9CB79E9-4B28-4FD2-9C63-5C591F4B89B1}.Release|x64.Build.0 = Release|x64 + {A9CB79E9-4B28-4FD2-9C63-5C591F4B89B1}.Release|x64.Deploy.0 = Release|x64 + {A9CB79E9-4B28-4FD2-9C63-5C591F4B89B1}.Release|x86.ActiveCfg = Release|x86 + {A9CB79E9-4B28-4FD2-9C63-5C591F4B89B1}.Release|x86.Build.0 = Release|x86 + {A9CB79E9-4B28-4FD2-9C63-5C591F4B89B1}.Release|x86.Deploy.0 = Release|x86 + {63C84321-8AA7-4E38-A778-675E07B0CB3D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {63C84321-8AA7-4E38-A778-675E07B0CB3D}.Debug|Any CPU.Build.0 = Debug|Any CPU + {63C84321-8AA7-4E38-A778-675E07B0CB3D}.Debug|Any CPU.Deploy.0 = Debug|Any CPU + {63C84321-8AA7-4E38-A778-675E07B0CB3D}.Debug|ARM.ActiveCfg = Debug|ARM + {63C84321-8AA7-4E38-A778-675E07B0CB3D}.Debug|ARM.Build.0 = Debug|ARM + {63C84321-8AA7-4E38-A778-675E07B0CB3D}.Debug|ARM.Deploy.0 = Debug|ARM + {63C84321-8AA7-4E38-A778-675E07B0CB3D}.Debug|x64.ActiveCfg = Debug|x64 + {63C84321-8AA7-4E38-A778-675E07B0CB3D}.Debug|x64.Build.0 = Debug|x64 + {63C84321-8AA7-4E38-A778-675E07B0CB3D}.Debug|x64.Deploy.0 = Debug|x64 + {63C84321-8AA7-4E38-A778-675E07B0CB3D}.Debug|x86.ActiveCfg = Debug|x86 + {63C84321-8AA7-4E38-A778-675E07B0CB3D}.Debug|x86.Build.0 = Debug|x86 + {63C84321-8AA7-4E38-A778-675E07B0CB3D}.Debug|x86.Deploy.0 = Debug|x86 + {63C84321-8AA7-4E38-A778-675E07B0CB3D}.Release|Any CPU.ActiveCfg = Release|Any CPU + {63C84321-8AA7-4E38-A778-675E07B0CB3D}.Release|Any CPU.Build.0 = Release|Any CPU + {63C84321-8AA7-4E38-A778-675E07B0CB3D}.Release|Any CPU.Deploy.0 = Release|Any CPU + {63C84321-8AA7-4E38-A778-675E07B0CB3D}.Release|ARM.ActiveCfg = Release|ARM + {63C84321-8AA7-4E38-A778-675E07B0CB3D}.Release|ARM.Build.0 = Release|ARM + {63C84321-8AA7-4E38-A778-675E07B0CB3D}.Release|ARM.Deploy.0 = Release|ARM + {63C84321-8AA7-4E38-A778-675E07B0CB3D}.Release|x64.ActiveCfg = Release|x64 + {63C84321-8AA7-4E38-A778-675E07B0CB3D}.Release|x64.Build.0 = Release|x64 + {63C84321-8AA7-4E38-A778-675E07B0CB3D}.Release|x64.Deploy.0 = Release|x64 + {63C84321-8AA7-4E38-A778-675E07B0CB3D}.Release|x86.ActiveCfg = Release|x86 + {63C84321-8AA7-4E38-A778-675E07B0CB3D}.Release|x86.Build.0 = Release|x86 + {63C84321-8AA7-4E38-A778-675E07B0CB3D}.Release|x86.Deploy.0 = Release|x86 + {75A1624F-45EB-4AE7-8E30-471382171045}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {75A1624F-45EB-4AE7-8E30-471382171045}.Debug|Any CPU.Build.0 = Debug|Any CPU + {75A1624F-45EB-4AE7-8E30-471382171045}.Debug|Any CPU.Deploy.0 = Debug|Any CPU + {75A1624F-45EB-4AE7-8E30-471382171045}.Debug|ARM.ActiveCfg = Debug|ARM + {75A1624F-45EB-4AE7-8E30-471382171045}.Debug|ARM.Build.0 = Debug|ARM + {75A1624F-45EB-4AE7-8E30-471382171045}.Debug|ARM.Deploy.0 = Debug|ARM + {75A1624F-45EB-4AE7-8E30-471382171045}.Debug|x64.ActiveCfg = Debug|x64 + {75A1624F-45EB-4AE7-8E30-471382171045}.Debug|x64.Build.0 = Debug|x64 + {75A1624F-45EB-4AE7-8E30-471382171045}.Debug|x64.Deploy.0 = Debug|x64 + {75A1624F-45EB-4AE7-8E30-471382171045}.Debug|x86.ActiveCfg = Debug|x86 + {75A1624F-45EB-4AE7-8E30-471382171045}.Debug|x86.Build.0 = Debug|x86 + {75A1624F-45EB-4AE7-8E30-471382171045}.Debug|x86.Deploy.0 = Debug|x86 + {75A1624F-45EB-4AE7-8E30-471382171045}.Release|Any CPU.ActiveCfg = Release|Any CPU + {75A1624F-45EB-4AE7-8E30-471382171045}.Release|Any CPU.Build.0 = Release|Any CPU + {75A1624F-45EB-4AE7-8E30-471382171045}.Release|Any CPU.Deploy.0 = Release|Any CPU + {75A1624F-45EB-4AE7-8E30-471382171045}.Release|ARM.ActiveCfg = Release|ARM + {75A1624F-45EB-4AE7-8E30-471382171045}.Release|ARM.Build.0 = Release|ARM + {75A1624F-45EB-4AE7-8E30-471382171045}.Release|ARM.Deploy.0 = Release|ARM + {75A1624F-45EB-4AE7-8E30-471382171045}.Release|x64.ActiveCfg = Release|x64 + {75A1624F-45EB-4AE7-8E30-471382171045}.Release|x64.Build.0 = Release|x64 + {75A1624F-45EB-4AE7-8E30-471382171045}.Release|x64.Deploy.0 = Release|x64 + {75A1624F-45EB-4AE7-8E30-471382171045}.Release|x86.ActiveCfg = Release|x86 + {75A1624F-45EB-4AE7-8E30-471382171045}.Release|x86.Build.0 = Release|x86 + {75A1624F-45EB-4AE7-8E30-471382171045}.Release|x86.Deploy.0 = Release|x86 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal