I am trying to show a BalloonTip
in my application, and am reading the documentation from MSDN but the only methods that display the BalloonTip
, use timeout
(specifically ShowBalloonTip(Int32)
and ShowBalloonTip(Int32, String, String, ToolTipIcon)
), which is a deprecated parameter as of Windows Vista. What is the proper way to display a BalloonTip
that doesn't contain a deprecated parameter for Windows 7 and above?
Asked
Active
Viewed 511 times
1

Cup of Java
- 1,769
- 2
- 21
- 34
-
I believe `BalloonTips` were replaced by [`ToastNotifications`](https://learn.microsoft.com/en-us/uwp/api/windows.ui.notifications.toastnotification). – Mr Awesome8 Jul 28 '17 at 18:57
-
@MrAwesome8 So is Windows 7 stuck in the state of not having `ToastNotifications` but having deprecated `BalloonTips`? – Cup of Java Jul 28 '17 at 19:12
-
I'm not sure for Windows 7. I've only used `ToastNotifications` with Windows 10. – Mr Awesome8 Jul 28 '17 at 19:17
-
`ToastNotification` were introduced in Windows 8, so I'm not sure where Windows 7 falls, thanks for the input though – Cup of Java Jul 28 '17 at 19:39