from MSDN:
The minimum and maximum timeout values ββare activated and usually are 10 and 30 seconds, however this may vary depending on the operating system. Timeout values ββthat are too large or too small are adjusted to the corresponding minimum or maximum value. In addition, if the user does not seem to be using a computer (no keyboard or mouse events occur), then the system does not calculate this timeout time.
It seems that it is not possible to override the maximum timeout (eventually configured by Windows and limited to 30 seconds, even if you specify a longer one) so that the notification disappears, will not wait until you click on it after 2 minutes.
if you want to truly have different behavior, you should probably use something else, other objects, or simulate something similar to forms where you have full control over the behavior and you can show, hide and close, as you want from your code.
source share