File tree Expand file tree Collapse file tree 1 file changed +16
-16
lines changed Expand file tree Collapse file tree 1 file changed +16
-16
lines changed Original file line number Diff line number Diff line change @@ -82,24 +82,24 @@ The [BeginSave](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.
82
82
{% tabs %}
83
83
{% highlight c# %}
84
84
85
- public MainWindow()
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");
92
- }
85
+ public MainWindow()
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");
92
+ }
93
93
94
- #region Events
95
- private void PdfViewer_BeginSave(object sender, BeginSaveEventArgs e)
96
- {
97
- //Insert your code here
94
+ #region Events
95
+ private void PdfViewer_BeginSave(object sender, BeginSaveEventArgs e)
96
+ {
97
+ //Insert your code here
98
98
99
- //Cancel the save operation
100
- e.Cancel = true;
101
- }
102
- #endregion
99
+ //Cancel the save operation
100
+ e.Cancel = true;
101
+ }
102
+ #endregion
103
103
104
104
{% endhighlight %}
105
105
{% endtabs %}
You can’t perform that action at this time.
0 commit comments