I want to create a mask in a textbox (RadMaskedTextBox) that is showing the last 4 characters. But what I see is the first 4 characters. What do I wrong?
You can achieve similar behavior with any textbox (or maskedTextBox with empty mask) using the _Leave event.
private void maskedTextBox1_Leave(object sender, EventArgs e)
{
var text = maskedTextBox1.Text;
maskedTextBox1.Text = new string('*', text.Length - 4) + text.Substring(text.Length - 4);
}