summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Bugzilla35490.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Bugzilla35490.cs')
-rw-r--r--Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Bugzilla35490.cs39
1 files changed, 39 insertions, 0 deletions
diff --git a/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Bugzilla35490.cs b/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Bugzilla35490.cs
new file mode 100644
index 00000000..119d297f
--- /dev/null
+++ b/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Bugzilla35490.cs
@@ -0,0 +1,39 @@
+using Xamarin.Forms.CustomAttributes;
+
+namespace Xamarin.Forms.Controls
+{
+ [Preserve (AllMembers = true)]
+ [Issue (IssueTracker.Bugzilla, 35490, "Label Text Misaligned in Windows Phone 8.1 and WinRT",
+ PlatformAffected.WinPhone | PlatformAffected.WinRT)]
+ public class Bugzilla35490 : TestContentPage
+ {
+ protected override void Init ()
+ {
+ var instructions = new Label {
+ Text =
+ "The label in the red box below should be centered horizontally and vertically. If it's not, this test has failed."
+ };
+
+
+ var label = new Label {
+ BackgroundColor = Color.Red,
+ TextColor = Color.White,
+ HorizontalTextAlignment = TextAlignment.Center,
+ VerticalTextAlignment = TextAlignment.Center,
+ HeightRequest = 200,
+ HorizontalOptions = LayoutOptions.Fill,
+ Text = "Should be centered horizontally and vertically"
+ };
+
+
+ Content = new StackLayout {
+ HorizontalOptions = LayoutOptions.Fill,
+ VerticalOptions = LayoutOptions.Fill,
+ Children = {
+ instructions,
+ label
+ }
+ };
+ }
+ }
+} \ No newline at end of file