Resharper Balloon Notification Follow
Hey,
is it possible to create such balloon notifications e.g [1] with the resharper API?
[1] http://www.codeproject.com/Articles/36468/WPF-NotifyIcon
Please sign in to leave a comment.
Hey,
is it possible to create such balloon notifications e.g [1] with the resharper API?
[1] http://www.codeproject.com/Articles/36468/WPF-NotifyIcon
Please sign in to leave a comment.
If you're looking to display a balloon notification in the system tray, by the clock, you can just use the standard Windows APIs to do that. If you want to display balloon like notifications for the source editor, ReSharper doesn't provide that functionality directly, although it does have support for creating tooltips - check out ToolTipInfo and do a find usages on it to see how it's being used. Any other form of tooltip or balloon notification will have to be drawn by your own code.