Message 1 of 6
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I subscribe to the OnClick event of the BalloonTip. But when I click on the BalloonTip, the event handler method is not being called. What am I missing here?
_balloonTip = _inventorApplication.UserInterfaceManager.BalloonTips.Add
(
InternalName: "BalloonTip",
Title: "My balloon tip",
Message: "This is a message"
);
_balloonTip.Enabled = true;
_balloonTip.Interval = 15;
_balloonTip.OnClick += BalloonTipOnClick;
Solved! Go to Solution.