2X faster development
The ultimate WinForms UI toolkit to boost your development speed.
PDF viewer WF does not support adding or editing the annotations in PDF documents. As a workaround, the PDF viewer WPF control can be hosted in WF application that supports text markup and shape annotations in the PDF document. Refer to the following code sample. C# // Declare the ElementHost variable ElementHost elementHost = null; // Wire up the Load event this.Load += new System.EventHandler(this.Form1_Load); private void Form1_Load(object sender, System.EventArgs e) { // Create the ElementHost control elementHost = new ElementHost(); elementHost.AutoSize = true; elementHost.Size = panel1.Size; elementHost.Dock = DockStyle.Fill; panel1.Controls.Add(elementHost); PdfViewer wordEditor = new PdfViewer(); elementHost.Child = wordEditor; elementHost.Margin = new Padding(0, 0, 0, 0); elementHost.Region = new Region(); elementHost.BackColor = System.Drawing.Color.White; } Find the sample for your reference from the following link: https://www.syncfusion.com/downloads/support/directtrac/general/ze/SampleWF920548313 |
2X faster development
The ultimate WinForms UI toolkit to boost your development speed.
This page will automatically be redirected to the sign-in page in 10 seconds.