public string nome
{
get { return (string)GetValue(nomeProperty); &gcub;
set { SetValue(nomeProperty, value); &gcub;
&gcub;
public static readonly DependencyProperty nomeProperty = DependencyProperty.Register("nome",
typeof(string),
typeof(ValidationControl));
|