BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
<syncfusion:SfDataGrid x:Name="grid"
AutoGenerateColumns="False"
GridValidationMode="InView"
ItemsSource="{Binding UserDetails}"> |
[Range(10000, 30000, ErrorMessage = "The “Salary” field can range from 10000 through 30000.")]
public int Salary
{
get { return salary; }
set { salary = value; OnPropertyChanged("Salary"); }
} |