Example T191224
Visible to All Users

WinForms Text Editor - Display password strength indicator

This example creates a custom text editor that displays the strength of the entered password.

Note

In v22.2+, the WinForms Subscription includes pre-designed UI controls (templates) designed to jump start the form development process. UI templates include the Password Box control that integrates the password strength indicator. It also displays a warning hint when the Caps Lock key is on, or when the password is weak. Read the following help topic for additional information: Password Editor.

Files to look at:

See Also

Does this example address your development requirements/objectives?

(you will be redirected to DevExpress.com to submit your response)

Example Code

TextEditPasswordStrengthBar/Form1.cs(vb)
C#
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace TextEditPasswordStrengthBar { public partial class Form1 : Form { public Form1() { InitializeComponent(); } void textEditPwdStrength_Leave(object sender, EventArgs e) { TextEditPwdStrength te = sender as TextEditPwdStrength; te.Properties.PasswordChar = '*'; } void textEditPwdStrength_Enter(object sender, EventArgs e) { TextEditPwdStrength te = sender as TextEditPwdStrength; te.Properties.PasswordChar = '\0'; } } }
TextEditPasswordStrengthBar/TextEditPwdStrength/RepositoryItemTextEditPwdStrength.cs(vb)
C#
using System; using System.Collections.Generic; using System.Linq; using System.Text; using DevExpress.XtraEditors.Repository; using DevExpress.XtraEditors.Registrator; using DevExpress.XtraEditors.ViewInfo; using DevExpress.XtraEditors.Drawing; using DevExpress.XtraEditors.Controls; namespace TextEditPasswordStrengthBar { //The attribute that points to the registration method [UserRepositoryItem("RegisterTextEditPwdStrength")] class RepositoryItemTextEditPwdStrength : RepositoryItemTextEdit { private static readonly object editValueChanging = new object(); // Static constructor should call registration method static RepositoryItemTextEditPwdStrength() { RegisterTextEditPwdStrength(); } public const string TextEditPwdStrengthName = "TextEditPwdStrength"; public override string EditorTypeName { get { return TextEditPwdStrengthName; } } public static void RegisterTextEditPwdStrength() { EditorRegistrationInfo.Default.Editors.Add(new EditorClassInfo( TextEditPwdStrengthName, typeof(TextEditPwdStrength), typeof(RepositoryItemTextEditPwdStrength), typeof(TextEditPwdStrengthViewInfo), new TextEditPwdStrengthPainter(), true)); } } }
TextEditPasswordStrengthBar/TextEditPwdStrength/TextEditPwdStrength.cs
C#
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.ComponentModel; using DevExpress.XtraEditors; namespace TextEditPasswordStrengthBar { class TextEditPwdStrength : TextEdit { static TextEditPwdStrength() { RepositoryItemTextEditPwdStrength.RegisterTextEditPwdStrength(); } public TextEditPwdStrength() : base() { } public override string EditorTypeName { get { return RepositoryItemTextEditPwdStrength.TextEditPwdStrengthName; } } [DesignerSerializationVisibility(DesignerSerializationVisibility.Content)] public new RepositoryItemTextEditPwdStrength Properties { get { return base.Properties as RepositoryItemTextEditPwdStrength; } } protected override void OnEditValueChanged() { this.RefreshVisualLayout(); base.OnEditValueChanged(); } } }
TextEditPasswordStrengthBar/TextEditPwdStrength/TextEditPwdStrengthViewInfo.cs(vb)
C#
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Drawing; using DevExpress.XtraEditors.ViewInfo; using DevExpress.XtraEditors.Repository; namespace TextEditPasswordStrengthBar { class TextEditPwdStrengthViewInfo : TextEditViewInfo { public TextEditPwdStrengthViewInfo(RepositoryItem item) : base(item) { } public RepositoryItemTextEditPwdStrength RepositoryItem { get { return this.Item as RepositoryItemTextEditPwdStrength; } } protected override System.Drawing.Rectangle CalcMaskBoxRect(System.Drawing.Rectangle content, ref Rectangle contextImageBounds) { Rectangle r = base.CalcMaskBoxRect(content, ref contextImageBounds); r.Height -= 1; r.Y = 1; return r; } } }
TextEditPasswordStrengthBar/TextEditPwdStrength/TextEditPwdStrengthPainter.cs(vb)
C#
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Drawing; using System.Windows.Forms; using System.Text.RegularExpressions; using DevExpress.XtraEditors.Drawing; using DevExpress.XtraEditors.ViewInfo; namespace TextEditPasswordStrengthBar { class TextEditPwdStrengthPainter : TextEditPainter { public TextEditPwdStrengthPainter() : base() { } protected override void DrawContent(ControlGraphicsInfoArgs info) { base.DrawContent(info); this.DrawLine(info); } void DrawLine(ControlGraphicsInfoArgs info) { TextEditViewInfo vi = info.ViewInfo as TextEditViewInfo; Rectangle r = vi.ClientRect; r.Height = 3; r.Y = vi.ClientRect.Height - r.Height; Brush brush = Brushes.Green; switch (this.GetPasswordStrength(vi.EditValue, vi.ClientRect)) { case 0: if (vi.EditValue == null || vi.EditValue.ToString().Length == 0) r.Width = 0; else r.Width = r.Width / 3; brush = Brushes.Red; break; case 1: r.Width = r.Width * 2 / 3; brush = Brushes.Orange; break; } info.Paint.FillRectangle(info.Graphics, brush, r); } int GetPasswordStrength(object pwd, Rectangle contentRectangle) { int passwordStrength = 0, passwordPoints = 0; if (pwd == null) return passwordStrength; string password = pwd.ToString(); // Simple algorithm of password strength calculation Regex rx; // If password is longer than 6 symbols than add 1 point if (password.Length > 6) passwordPoints++; // If password has both lower and upper case characters than add 1 point rx = new Regex(@"(?=.*[a-z])(?=.*[A-Z])"); if (rx.Match(password).Success) passwordPoints++; // Add 1 point if password contains at least one digit rx = new Regex(@"[0-9]"); if (rx.Match(password).Success) passwordPoints++; // Add 1 point in case if password contains at least one special char rx = new Regex(@"\~|\@|\#|\$|\%|\^|\&|\*|\:|\;"); if (rx.Match(password).Success) passwordPoints++; // Add 1 point if password is longer than 12 symbols if (password.Length > 12) passwordPoints++; if (passwordPoints > 3) passwordStrength = 2; else if (passwordPoints >= 2 && passwordPoints <= 3) passwordStrength = 1; return passwordStrength; } } }

Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.