Message 1 of 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
HI, I have to try 10 ctrl+z.
I want a rollback with one ctrl+z.
Will it be possible?
public ExternalEvent m_ExEvent { get; set; }
public ExternalEvent m_ExEvent2 { get; set; }
public ExternalEvent m_ExEvent3 { get; set; }
public ExternalEvent m_ExEvent4 { get; set; }
public ExternalEvent m_ExEvent5 { get; set; }
public ExternalEvent m_ExEvent6 { get; set; }
private void Button_Click(object sender, RoutedEventArgs e)
{
m_ExEvent.Raise();
m_ExEvent2.Raise();
m_ExEvent3.Raise();
m_ExEvent5.Raise();
m_ExEvent2.Raise();
m_ExEvent4.Raise();
m_ExEvent3.Raise();
m_ExEvent5.Raise();
m_ExEvent2.Raise();
m_ExEvent6.Raise();
}
Solved! Go to Solution.