summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Bugzilla45277.cs
blob: 6a6baf545ff6873c22b088ea99ca76ab864383f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
using Xamarin.Forms.CustomAttributes;
using Xamarin.Forms.Internals;

#if UITEST
using Xamarin.UITest;
using NUnit.Framework;
#endif

namespace Xamarin.Forms.Controls.Issues
{
	[Preserve(AllMembers = true)]
	[Issue(IssueTracker.Bugzilla, 45277, "[WinRT/UWP] Entry with IsPassword = true does not allow selection of characters", PlatformAffected.WinRT)]
	public class Bugzilla45277 : TestContentPage
	{
		protected override void Init()
		{
			var passwordTextLabel = new Label
			{
				Text = "[No Password Text Yet]"
			};
			var passwordEntry = new Entry
			{
				IsPassword = true,
				Placeholder = "Enter password"
			};
			passwordEntry.Completed += (sender, args) => DisplayAlert("Enter pressed", "OK", "Cancel");
			passwordEntry.TextChanged += (sender, args) =>
			{
				passwordTextLabel.Text = passwordEntry.Text;
			};

			Content = new StackLayout
			{
				Children =
				{
					new Label
					{
						Text = "The below label should allow Paste and Select All commands; however, copying via keyboard should not work."
					},
					passwordEntry,
					new Entry
					{
						Placeholder = "Entry for easily testing your paste functionality"
					},
					passwordTextLabel
				}
			};
		}
	}
}