private void spinEdit1_EditValueChanging(object sender, DevExpress.XtraEditors.Controls.ChangingEventArgs e)
{
if (e.NewValue != null && e.NewValue.ToString().StartsWith("-"))
{
e.Cancel = true;
}
}
{
if (e.NewValue != null && e.NewValue.ToString().StartsWith("-"))
{
e.Cancel = true;
}
}