wpf-devexpress-dot-xpf-dot-bars-dot-updateaction.md
Gets or sets a new value of an updated property. This is a dependency property.
Namespace : DevExpress.Xpf.Bars
Assembly : DevExpress.Xpf.Core.v25.2.dll
NuGet Package : DevExpress.Wpf.Core
public object Value { get; set; }
Public Property Value As Object
| Type | Description |
|---|---|
| Object |
A new value of an updated property.
|
The following code snippets (auto-collected from DevExpress Examples) contain references to the Value 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#L70
PropertyName="IsVisible"
Value="False"/>
<dxb:UpdateAction ElementName="{x:Static Member=dxsch:DefaultBarItemNames.ContextMenu_Items_TimeRuler_Actions_NewRecurringEvent}"
wpf-scheduler-customize-built-in-ribbon-control/CS/SchedulerRibbonExample/MainWindow.xaml#L28
PropertyName="IsEnabled"
Value="False"/>
<!--Hide the Group by Date item on the Home tab, in the Group By group.-->
reporting-wpf-documentpreviewcontrol-customize-toolbar/CS/MainWindow.xaml#L24
Property="{x:Static dxb:BarItem.LargeGlyphProperty}"
Value="{dxp:PrintingResourceImage ResourceName='Images/BarItems/Print.svg'}"/>
wpf-spreadsheet-customize-context-menu/CS/WpfSpreadsheetMenuCustomization/MainWindow.xaml#L33
PropertyName="Content"
Value="Copy Cells" />
<!--Remove the Insert Comment item from the menu.-->
wpf-rich-text-editor-customize-context-menu/CS/WpfRichEditorMenuCustomization/MainWindow.xaml#L32
PropertyName="Content"
Value="Add Comment"/>
<!--Remove the "Increase Indent" item from the menu.-->
See Also