Skip to main content

NotificationService.RemoveApplicationShortcutOnUnloaded Property

Gets or sets whether the application shortcut should be removed from the Windows 10 Start Screen. This property works only if the application shortcut is created by the service.

Namespace: DevExpress.Mvvm.UI

Assembly: DevExpress.Xpf.Core.v23.2.dll

NuGet Package: DevExpress.Wpf.Core

Declaration

public bool RemoveApplicationShortcutOnUnloaded { get; set; }

Property Value

Type Description
Boolean

true, if an application shortcut should be removed when the service is detached, or the object is unloaded, or a service-host window is closed; otherwise, false.

Remarks

You can use the RemoveApplicationShortcutOnUnloaded only if your service is specified in an application window or module. When the RemoveApplicationShortcutOnUnloaded is false, the application shortcut is removed when when the application dispatcher shutdown is finished.

Refer to the CreateApplicationShortcut property for more information on how to create an application shortcut within the MVVM service.

See Also