File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -84,20 +84,20 @@ The [BeginSave](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.
84
84
85
85
public MainWindow()
86
86
{
87
- InitializeComponent();
88
- // Wire the ` BeginSave ` event.
89
- PdfViewer.BeginSave += PdfViewer_BeginSave;
90
- // Load the PDF file
91
- PdfViewer.Load("../../Data/Windows Store Apps Succinctly.pdf");
87
+ InitializeComponent();
88
+ // Wire the ` BeginSave ` event.
89
+ PdfViewer.BeginSave += PdfViewer_BeginSave;
90
+ // Load the PDF file
91
+ PdfViewer.Load("../../Data/Windows Store Apps Succinctly.pdf");
92
92
}
93
-
93
+
94
94
#region Events
95
95
private void PdfViewer_BeginSave(object sender, BeginSaveEventArgs e)
96
96
{
97
- // Insert your code here
97
+ // Insert your code here
98
98
99
- // Cancel the save operation
100
- e.Cancel = true;
99
+ // Cancel the save operation
100
+ e.Cancel = true;
101
101
}
102
102
#endregion
103
103
You can’t perform that action at this time.
0 commit comments