Shows the current notification.
            
 
    Namespace: 
   Eto.Forms
    Assembly:
   Eto (in Eto.dll) Version: 2.5.3-dev
Syntaxpublic void Show(
	TrayIndicator indicator = null
)
Public Sub Show ( 
	Optional indicator As TrayIndicator = Nothing
)
member Show : 
        ?indicator : TrayIndicator 
(* Defaults:
        let _indicator = defaultArg indicator null
*)
-> unit 
Parameters
- indicator (Optional)
 - Type: Eto.FormsTrayIndicator
Indicator to use to show the notification. 
Remarks
            On some platforms like Gtk and Windows 10 the indicator
            is not needed, while on the others like Windows 7 it's required.
            
            You can find out if the indicator is needed by
            looking at 
RequiresTrayIndicator property.
            
See Also