From bc5fc80d0a02f6804d912f7b64cdc3251d090a30 Mon Sep 17 00:00:00 2001 From: lingeshwaran-sf4984 Date: Tue, 23 Dec 2025 12:53:58 +0530 Subject: [PATCH 1/2] 992847: Added Sample for get the appearance of the annotations. --- .../PDFToImageConverter_Annotation/App.config | 14 ++ .../PDFToImageConverter_Annotation/App.xaml | 9 ++ .../App.xaml.cs | 17 +++ .../MainWindow.xaml | 12 ++ .../MainWindow.xaml.cs | 79 +++++++++++ .../PDFToImageConverter_Annotation.csproj | 128 ++++++++++++++++++ .../PDFToImageConverter_Annotation.slnx | 3 + .../Properties/AssemblyInfo.cs | 52 +++++++ .../Properties/Resources.Designer.cs | 71 ++++++++++ .../Properties/Resources.resx | 117 ++++++++++++++++ .../Properties/Settings.Designer.cs | 30 ++++ .../Properties/Settings.settings | 7 + .../packages.config | 9 ++ 13 files changed, 548 insertions(+) create mode 100644 PDF-to-image/PDFToImageConverter_Annotation/App.config create mode 100644 PDF-to-image/PDFToImageConverter_Annotation/App.xaml create mode 100644 PDF-to-image/PDFToImageConverter_Annotation/App.xaml.cs create mode 100644 PDF-to-image/PDFToImageConverter_Annotation/MainWindow.xaml create mode 100644 PDF-to-image/PDFToImageConverter_Annotation/MainWindow.xaml.cs create mode 100644 PDF-to-image/PDFToImageConverter_Annotation/PDFToImageConverter_Annotation.csproj create mode 100644 PDF-to-image/PDFToImageConverter_Annotation/PDFToImageConverter_Annotation.slnx create mode 100644 PDF-to-image/PDFToImageConverter_Annotation/Properties/AssemblyInfo.cs create mode 100644 PDF-to-image/PDFToImageConverter_Annotation/Properties/Resources.Designer.cs create mode 100644 PDF-to-image/PDFToImageConverter_Annotation/Properties/Resources.resx create mode 100644 PDF-to-image/PDFToImageConverter_Annotation/Properties/Settings.Designer.cs create mode 100644 PDF-to-image/PDFToImageConverter_Annotation/Properties/Settings.settings create mode 100644 PDF-to-image/PDFToImageConverter_Annotation/packages.config diff --git a/PDF-to-image/PDFToImageConverter_Annotation/App.config b/PDF-to-image/PDFToImageConverter_Annotation/App.config new file mode 100644 index 0000000..7500604 --- /dev/null +++ b/PDF-to-image/PDFToImageConverter_Annotation/App.config @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/PDF-to-image/PDFToImageConverter_Annotation/App.xaml b/PDF-to-image/PDFToImageConverter_Annotation/App.xaml new file mode 100644 index 0000000..2c5cbec --- /dev/null +++ b/PDF-to-image/PDFToImageConverter_Annotation/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/PDF-to-image/PDFToImageConverter_Annotation/App.xaml.cs b/PDF-to-image/PDFToImageConverter_Annotation/App.xaml.cs new file mode 100644 index 0000000..6e1f73d --- /dev/null +++ b/PDF-to-image/PDFToImageConverter_Annotation/App.xaml.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Configuration; +using System.Data; +using System.Linq; +using System.Threading.Tasks; +using System.Windows; + +namespace PDFToImageConverter_Annotation +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } +} diff --git a/PDF-to-image/PDFToImageConverter_Annotation/MainWindow.xaml b/PDF-to-image/PDFToImageConverter_Annotation/MainWindow.xaml new file mode 100644 index 0000000..3b06d66 --- /dev/null +++ b/PDF-to-image/PDFToImageConverter_Annotation/MainWindow.xaml @@ -0,0 +1,12 @@ + + +