Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
2answers
5k views

PasswordBox with MVVM

Hi people stackoverflow. I'm working with MVVM, I have ViewModel call UserViewModel with a Property Password. In the View have a control PasswordBox. <PasswordBox x:Name="txtPassword" ...
9
votes
1answer
916 views

C# - compare two SecureStrings for equality

I have a WPF application with two PasswordBoxes, one for the password and another for the password to be entered a second time for confirmation purposes. I was wanting to use ...
7
votes
1answer
976 views

How to show in wpf password box characters for few second?

If the user enter 1985 in the password box,it will be shown .... . How to show letter or number for few seconds and after that change it to bullet? I suppose that this cant be done in the passsword ...
7
votes
2answers
760 views

SKPaymentQueue addTransactionObserver asking for App Store password on startup after in-app purchase

My app is using in-app purchases, and most of my users can purchase just fine without any problems. For these folks, my app downloads the content after the purchase succeeds and they are happy. ...
7
votes
3answers
1k views

WPF PasswordBox: How do I warn a user that Caps Lock is enabled?

Does anyone know how to implement the standard bubble message that warns users whenever Caps Lock is enabled and a password control has focus? Is this built into the .NET framework or do I need to ...
4
votes
2answers
455 views

Remember password popup on Android webview problem

this is is a pretty straight forward question, I need to detect when the default Remember password popup opens on the Android Webview (So I can make sure I am not covering it with any other component, ...
3
votes
3answers
2k views

What's the Best Way to Catch the Return Key in a PasswordBox? (WPF/XAML)

What's the best way to catch the return key in a PasswordBox? (WPF/XAML) I have a TextBox field and a PasswordBox field on my login form (for username and password entry). I also have a login ...
3
votes
1answer
1k views

WPF PasswordBox Caret

Is there a way to hide or move the PasswordBox's caret?
3
votes
1answer
3k views

How to get the value of <PasswordBox in silverlight?

I am pretty new to Silverlight and just now realised that there is a passwordbox control in Silverlight 2. But there are not much articles about how to get the value from this control. Is it similar ...
2
votes
1answer
459 views

How to define PasswordBox type column in DataGrid?

How to make a column in WPFToolkit:DataGrid PasswordBox like?
2
votes
2answers
5k views

PasswordBox Binding

I'm just getting started with M-V-VM and WPF and having issues understanding some binding issues. I have a login page that has a ComboBox and a PasswordBox. The ComboBox looks like this: ...
1
vote
2answers
49 views

Error handling in WPF PasswordBox

I have always admired the way Josh Smith has built his sample application. And I have also tried to emulate the way in which the ViewModels of his application implements the IDataErrorInfo property ...
1
vote
1answer
84 views

Why does a PasswordBox control crash my WPF application?

I have spent a good day trying to figure out why the PasswordBox is causing me so many problems. I have an application that works on every machine I have tested it on. Now it has been installed on ...
1
vote
2answers
266 views

Store, retrieve and validate password (SecureString) in SQL Server

I have a login window that gets the username and password from the user and I would like to know the best way to handle the password. The username is just a regular textbox, but the password is a ...
1
vote
1answer
388 views

WPF PasswordBox label visibility

I have created a passwordbox user control for a login screen. I was trying to use a watermark approach, but most of the examples I saw failed when I tried to use them. I switched to just being able to ...
1
vote
1answer
582 views

How do I change the on-screen keyboard for a PasswordBox

I have a box that I want to take a password of only numbers (like an ATM-card PIN), how is the best way to do that? Requirements: Password (with the hidden numbers) Typing digits as the default ...
1
vote
3answers
1k views

How do I elegantly handle using a PasswordBox in WPF?

I'm aware that you can't Bind to PasswordBox.Password in WPF. How do I handle a form that contains one? All other controls on the form are bound to properties on a business object, but I have to ...
1
vote
0answers
460 views

wpf passwordbox caret

How do I use a passwordbox control with a virtual keyboard using WPF? With the textbox control, it's fairly simple to just move the caret to the next text position; not so with passwordbox, which ...
0
votes
1answer
58 views

cannot centre align password in passwordbox in WP7

Im not able to centre align password in a PasswordBox in Windows Phone. The centre align is disabled. Is there any method by which we can align the text to the centre? I tried setting of the ...
0
votes
0answers
76 views

ErrorTemplate for PasswordBox with AttachedProperty

I know that a passwordbox in wpf could not use the Validation.ErrorTemplate, anyhow i have to show the user, that something is wrong. My Passwordbox has a binding like this <PasswordBox ...
0
votes
1answer
182 views

support of Numeric password box in windows phone7

I am developing windows phone 7 application where i need to put the input scope of password box as numeric, say in case of ATM pin, but there is no way seen as of now where i can show numeric keypad ...
0
votes
2answers
137 views

Silverlight PasswordBox showing “Please enter password here” inside

How can I setup a PasswordBox in Silverlight 4 so that when it's empty it shows the text "Please enter password here" inside the PasswordBox? I want the text to show up in the PasswordBox, while the ...
0
votes
1answer
249 views

Display password char * in the password column in gridview in edit mode

I have a webform gridview. In that one columns is password. I want to allow the users to change the password. there are few issues. In the Edit template I have mentioned the password column TextMode ...
0
votes
3answers
143 views

Custom password field in not visible in browser

I want to make custom password in HTML But when i am running it with browser like chrome , Mozilla its not visible there.Please find my HTML & CSS.What wrong i am doing? <link href="mypwd.css" ...
0
votes
2answers
29 views

HTML forms - enabling browers to ask for remembering the value of a text form?

I have a field that I've labeled 'password', and I'd like the browser to ask the user whether they want to store that password. How do I do this? Is there an HTML attribute to use? For instance the ...
0
votes
1answer
202 views

Make the official WPF RibbonTextBox look like a PasswordBox

I'm developing an application with the official WPF Ribbon system, and I'd like to have a password field up in the ribbon. Is there any way I can modify the RibbonTextBox control to display dots ...
0
votes
1answer
694 views

Implimenting Jquery.ShowPassword in MVC Razor View

All that is happening for me is the Password Box is just disappearing and re-appearing on when the check box is checked. Code in razor view: <div id="passtext" class="editor-field"> ...
0
votes
1answer
102 views

Password form field in ajax

What is the ajax/javascript plugin which displays colors next to the password field. So each password will have its own color combination.
0
votes
5answers
263 views

How to have two password fields controlled by one checkbox?

<form> <fieldset> Password: <span id="capsalert">CAPS LOCK = on</span><br> <input type="password" id="pwd"> <script type="text/javascript"> ...
0
votes
1answer
301 views

Prefill the password field

I want to pre-fill the password field from the Cookie. I am setting the '#value' but its not rendered . Also tried #default_value . Is there any way to do this ?
0
votes
2answers
230 views

how to fix the size of password input field?

my html code is <tr> <td>User ID:</td> <td><input type="text" id="uid" size="20"></td> </tr> ...
0
votes
0answers
2k views

data validation on wpf passwordbox:type password, re-type password

I've built a wpf windows application in with there is a registration form. Using IDataErrorInfo i could successfully bind the field to a class property and with the help of styles display ...
0
votes
1answer
170 views

MVVM Binding Password

I am re-factoring my application to implement the MVVM design and i came across my first problem... Compiler won't let me bind to the Password property of the PasswordBox control. Anyone have any ...
0
votes
3answers
3k views

WPF Watermark PasswordBox from Watermark TextBox

I am using a Watermark textbox as in Watermark TextBox in WPF <Grid Grid.Row="0" Background="{StaticResource brushWatermarkBackground}" Style="{StaticResource EntryFieldStyle}" > ...
0
votes
2answers
1k views

How can i set the caret position to a specific index in passwordbox in WPF

I need to set the cursorposition inside the passwordbox explicitlyin WPF. i couldn't see the selectionstart property in passwordbox. Any help?