Skip to content

Commit 6d4ad3a

Browse files
authored
Merge pull request #54 from SyncfusionExamples/WPF-939407
939407 - Added sample for the Getting current point in the WPF PdfViewer
2 parents 517cf32 + 1af6aad commit 6d4ad3a

16 files changed

+551
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<configuration>
3+
<startup>
4+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8" />
5+
</startup>
6+
</configuration>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<Application x:Class="PdfCoordinateDetection.App"
2+
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3+
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4+
xmlns:local="clr-namespace:PdfCoordinateDetection"
5+
StartupUri="MainWindow.xaml">
6+
<Application.Resources>
7+
8+
</Application.Resources>
9+
</Application>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Configuration;
4+
using System.Data;
5+
using System.Linq;
6+
using System.Threading.Tasks;
7+
using System.Windows;
8+
9+
namespace PdfCoordinateDetection
10+
{
11+
/// <summary>
12+
/// Interaction logic for App.xaml
13+
/// </summary>
14+
public partial class App : Application
15+
{
16+
}
17+
}
1.9 MB
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<Window x:Class="PdfCoordinateDetection.MainWindow"
2+
xmlns:PdfViewer="clr-namespace:Syncfusion.Windows.PdfViewer;assembly=Syncfusion.PdfViewer.WPF"
3+
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
4+
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
5+
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
6+
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
7+
xmlns:local="clr-namespace:PdfCoordinateDetection"
8+
mc:Ignorable="d"
9+
Title="MainWindow" Height="450" Width="800" WindowState="Maximized">
10+
<Grid>
11+
12+
<PdfViewer:PdfViewerControl x:Name="pdfViewer" />
13+
14+
</Grid>
15+
</Window>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
using Syncfusion.Pdf.Graphics;
2+
using System;
3+
using System.Collections.Generic;
4+
using System.Linq;
5+
using System.Text;
6+
using System.Threading.Tasks;
7+
using System.Windows;
8+
using System.Windows.Controls;
9+
using System.Windows.Data;
10+
using System.Windows.Documents;
11+
using System.Windows.Input;
12+
using System.Windows.Media;
13+
using System.Windows.Media.Imaging;
14+
using System.Windows.Navigation;
15+
using System.Windows.Shapes;
16+
17+
namespace PdfCoordinateDetection
18+
{
19+
/// <summary>
20+
/// Interaction logic for MainWindow.xaml
21+
/// </summary>
22+
public partial class MainWindow : Window
23+
{
24+
string file;
25+
public MainWindow()
26+
{
27+
InitializeComponent();
28+
29+
#if NETCOREAPP
30+
file = "../../../Data/F#.pdf";
31+
#else
32+
file = "../../Data/F#.pdf";
33+
#endif
34+
//Load the document
35+
pdfViewer.Load(file);
36+
37+
//Hooking the Pdf Viewer page clicked event
38+
pdfViewer.PageClicked += PdfViewer_PageClicked; ;
39+
}
40+
41+
private void PdfViewer_PageClicked(object sender, Syncfusion.Windows.PdfViewer.PageClickedEventArgs args)
42+
{
43+
//Get the current point where the mouse is clicked. The value is in pixels.
44+
Point currentPointInPixels = args.Position;
45+
46+
//Convert the point from pixels to points.
47+
PdfUnitConvertor convertor = new PdfUnitConvertor();
48+
System.Drawing.PointF currentPoint = convertor.ConvertFromPixels(new System.Drawing.PointF((float)currentPointInPixels.X, (float)currentPointInPixels.Y), PdfGraphicsUnit.Point);
49+
50+
//Convert the point based on the zoom factor.
51+
float zoomFactor = (float)pdfViewer.ZoomPercentage / 100;
52+
System.Drawing.PointF finalPoint = new System.Drawing.PointF(currentPoint.X / zoomFactor, currentPoint.Y / zoomFactor);
53+
54+
//Display the point through message box.
55+
MessageBox.Show("The point clicked is: " + finalPoint.ToString());
56+
}
57+
}
58+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,107 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4+
<PropertyGroup>
5+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7+
<ProjectGuid>{A2875CB0-F595-4EF4-B8AD-84C16DA2575C}</ProjectGuid>
8+
<OutputType>WinExe</OutputType>
9+
<RootNamespace>PdfCoordinateDetection</RootNamespace>
10+
<AssemblyName>PdfCoordinateDetection</AssemblyName>
11+
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
12+
<FileAlignment>512</FileAlignment>
13+
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
14+
<WarningLevel>4</WarningLevel>
15+
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
16+
<Deterministic>true</Deterministic>
17+
<NuGetPackageImportStamp>
18+
</NuGetPackageImportStamp>
19+
</PropertyGroup>
20+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
21+
<PlatformTarget>AnyCPU</PlatformTarget>
22+
<DebugSymbols>true</DebugSymbols>
23+
<DebugType>full</DebugType>
24+
<Optimize>false</Optimize>
25+
<OutputPath>bin\Debug\</OutputPath>
26+
<DefineConstants>DEBUG;TRACE;NETFRAMEWORK</DefineConstants>
27+
<ErrorReport>prompt</ErrorReport>
28+
<WarningLevel>4</WarningLevel>
29+
</PropertyGroup>
30+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
31+
<PlatformTarget>AnyCPU</PlatformTarget>
32+
<DebugType>pdbonly</DebugType>
33+
<Optimize>true</Optimize>
34+
<OutputPath>bin\Release\</OutputPath>
35+
<DefineConstants>TRACE;NETFRAMEWORK</DefineConstants>
36+
<ErrorReport>prompt</ErrorReport>
37+
<WarningLevel>4</WarningLevel>
38+
</PropertyGroup>
39+
<ItemGroup>
40+
<packageReference Include="Syncfusion.PdfViewer.WPF" version="*" />
41+
<Reference Include="System" />
42+
<Reference Include="System.Data" />
43+
<Reference Include="System.Drawing" />
44+
<Reference Include="System.Xml" />
45+
<Reference Include="Microsoft.CSharp" />
46+
<Reference Include="System.Core" />
47+
<Reference Include="System.Xml.Linq" />
48+
<Reference Include="System.Data.DataSetExtensions" />
49+
<Reference Include="System.Net.Http" />
50+
<Reference Include="System.Xaml">
51+
<RequiredTargetFramework>4.0</RequiredTargetFramework>
52+
</Reference>
53+
<Reference Include="WindowsBase" />
54+
<Reference Include="PresentationCore" />
55+
<Reference Include="PresentationFramework" />
56+
</ItemGroup>
57+
<ItemGroup>
58+
<ApplicationDefinition Include="App.xaml">
59+
<Generator>MSBuild:Compile</Generator>
60+
<SubType>Designer</SubType>
61+
</ApplicationDefinition>
62+
<Page Include="MainWindow.xaml">
63+
<Generator>MSBuild:Compile</Generator>
64+
<SubType>Designer</SubType>
65+
</Page>
66+
<Compile Include="App.xaml.cs">
67+
<DependentUpon>App.xaml</DependentUpon>
68+
<SubType>Code</SubType>
69+
</Compile>
70+
<Compile Include="MainWindow.xaml.cs">
71+
<DependentUpon>MainWindow.xaml</DependentUpon>
72+
<SubType>Code</SubType>
73+
</Compile>
74+
</ItemGroup>
75+
<ItemGroup>
76+
<Compile Include="Properties\AssemblyInfo.cs">
77+
<SubType>Code</SubType>
78+
</Compile>
79+
<Compile Include="Properties\Resources.Designer.cs">
80+
<AutoGen>True</AutoGen>
81+
<DesignTime>True</DesignTime>
82+
<DependentUpon>Resources.resx</DependentUpon>
83+
</Compile>
84+
<Compile Include="Properties\Settings.Designer.cs">
85+
<AutoGen>True</AutoGen>
86+
<DependentUpon>Settings.settings</DependentUpon>
87+
<DesignTimeSharedInput>True</DesignTimeSharedInput>
88+
</Compile>
89+
<EmbeddedResource Include="Properties\Resources.resx">
90+
<Generator>ResXFileCodeGenerator</Generator>
91+
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
92+
</EmbeddedResource>
93+
<None Include="packages.config" />
94+
<None Include="Properties\Settings.settings">
95+
<Generator>SettingsSingleFileGenerator</Generator>
96+
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
97+
</None>
98+
</ItemGroup>
99+
<ItemGroup>
100+
<None Include="App.config" />
101+
</ItemGroup>
102+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
103+
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
104+
<PropertyGroup>
105+
</PropertyGroup>
106+
</Target>
107+
</Project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.12.35707.178 d17.12
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PdfCoordinateDetection", "PdfCoordinateDetection.csproj", "{A2875CB0-F595-4EF4-B8AD-84C16DA2575C}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{A2875CB0-F595-4EF4-B8AD-84C16DA2575C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{A2875CB0-F595-4EF4-B8AD-84C16DA2575C}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{A2875CB0-F595-4EF4-B8AD-84C16DA2575C}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{A2875CB0-F595-4EF4-B8AD-84C16DA2575C}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
EndGlobal
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<OutputType>WinExe</OutputType>
5+
<TargetFramework>net8.0-windows</TargetFramework>
6+
<Nullable>enable</Nullable>
7+
<ImplicitUsings>enable</ImplicitUsings>
8+
<UseWPF>true</UseWPF>
9+
</PropertyGroup>
10+
11+
<ItemGroup>
12+
<PackageReference Include="Syncfusion.PdfViewer.WPF" Version="*" />
13+
</ItemGroup>
14+
15+
</Project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.12.35707.178 d17.12
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PdfCoordinateDetection_NET", "PdfCoordinateDetection_NET.csproj", "{997EAE2F-B4D1-4686-A0EC-35D1B8B35867}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{997EAE2F-B4D1-4686-A0EC-35D1B8B35867}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{997EAE2F-B4D1-4686-A0EC-35D1B8B35867}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{997EAE2F-B4D1-4686-A0EC-35D1B8B35867}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{997EAE2F-B4D1-4686-A0EC-35D1B8B35867}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
EndGlobal
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
using System.Reflection;
2+
using System.Resources;
3+
using System.Runtime.CompilerServices;
4+
using System.Runtime.InteropServices;
5+
using System.Windows;
6+
7+
// General Information about an assembly is controlled through the following
8+
// set of attributes. Change these attribute values to modify the information
9+
// associated with an assembly.
10+
[assembly: AssemblyDescription("")]
11+
[assembly: AssemblyCopyright("Copyright © 2025")]
12+
[assembly: AssemblyTrademark("")]
13+
[assembly: AssemblyCulture("")]
14+
15+
// Setting ComVisible to false makes the types in this assembly not visible
16+
// to COM components. If you need to access a type in this assembly from
17+
// COM, set the ComVisible attribute to true on that type.
18+
[assembly: ComVisible(false)]
19+
20+
//In order to begin building localizable applications, set
21+
//<UICulture>CultureYouAreCodingWith</UICulture> in your .csproj file
22+
//inside a <PropertyGroup>. For example, if you are using US english
23+
//in your source files, set the <UICulture> to en-US. Then uncomment
24+
//the NeutralResourceLanguage attribute below. Update the "en-US" in
25+
//the line below to match the UICulture setting in the project file.
26+
27+
//[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)]
28+
29+
30+
[assembly: ThemeInfo(
31+
ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located
32+
//(used if a resource is not found in the page,
33+
// or application resource dictionaries)
34+
ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located
35+
//(used if a resource is not found in the page,
36+
// app, or any theme specific resource dictionaries)
37+
)]
38+
39+
40+
// Version information for an assembly consists of the following four values:
41+
//
42+
// Major Version
43+
// Minor Version
44+
// Build Number
45+
// Revision
46+
//

0 commit comments

Comments
 (0)