本文整理汇总了C#中Dynamo.Core.UndoRedoRecorder.RecordModificationForUndo方法的典型用法代码示例。如果您正苦于以下问题:C# UndoRedoRecorder.RecordModificationForUndo方法的具体用法?C# UndoRedoRecorder.RecordModificationForUndo怎么用?C# UndoRedoRecorder.RecordModificationForUndo使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Dynamo.Core.UndoRedoRecorder
的用法示例。
在下文中一共展示了UndoRedoRecorder.RecordModificationForUndo方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: RecordModelsForUndo
internal static void RecordModelsForUndo(Dictionary<ModelBase, UndoRedoRecorder.UserAction> models, UndoRedoRecorder recorder)
{
if (null == recorder)
return;
if (!ShouldProceedWithRecording(models))
return;
using (recorder.BeginActionGroup())
{
foreach (var modelPair in models)
{
switch (modelPair.Value)
{
case UndoRedoRecorder.UserAction.Creation:
recorder.RecordCreationForUndo(modelPair.Key);
break;
case UndoRedoRecorder.UserAction.Deletion:
recorder.RecordDeletionForUndo(modelPair.Key);
break;
case UndoRedoRecorder.UserAction.Modification:
recorder.RecordModificationForUndo(modelPair.Key);
break;
}
}
}
}
示例2: RecordModelsForModification
/// <summary>
/// TODO(Ben): This method is exposed this way for external codes (e.g.
/// the DragCanvas) to record models before they are modified. This is
/// by no means ideal. The ideal case of course is for ALL codes that
/// end up modifying models to be folded back into WorkspaceViewModel in
/// the form of commands. These commands then internally record those
/// affected models before updating them. We need this method to be gone
/// sooner than later.
/// </summary>
/// <param name="models">The models to be recorded for undo.</param>
/// <param name="recorder"></param>
internal static void RecordModelsForModification(List<ModelBase> models, UndoRedoRecorder recorder)
{
if (null == recorder)
return;
if (!ShouldProceedWithRecording(models))
return;
using (recorder.BeginActionGroup())
{
foreach (var model in models)
recorder.RecordModificationForUndo(model);
}
}