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:
- Form1.cs (VB: Form1.vb)
- RepositoryItemTextEditPwdStrength.cs (VB: RepositoryItemTextEditPwdStrength.vb)
- TextEditPwdStrength.cs (VB: TextEditPwdStrengthViewInfo.vb)
- TextEditPwdStrengthPainter.cs (VB: TextEditPwdStrengthPainter.vb)
- TextEditPwdStrengthViewInfo.cs (VB: TextEditPwdStrengthViewInfo.vb)
See Also
Does this example address your development requirements/objectives?
(you will be redirected to DevExpress.com to submit your response)
Example Code
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';
}
}
}
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));
}
}
}
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();
}
}
}
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;
}
}
}
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;
}
}
}