如何在C#中使用自定义事件

时间:2012-12-20 03:33:01

标签: c# events animation dll

我有一个用于在Windows窗体上进行一些很好的转换的库,它有一个在转换完成时触发事件的功能,但我不知道如何使用它。

http://code.google.com/p/dot-net-transitions/wiki/CodingWithTransitions#Using_the_TransitionCompletedEvent

有图书馆

这是我需要处理的事件

TransitionCompletedEvent

如果有人能帮助我理解如何使用这个很棒的活动!

1 个答案:

答案 0 :(得分:3)

您注册了一个处理事件的方法。

transition.TransitionCompletedEvent += theHandlerFunction;

处理程序函数应具有以下签名:

private void theHandlerFunction(object sender, Args args)