From 3901421c7c82b3dd9bd48c24d8e54722e26769f6 Mon Sep 17 00:00:00 2001 From: lingeshwaran-sf4984 Date: Fri, 19 Dec 2025 17:44:05 +0530 Subject: [PATCH 1/2] 992849: Added Sample for print collate support --- Printing-Examples/PrintCollate/App.config | 14 ++ Printing-Examples/PrintCollate/App.xaml | 9 ++ Printing-Examples/PrintCollate/App.xaml.cs | 17 +++ .../PrintCollate/MainWindow.xaml | 17 +++ .../PrintCollate/MainWindow.xaml.cs | 83 ++++++++++++ .../PrintCollate/PrintCollate.csproj | 128 ++++++++++++++++++ .../PrintCollate/PrintCollate.slnx | 3 + .../PrintCollate/Properties/AssemblyInfo.cs | 52 +++++++ .../Properties/Resources.Designer.cs | 71 ++++++++++ .../PrintCollate/Properties/Resources.resx | 117 ++++++++++++++++ .../Properties/Settings.Designer.cs | 30 ++++ .../PrintCollate/Properties/Settings.settings | 7 + .../PrintCollate/packages.config | 9 ++ Printing-Examples/PrintCollate/testing.pdf | Bin 0 -> 351738 bytes 14 files changed, 557 insertions(+) create mode 100644 Printing-Examples/PrintCollate/App.config create mode 100644 Printing-Examples/PrintCollate/App.xaml create mode 100644 Printing-Examples/PrintCollate/App.xaml.cs create mode 100644 Printing-Examples/PrintCollate/MainWindow.xaml create mode 100644 Printing-Examples/PrintCollate/MainWindow.xaml.cs create mode 100644 Printing-Examples/PrintCollate/PrintCollate.csproj create mode 100644 Printing-Examples/PrintCollate/PrintCollate.slnx create mode 100644 Printing-Examples/PrintCollate/Properties/AssemblyInfo.cs create mode 100644 Printing-Examples/PrintCollate/Properties/Resources.Designer.cs create mode 100644 Printing-Examples/PrintCollate/Properties/Resources.resx create mode 100644 Printing-Examples/PrintCollate/Properties/Settings.Designer.cs create mode 100644 Printing-Examples/PrintCollate/Properties/Settings.settings create mode 100644 Printing-Examples/PrintCollate/packages.config create mode 100644 Printing-Examples/PrintCollate/testing.pdf diff --git a/Printing-Examples/PrintCollate/App.config b/Printing-Examples/PrintCollate/App.config new file mode 100644 index 0000000..7500604 --- /dev/null +++ b/Printing-Examples/PrintCollate/App.config @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Printing-Examples/PrintCollate/App.xaml b/Printing-Examples/PrintCollate/App.xaml new file mode 100644 index 0000000..6ce0fd4 --- /dev/null +++ b/Printing-Examples/PrintCollate/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/Printing-Examples/PrintCollate/App.xaml.cs b/Printing-Examples/PrintCollate/App.xaml.cs new file mode 100644 index 0000000..c33aaae --- /dev/null +++ b/Printing-Examples/PrintCollate/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 PrintCollate +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } +} diff --git a/Printing-Examples/PrintCollate/MainWindow.xaml b/Printing-Examples/PrintCollate/MainWindow.xaml new file mode 100644 index 0000000..83768ec --- /dev/null +++ b/Printing-Examples/PrintCollate/MainWindow.xaml @@ -0,0 +1,17 @@ + + + + + + +