Back to Devexpress

UpdateAction.PropertyName Property

wpf-devexpress-dot-xpf-dot-bars-dot-updateaction-eeceb343.md

latest3.4 KB
Original Source

UpdateAction.PropertyName Property

Gets or sets a name of the property whose value should be updated. This is a dependency property.

Namespace : DevExpress.Xpf.Bars

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

NuGet Package : DevExpress.Wpf.Core

Declaration

csharp
public string PropertyName { get; set; }
vb
Public Property PropertyName As String

Property Value

TypeDescription
String

A name of the property whose value should be updated.

|

The following code snippets (auto-collected from DevExpress Examples) contain references to the PropertyName property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

wpf-scheduler-customize-context-menus/CS/DXScheduler_PopUpMenuCustomization/MainWindow.xaml#L69

xml
<dxb:UpdateAction ElementName="{x:Static Member=dxsch:DefaultBarItemNames.ContextMenu_Items_TimeRuler_Actions_NewAllDayEvent}"
                  PropertyName="IsVisible"
                  Value="False"/>

wpf-scheduler-customize-built-in-ribbon-control/CS/SchedulerRibbonExample/MainWindow.xaml#L27

xml
<dxb:UpdateAction ElementName="{x:Static dxsch:DefaultBarItemNames.Groups_Home_Appointment }"
                  PropertyName="IsEnabled"
                  Value="False"/>

wpf-spreadsheet-customize-context-menu/CS/WpfSpreadsheetMenuCustomization/MainWindow.xaml#L32

xml
<dxb:UpdateAction ElementName="{x:Static dxsps:DefaultBarItemNames.PopupMenuItem_Copy}"
                  PropertyName="Content"
                  Value="Copy Cells" />

wpf-rich-text-editor-customize-context-menu/CS/WpfRichEditorMenuCustomization/MainWindow.xaml#L31

xml
<dxb:UpdateAction ElementName="{x:Static dxre:DefaultBarItemNames.PopupMenuItem_NewComment}"
                  PropertyName="Content"
                  Value="Add Comment"/>

See Also

UpdateAction Class

UpdateAction Members

DevExpress.Xpf.Bars Namespace