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>

Annotations/Arrow/ArrowDemo/ArrowDemo.csproj

Lines changed: 3 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<OutputType>WinExe</OutputType>
99
<RootNamespace>FrameworkSample</RootNamespace>
1010
<AssemblyName>FrameworkSample</AssemblyName>
11-
<TargetFrameworkVersion>v4.6.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>
@@ -37,12 +37,7 @@
3737
<WarningLevel>4</WarningLevel>
3838
</PropertyGroup>
3939
<ItemGroup>
40-
<packageReference Include="Syncfusion.Compression.Base" version="*"/>
41-
<packageReference Include="Syncfusion.Licensing" version="*"/>
42-
<packageReference Include="Syncfusion.Pdf.Base" version="*"/>
43-
<packageReference Include="Syncfusion.PdfToImageConverter.Base" version="*"/>
4440
<packageReference Include="Syncfusion.PdfViewer.WPF" version="*"/>
45-
<packageReference Include="Syncfusion.Shared.WPF" version="*"/>
4641
<Reference Include="System" />
4742
<Reference Include="System.Data" />
4843
<Reference Include="System.Xml" />
@@ -77,29 +72,11 @@
7772
</Compile>
7873
</ItemGroup>
7974
<ItemGroup>
80-
<Compile Include="Properties\AssemblyInfo.cs">
75+
<Compile Include="AssemblyInfo.cs">
8176
<SubType>Code</SubType>
8277
</Compile>
83-
<Compile Include="Properties\Resources.Designer.cs">
84-
<AutoGen>True</AutoGen>
85-
<DesignTime>True</DesignTime>
86-
<DependentUpon>Resources.resx</DependentUpon>
87-
</Compile>
88-
<Compile Include="Properties\Settings.Designer.cs">
89-
<AutoGen>True</AutoGen>
90-
<DependentUpon>Settings.settings</DependentUpon>
91-
<DesignTimeSharedInput>True</DesignTimeSharedInput>
92-
</Compile>
93-
<EmbeddedResource Include="Properties\Resources.resx">
94-
<Generator>ResXFileCodeGenerator</Generator>
95-
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
96-
</EmbeddedResource>
9778
<None Include="packages.config" />
98-
<None Include="Properties\Settings.settings">
99-
<Generator>SettingsSingleFileGenerator</Generator>
100-
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
101-
</None>
102-
</ItemGroup>
79+
</ItemGroup>
10380
<ItemGroup>
10481
<None Include="App.config" />
10582
</ItemGroup>
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="net462" />
4-
<package id="Syncfusion.Licensing" version="*" targetFramework="net462" />
5-
<package id="Syncfusion.Pdf.Wpf" version="*" targetFramework="net462" />
6-
<package id="Syncfusion.PdfToImageConverter.WPF" version="*" targetFramework="net462" />
7-
<package id="Syncfusion.PdfViewer.WPF" version="*" targetFramework="net462" />
8-
<package id="Syncfusion.Shared.WPF" version="*" targetFramework="net462" />
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>

Annotations/Arrow/LoadArrow/LoadArrow.csproj

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,7 @@
3737
<WarningLevel>4</WarningLevel>
3838
</PropertyGroup>
3939
<ItemGroup>
40-
<packageReference Include="Syncfusion.Compression.Base" version="*"/>
41-
<packageReference Include="Syncfusion.Licensing" version="*"/>
42-
<packageReference Include="Syncfusion.Pdf.Base" version="*"/>
43-
<packageReference Include="Syncfusion.PdfToImageConverter.Base" version="*"/>
4440
<packageReference Include="Syncfusion.PdfViewer.WPF" version="*"/>
45-
<packageReference Include="Syncfusion.Shared.WPF" version="*"/>
4641
<Reference Include="System" />
4742
<Reference Include="System.Data" />
4843
<Reference Include="System.Xml" />
@@ -77,28 +72,7 @@
7772
</Compile>
7873
</ItemGroup>
7974
<ItemGroup>
80-
<Compile Include="Properties\AssemblyInfo.cs">
81-
<SubType>Code</SubType>
82-
</Compile>
83-
<Compile Include="Properties\Resources.Designer.cs">
84-
<AutoGen>True</AutoGen>
85-
<DesignTime>True</DesignTime>
86-
<DependentUpon>Resources.resx</DependentUpon>
87-
</Compile>
88-
<Compile Include="Properties\Settings.Designer.cs">
89-
<AutoGen>True</AutoGen>
90-
<DependentUpon>Settings.settings</DependentUpon>
91-
<DesignTimeSharedInput>True</DesignTimeSharedInput>
92-
</Compile>
93-
<EmbeddedResource Include="Properties\Resources.resx">
94-
<Generator>ResXFileCodeGenerator</Generator>
95-
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
96-
</EmbeddedResource>
9775
<None Include="packages.config" />
98-
<None Include="Properties\Settings.settings">
99-
<Generator>SettingsSingleFileGenerator</Generator>
100-
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
101-
</None>
10276
</ItemGroup>
10377
<ItemGroup>
10478
<None Include="App.config" />
Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="Syncfusion.Compression.Base" version="*" targetFramework="net462" />
4-
<package id="Syncfusion.Licensing" version="*" targetFramework="net462" />
5-
<package id="Syncfusion.Pdf.Wpf" version="*" targetFramework="net462" />
6-
<package id="Syncfusion.PdfToImageConverter.WPF" version="*" targetFramework="net462" />
7-
<package id="Syncfusion.PdfViewer.WPF" version="*" targetFramework="net462" />
8-
<package id="Syncfusion.Shared.WPF" version="*" targetFramework="net462" />
3+
4+
<package id="Syncfusion.PdfViewer.WPF" version="*" targetFramework="net48" />
95
</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>

Annotations/Cloud/CloudSettings/CloudSettings.csproj

Lines changed: 3 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<OutputType>WinExe</OutputType>
99
<RootNamespace>FrameworkSample</RootNamespace>
1010
<AssemblyName>FrameworkSample</AssemblyName>
11-
<TargetFrameworkVersion>v4.6.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>
@@ -37,12 +37,7 @@
3737
<WarningLevel>4</WarningLevel>
3838
</PropertyGroup>
3939
<ItemGroup>
40-
<packageReference Include="Syncfusion.Compression.Base" version="*"/>
41-
<packageReference Include="Syncfusion.Licensing" version="*"/>
42-
<packageReference Include="Syncfusion.Pdf.Base" version="*"/>
43-
<packageReference Include="Syncfusion.PdfToImageConverter.Base" version="*"/>
4440
<packageReference Include="Syncfusion.PdfViewer.WPF" version="*"/>
45-
<packageReference Include="Syncfusion.Shared.WPF" version="*"/>
4641
<Reference Include="System" />
4742
<Reference Include="System.Data" />
4843
<Reference Include="System.Xml" />
@@ -77,28 +72,9 @@
7772
</Compile>
7873
</ItemGroup>
7974
<ItemGroup>
80-
<Compile Include="Properties\AssemblyInfo.cs">
81-
<SubType>Code</SubType>
82-
</Compile>
83-
<Compile Include="Properties\Resources.Designer.cs">
84-
<AutoGen>True</AutoGen>
85-
<DesignTime>True</DesignTime>
86-
<DependentUpon>Resources.resx</DependentUpon>
87-
</Compile>
88-
<Compile Include="Properties\Settings.Designer.cs">
89-
<AutoGen>True</AutoGen>
90-
<DependentUpon>Settings.settings</DependentUpon>
91-
<DesignTimeSharedInput>True</DesignTimeSharedInput>
92-
</Compile>
93-
<EmbeddedResource Include="Properties\Resources.resx">
94-
<Generator>ResXFileCodeGenerator</Generator>
95-
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
96-
</EmbeddedResource>
75+
9776
<None Include="packages.config" />
98-
<None Include="Properties\Settings.settings">
99-
<Generator>SettingsSingleFileGenerator</Generator>
100-
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
101-
</None>
77+
10278
</ItemGroup>
10379
<ItemGroup>
10480
<None Include="App.config" />
Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="Syncfusion.Compression.Base" version="*" targetFramework="net462" />
4-
<package id="Syncfusion.Licensing" version="*" targetFramework="net462" />
5-
<package id="Syncfusion.Pdf.Wpf" version="*" targetFramework="net462" />
6-
<package id="Syncfusion.PdfToImageConverter.WPF" version="*" targetFramework="net462" />
7-
<package id="Syncfusion.PdfViewer.WPF" version="*" targetFramework="net462" />
8-
<package id="Syncfusion.Shared.WPF" version="*" targetFramework="net462" />
3+
4+
<package id="Syncfusion.PdfViewer.WPF" version="*" targetFramework="net48" />
95
</packages>

Annotations/Cloud/LoadCloud/LoadCloud.csproj

Lines changed: 3 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,8 @@
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="*" />
41+
4542
<packageReference Include="Syncfusion.PdfViewer.WPF" version="*" />
46-
<packageReference Include="Syncfusion.Shared.WPF" version="*" />
4743
<Reference Include="System" />
4844
<Reference Include="System.Data" />
4945
<Reference Include="System.Xml" />
@@ -78,28 +74,9 @@
7874
</Compile>
7975
</ItemGroup>
8076
<ItemGroup>
81-
<Compile Include="Properties\AssemblyInfo.cs">
82-
<SubType>Code</SubType>
83-
</Compile>
84-
<Compile Include="Properties\Resources.Designer.cs">
85-
<AutoGen>True</AutoGen>
86-
<DesignTime>True</DesignTime>
87-
<DependentUpon>Resources.resx</DependentUpon>
88-
</Compile>
89-
<Compile Include="Properties\Settings.Designer.cs">
90-
<AutoGen>True</AutoGen>
91-
<DependentUpon>Settings.settings</DependentUpon>
92-
<DesignTimeSharedInput>True</DesignTimeSharedInput>
93-
</Compile>
94-
<EmbeddedResource Include="Properties\Resources.resx">
95-
<Generator>ResXFileCodeGenerator</Generator>
96-
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
97-
</EmbeddedResource>
77+
9878
<None Include="packages.config" />
99-
<None Include="Properties\Settings.settings">
100-
<Generator>SettingsSingleFileGenerator</Generator>
101-
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
102-
</None>
79+
10380
</ItemGroup>
10481
<ItemGroup>
10582
<None Include="App.config" />
Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="Syncfusion.Compression.Base" version="*" targetFramework="net462" />
4-
<package id="Syncfusion.Licensing" version="*" targetFramework="net462" />
5-
<package id="Syncfusion.Pdf.Wpf" version="*" targetFramework="net462" />
6-
<package id="Syncfusion.PdfToImageConverter.WPF" version="*" targetFramework="net462" />
7-
<package id="Syncfusion.PdfViewer.WPF" version="*" targetFramework="net462" />
8-
<package id="Syncfusion.Shared.WPF" version="*" targetFramework="net462" />
3+
4+
<package id="Syncfusion.PdfViewer.WPF" version="*" targetFramework="net48" />
95
</packages>

Annotations/Comments/ExpandCommentsPane/ExpandCommentsPane.csproj

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,8 @@
3737
<WarningLevel>4</WarningLevel>
3838
</PropertyGroup>
3939
<ItemGroup>
40-
<packageReference Include="Syncfusion.Compression.Base" version="*" />
41-
<packageReference Include="Syncfusion.Licensing" version="*" />
42-
<packageReference Include="Syncfusion.Pdf.Base" version="*" />
43-
<packageReference Include="Syncfusion.PdfToImageConverter.Base" version="*" />
40+
4441
<packageReference Include="Syncfusion.PdfViewer.WPF" version="*" />
45-
<packageReference Include="Syncfusion.Shared.WPF" version="*" />
4642
<Reference Include="System" />
4743
<Reference Include="System.Data" />
4844
<Reference Include="System.Xml" />

0 commit comments

Comments
 (0)