Trying to do validation for TextBox . The problem is that a message with information for the user climbs to the next control. Is it possible to somehow make it displayed not at the bottom, but at the top, and also change its color?
public class LoginVm : VmBase { [Required] [StringLength(32, MinimumLength = 5)] public string Email { get; set; } } Xaml
<TextBox Grid.Column="1" FontFamily="Comic Sans MC" Text="{Binding Email, UpdateSourceTrigger=PropertyChanged,ValidatesOnDataErrors=True}" FontSize="25"> <TextBox.ToolTip> <TextBlock FontSize="20">Email</TextBlock> </TextBox.ToolTip> 