PdfViewer.CreateRibbon() Method
In This Article
Creates a Ribbon tab with actions specific to the PdfViewer control.
Namespace: DevExpress.XtraPdfViewer
Assembly: DevExpress.XtraPdfViewer.v24.2.dll
NuGet Package: DevExpress.Win.PdfViewer
#Declaration
#Remarks
The code sample below creates a ribbon UI for the PDF Viewer:
public Form1()
{
InitializeComponent();
this.Controls.Add(pdfViewer);
pdfViewer.CreateRibbon();
}
See Also