Esempio n. 1
0
 /// <summary> Indicates if there is an action sequence on the stack that can be redone. </summary>
 public bool CanRedo()
 {
     return(m_redoBundles.Count > 0 && !m_uowService.HasConflictingRedoChanges(m_redoBundles.Peek()) &&
            m_redoBundles.Peek().CanRedo((ICmObjectRepository)m_uowService.ObjectRepository));
 }