本文整理汇总了C#中System.Windows.Forms.BindingSource.CancelEdit方法的典型用法代码示例。如果您正苦于以下问题:C# BindingSource.CancelEdit方法的具体用法?C# BindingSource.CancelEdit怎么用?C# BindingSource.CancelEdit使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Windows.Forms.BindingSource
的用法示例。
在下文中一共展示了BindingSource.CancelEdit方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GenericEditEvent
public bool GenericEditEvent(IEditable _geditForm, BindingSource actualEvents, bool isNew = false)
{
ulog = UserLog.Instance;
try
{
DataRowView eventDataRowView;
eventDataRowView = (isNew == false) ? (DataRowView)actualEvents.Current : (DataRowView)actualEvents.AddNew();
if (eventDataRowView == null)
throw new Exception("Нет записей для редактирования.");
using (IEditable editForm = _geditForm)
{
if (editForm.ShowDialog() == System.Windows.Forms.DialogResult.OK)
{
actualEvents.EndEdit();
DateTime dt;
string _edit = (isNew == false) ? "Изменено " : "Добавлено ";
if (eventDataRowView.Row.Table.Columns.Contains("ActionDate"))
{
dt = Convert.ToDateTime(eventDataRowView["ActionDate"]);
_edit += "мероприятие на " + dt.ToShortDateString() + ".";
}
else if (eventDataRowView.Row.Table.Columns.Contains("DayID"))
{
_edit += "календарное мероприятие. День недели: " + DatabaseConstant.LocalDayOfWeek[Convert.ToInt32(eventDataRowView["DayID"]) - 1] + ".";
}
ulog.Message(_edit, UserLogMessageLevel.Warning);
return true;
}
else
{
actualEvents.CancelEdit();
return false;
}
}
}
catch (Exception ex)
{
ulog.Message(ex.Message, UserLogMessageLevel.Error);
return false;
}
}
示例2: GenericEditAction
public bool GenericEditAction(IEditable _geditForm, BindingSource actualActions, BindingSource groupHeadersList, bool isNew = false)
{
ulog = UserLog.Instance;
try
{
DataRowView actionDataRowView;
actionDataRowView = (isNew == false) ? (DataRowView)actualActions.Current : (DataRowView)actualActions.AddNew();
if (actionDataRowView == null)
throw new Exception("Нет записей для редактирования.");
using (IEditable editActForm = _geditForm)
{//открываем форму и сохраняем изменения
if (editActForm.ShowDialog() == DialogResult.OK)
{
actualActions.EndEdit();
return true;
}
else
{
actualActions.CancelEdit();
return false;
}
}
}
catch (Exception ex)
{
actualActions.CancelEdit();
ulog.Message(ex.Message, UserLogMessageLevel.Error);
return false;
}
finally
{
groupHeadersList.RemoveFilter();
groupHeadersList.Filter = "[InList] = 1";
}
}
示例3: RevisarOrigen
// Chequeo que no se puedan modificar por ser de otro abm.
public bool RevisarOrigen(string identidad, BindingSource source)
{
if (identidad == "0")
{
MessageBox.Show("El registro solo se puede modificar desde su origen");
source.CancelEdit();
return false;
}
return true;
}