Skip to main content
A newer version of this page is available. .

PopupMenuShowingEventArgs.Actions Property

Provides access to the collection of actions.

Namespace: DevExpress.Xpf.PdfViewer

Assembly: DevExpress.Xpf.PdfViewer.v19.2.dll

Declaration

public IList<IControllerAction> Actions { get; }

Property Value

Type Description
IList<IControllerAction>

A dynamic data collection of objects implementing the IControllerAction interface.

Example

This example shows how to remove items and add the “Save As…” item to the page content pop-up menu:

<Window
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        xmlns:local="clr-namespace:PopupMenuShowing"
        xmlns:dxpdf="http://schemas.devexpress.com/winfx/2008/xaml/pdf" x:Class="PopupMenuShowing.MainWindow"
        mc:Ignorable="d"
        Title="MainWindow" Height="350" Width="525">
    <Grid>
        <dxpdf:PdfViewerControl x:Name="viewer" PopupMenuShowing="Viewer_PopupMenuShowing"/>
    </Grid>
</Window>
See Also