Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

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.v24.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