summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Controls.Issues
diff options
context:
space:
mode:
authorPaul DiPietro <pauldipietro@users.noreply.github.com>2017-01-31 06:57:43 -0600
committerRui Marinho <me@ruimarinho.net>2017-01-31 12:57:43 +0000
commitd80be6fdb228567cc372e6c242052a6ba5853681 (patch)
tree2746791221700b88d19854efc4a23b65cd7d3073 /Xamarin.Forms.Controls.Issues
parentc2d590e8cd5cdee688dff6d5ad75207edc64630d (diff)
downloadxamarin-forms-d80be6fdb228567cc372e6c242052a6ba5853681.tar.gz
xamarin-forms-d80be6fdb228567cc372e6c242052a6ba5853681.tar.bz2
xamarin-forms-d80be6fdb228567cc372e6c242052a6ba5853681.zip
[WinRT/UWP] Fix Slider binding value incorrectly (#729)
Diffstat (limited to 'Xamarin.Forms.Controls.Issues')
-rw-r--r--Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Bugzilla41619.cs62
-rw-r--r--Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Xamarin.Forms.Controls.Issues.Shared.projitems1
2 files changed, 63 insertions, 0 deletions
diff --git a/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Bugzilla41619.cs b/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Bugzilla41619.cs
new file mode 100644
index 00000000..24c277de
--- /dev/null
+++ b/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Bugzilla41619.cs
@@ -0,0 +1,62 @@
+using Xamarin.Forms.CustomAttributes;
+using Xamarin.Forms.Internals;
+using System.ComponentModel;
+using System.Runtime.CompilerServices;
+
+#if UITEST
+using Xamarin.UITest;
+using NUnit.Framework;
+#endif
+
+namespace Xamarin.Forms.Controls.Issues
+{
+ [Preserve(AllMembers = true)]
+ [Issue(IssueTracker.Bugzilla, 41619, "[WinRT/UWP] Slider binding works incorrectly", PlatformAffected.WinRT)]
+ public class Bugzilla41619 : TestContentPage
+ {
+ protected override void Init()
+ {
+ var vm = new Bugzilla41619ViewModel { SliderValue = 5 };
+ BindingContext = vm;
+ var label = new Label();
+ label.SetBinding(Label.TextProperty, "SliderValue");
+ var slider = new Slider
+ {
+ Maximum = 10,
+ Minimum = 1,
+ };
+ slider.SetBinding(Slider.ValueProperty, "SliderValue", BindingMode.TwoWay);
+ Content = new StackLayout
+ {
+ Children =
+ {
+ label,
+ slider,
+ new Label { Text = "The initial slider value above should be 5." }
+ }
+ };
+ }
+
+ class Bugzilla41619ViewModel : INotifyPropertyChanged
+ {
+ private double _sliderValue;
+
+ public double SliderValue
+ {
+ get { return _sliderValue; }
+ set
+ {
+ _sliderValue = value;
+ OnPropertyChanged();
+ }
+ }
+
+ public event PropertyChangedEventHandler PropertyChanged;
+
+ protected virtual void OnPropertyChanged([CallerMemberName] string propertyName = null)
+ {
+ PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
+ }
+ }
+ }
+} \ No newline at end of file
diff --git a/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Xamarin.Forms.Controls.Issues.Shared.projitems b/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Xamarin.Forms.Controls.Issues.Shared.projitems
index 0ca65acd..20fd7fae 100644
--- a/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Xamarin.Forms.Controls.Issues.Shared.projitems
+++ b/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Xamarin.Forms.Controls.Issues.Shared.projitems
@@ -127,6 +127,7 @@
<Compile Include="$(MSBuildThisFileDirectory)Bugzilla41415.cs" />
<Compile Include="$(MSBuildThisFileDirectory)Bugzilla41418.cs" />
<Compile Include="$(MSBuildThisFileDirectory)Bugzilla41424.cs" />
+ <Compile Include="$(MSBuildThisFileDirectory)Bugzilla41619.cs" />
<Compile Include="$(MSBuildThisFileDirectory)Bugzilla42069.cs" />
<Compile Include="$(MSBuildThisFileDirectory)Bugzilla42069_Page.xaml.cs">
<DependentUpon>Bugzilla42069_Page.xaml</DependentUpon>