This gist has been expanded to a full project repository.
Please go to: https://github.com/leekelleher/umbraco-package-ideas
| fn closeIcon s e = s.dispose() | |
| fn balloonClicked s e = shelllaunch @"c:\windows\" "" | |
| a = dotnetobject "notifyicon" | |
| a.visible = true | |
| a.icon = (dotnetclass "system.drawing.systemIcons").information | |
| dotnet.addEventHandler a "BalloonTipClosed" closeIcon | |
| dotnet.addEventHandler a "BalloonTipClicked" balloonClicked | |
| a.showballoontip 1000 "test" "test2" (dotnetclass "tooltipicon").info |
This gist has been expanded to a full project repository.
Please go to: https://github.com/leekelleher/umbraco-package-ideas
| /* | |
| * This work is free. You can redistribute it and/or modify it under the | |
| * terms of the Do What The Fuck You Want To Public License, Version 2, | |
| * as published by Sam Hocevar. See the COPYING file for more details. | |
| */ | |
| /* | |
| * Easing Functions - inspired from http://gizma.com/easing/ | |
| * only considering the t value for the range [0, 1] => [0, 1] | |
| */ | |
| EasingFunctions = { |