Skip to content

Commit 526d53a

Browse files
903535 - Feed back Changes
1 parent 231e1e8 commit 526d53a

File tree

128 files changed

+138
-581
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

128 files changed

+138
-581
lines changed

Annotations/AddAnnotation/AddAnnotation.csproj

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<OutputType>WinExe</OutputType>
99
<RootNamespace>WpfPDFViewer</RootNamespace>
1010
<AssemblyName>WpfPDFViewer</AssemblyName>
11-
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
11+
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
1212
<FileAlignment>512</FileAlignment>
1313
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
1414
<WarningLevel>4</WarningLevel>
@@ -36,11 +36,7 @@
3636
<WarningLevel>4</WarningLevel>
3737
</PropertyGroup>
3838
<ItemGroup>
39-
<packageReference Include="Syncfusion.Compression.Base" version="*"/>
40-
<packageReference Include="Syncfusion.Licensing" version="*"/>
41-
<packageReference Include="Syncfusion.Pdf.Base" version="*"/>
4239
<packageReference Include="Syncfusion.PdfViewer.WPF" version="*"/>
43-
<packageReference Include="Syncfusion.Shared.WPF" version="*"/>
4440
<Reference Include="System" />
4541
<Reference Include="System.Data" />
4642
<Reference Include="System.Drawing" />

Annotations/AddAnnotation/App.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<configuration>
33
<startup>
4-
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
4+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8" />
55
</startup>
66
<runtime>
77

Annotations/AddAnnotation/Data/F#.pdf

205 KB
Binary file not shown.

Annotations/AddAnnotation/MainWindow.xaml.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
using System.Collections.Generic;
55
using System.Drawing;
66
using System.IO;
7-
using System.Runtime.InteropServices;
87
using System.Windows;
98

109
namespace WpfPDFViewer
@@ -19,9 +18,9 @@ public MainWindow()
1918
InitializeComponent();
2019
//Loads the document in PDF Viewer
2120
#if NETFRAMEWORK
22-
pdfViewer.Load("../../Data/F Sharp Succinctly.pdf");
21+
pdfViewer.Load("../../Data/F#.pdf");
2322
#else
24-
pdfViewer.Load("../../../Data/F Sharp Succinctly.pdf");
23+
pdfViewer.Load("../../../Data/F#.pdf");
2524
#endif
2625
}
2726

Annotations/AddAnnotation/Properties/AssemblyInfo.cs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,13 @@
88
// set of attributes. Change these attribute values to modify the information
99
// associated with an assembly.
1010

11+
[assembly: AssemblyDescription("")]
12+
[assembly: AssemblyConfiguration("")]
13+
[assembly: AssemblyCompany("")]
14+
[assembly: AssemblyProduct("WpfPDFViewer")]
15+
[assembly: AssemblyCopyright("Copyright © 2021")]
16+
[assembly: AssemblyTrademark("")]
17+
[assembly: AssemblyCulture("")]
1118

1219
// Setting ComVisible to false makes the types in this assembly not visible
1320
// to COM components. If you need to access a type in this assembly from
Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="Syncfusion.Compression.Base" version="*" targetFramework="net472" />
4-
<package id="Syncfusion.Licensing" version="*" targetFramework="net472" />
5-
<package id="Syncfusion.Pdf.Wpf" version="*" targetFramework="net472" />
6-
<package id="Syncfusion.PdfViewer.WPF" version="*" targetFramework="net472" />
7-
<package id="Syncfusion.Shared.WPF" version="*" targetFramework="net472" />
3+
4+
<package id="Syncfusion.PdfViewer.WPF" version="*" targetFramework="net48" />
85
</packages>

Annotations/AddCustomStampInCustomizedButton/AddCustomStampInCustomizedButton.csproj

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,7 @@
3838
<WarningLevel>4</WarningLevel>
3939
</PropertyGroup>
4040
<ItemGroup>
41-
<packageReference Include="Syncfusion.Compression.Base" version="*" />
42-
<packageReference Include="Syncfusion.Licensing" version="*" />
43-
<packageReference Include="Syncfusion.Pdf.Base" version="*" />
44-
<packageReference Include="Syncfusion.PdfToImageConverter.Base" version="*" />
4541
<packageReference Include="Syncfusion.PdfViewer.WPF" version="*" />
46-
<packageReference Include="Syncfusion.Shared.WPF" version="*" />
4742
<Reference Include="System" />
4843
<Reference Include="System.Data" />
4944
<Reference Include="System.Drawing" />

Annotations/AddCustomStampInCustomizedButton/MainWindow.xaml.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22
using Syncfusion.Windows.PdfViewer;
33
using System;
44
using System.Collections.Generic;
5-
using System.IO;
65
using System.Linq;
7-
using System.Runtime.InteropServices;
86
using System.Text;
97
using System.Threading.Tasks;
108
using System.Windows;
Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="Syncfusion.Compression.Base" version="*" targetFramework="net47" />
4-
<package id="Syncfusion.Licensing" version="*" targetFramework="net47" />
5-
<package id="Syncfusion.Pdf.Wpf" version="*" targetFramework="net47" />
6-
<package id="Syncfusion.PdfToImageConverter.WPF" version="*" targetFramework="net47" />
7-
<package id="Syncfusion.PdfViewer.WPF" version="*" targetFramework="net47" />
8-
<package id="Syncfusion.Shared.WPF" version="*" targetFramework="net47" />
3+
<package id="Syncfusion.PdfViewer.WPF" version="*" targetFramework="net48" />
94
</packages>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8" ?>
22
<configuration>
33
<startup>
4-
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.2" />
4+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8" />
55
</startup>
66
</configuration>

0 commit comments

Comments
 (0)