Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个库,用于在 Windows 窗体上进行一些出色的转换,它具有在转换完成时触发事件的功能,但我不知道如何使用它。
http://code.google.com/p/dot-net-transitions/wiki/CodingWithTransitions#Using_the_TransitionCompletedEvent
有图书馆
这是我需要处理的事件
过渡完成事件
如果有人可以帮助我了解如何使用此事件,那就太好了!
您注册一个方法来处理事件。
transition.TransitionCompletedEvent += theHandlerFunction;
处理函数应具有以下签名:
private void theHandlerFunction(object sender, Args args)