瀏覽代碼

compdfkit(windows) - pdfviewer文件夹名称

liuaoran 1 年之前
父節點
當前提交
cc17f7b99d

+ 1 - 1
Demo/Examples/Annotations/Annotations.csproj

@@ -6,7 +6,7 @@
     <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
     <ProjectGuid>{018AF31A-EDFB-42B1-A9DF-ECF950CA62B1}</ProjectGuid>
     <OutputType>WinExe</OutputType>
-    <RootNamespace>annotation_ctrl_demo</RootNamespace>
+    <RootNamespace>Annotations</RootNamespace>
     <AssemblyName>com.compdfkit.demo.annotation</AssemblyName>
     <TargetFrameworkVersion>v4.6.2</TargetFrameworkVersion>
     <FileAlignment>512</FileAlignment>

+ 1 - 1
Demo/Examples/ContentEditor/ContentEditor.csproj

@@ -6,7 +6,7 @@
     <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
     <ProjectGuid>{03BC0C60-9D99-41D5-8116-F2516CBFCE54}</ProjectGuid>
     <OutputType>WinExe</OutputType>
-    <RootNamespace>edit_ctrl_demo</RootNamespace>
+    <RootNamespace>ContentEditor</RootNamespace>
     <AssemblyName>com.compdfkit.demo.edit</AssemblyName>
     <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
     <FileAlignment>512</FileAlignment>

+ 1 - 1
Demo/Examples/DocsEditor/DocsEditor.csproj

@@ -6,7 +6,7 @@
     <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
     <ProjectGuid>{F7A2B42C-55CC-4E48-A4DC-5E3239F23203}</ProjectGuid>
     <OutputType>WinExe</OutputType>
-    <RootNamespace>pageedit_ctrl_demo</RootNamespace>
+    <RootNamespace>DocsEditor</RootNamespace>
     <AssemblyName>com.compdfkit.demo.pageedit</AssemblyName>
     <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
     <FileAlignment>512</FileAlignment>

+ 1 - 1
Demo/Examples/Examlpes.sln

@@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
 # Visual Studio Version 17
 VisualStudioVersion = 17.5.33516.290
 MinimumVisualStudioVersion = 10.0.40219.1
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PDFViewer", "compdfkit\PDFViewer.csproj", "{807EE747-34A1-4E03-8B72-9E9F6C3BB002}"
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PDFViewer", "PDFViewer\PDFViewer.csproj", "{807EE747-34A1-4E03-8B72-9E9F6C3BB002}"
 EndProject
 Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "SDKLicense", "SDKLicense", "{43ED4BF9-5941-4F32-A9DC-016E94A0E74E}"
 	ProjectSection(SolutionItems) = preProject

+ 1 - 1
Demo/Examples/Forms/Forms.csproj

@@ -6,7 +6,7 @@
     <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
     <ProjectGuid>{0F35ACB7-E10B-4AAE-AA77-88E4602C3EFB}</ProjectGuid>
     <OutputType>WinExe</OutputType>
-    <RootNamespace>form_ctrl_demo</RootNamespace>
+    <RootNamespace>Forms</RootNamespace>
     <AssemblyName>com.compdfkit.demo.form</AssemblyName>
     <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
     <FileAlignment>512</FileAlignment>

Demo/Examples/compdfkit/App.config → Demo/Examples/PDFViewer/App.config


+ 1 - 1
Demo/Examples/compdfkit/App.xaml

@@ -1,4 +1,4 @@
-<Application x:Class="compdfkit.App"
+<Application x:Class="PDFViewer.App"
              xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
              xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
              xmlns:local="clr-namespace:compdfkit"

+ 1 - 1
Demo/Examples/compdfkit/App.xaml.cs

@@ -9,7 +9,7 @@ using System.Threading.Tasks;
 using System.Windows;
 using System.Xml;
 
-namespace compdfkit
+namespace PDFViewer
 {
     public class SDKLicenseHelper
     {

Demo/Examples/SDK/ComPDFKit.Desk.dll → Demo/Examples/PDFViewer/ComPDFKit.Desk.dll


Demo/Examples/compdfkit/ComPDFKit.Viewer.dll → Demo/Examples/PDFViewer/ComPDFKit.Viewer.dll


Demo/Examples/compdfkit/ComPDFKit_Logo.ico → Demo/Examples/PDFViewer/ComPDFKit_Logo.ico


Demo/Examples/compdfkit/Dragablz.dll → Demo/Examples/PDFViewer/Dragablz.dll


+ 2 - 3
Demo/Examples/compdfkit/MainPage.xaml

@@ -1,9 +1,8 @@
-<UserControl x:Class="compdfkit.MainPage"
+<UserControl x:Class="PDFViewer.MainPage"
              xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
              xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
              xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
-             xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
-             xmlns:local="clr-namespace:compdfkit"
+             xmlns:d="http://schemas.microsoft.com/expression/blend/2008"  
             xmlns:cpdftools="clr-namespace:Compdfkit_Tools.PDFControl;assembly=com.compdfkit.tools"
             xmlns:cpdfcommon="clr-namespace:Compdfkit_Tools.Common;assembly=com.compdfkit.tools" 
              mc:Ignorable="d" 

+ 1 - 1
Demo/Examples/compdfkit/MainPage.xaml.cs

@@ -29,7 +29,7 @@ using System.Windows.Media.Imaging;
 using System.Windows.Navigation;
 using Path = System.IO.Path;
 
-namespace compdfkit
+namespace PDFViewer
 {
     public partial class MainPage : UserControl, INotifyPropertyChanged
     {

+ 1 - 2
Demo/Examples/compdfkit/MainWindow.xaml

@@ -1,10 +1,9 @@
-<Window x:Class="compdfkit.MainWindow"
+<Window x:Class="PDFViewer.MainWindow"
         x:Name="Window"
         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
-        xmlns:local="clr-namespace:compdfkit"
         xmlns:cpdftools="clr-namespace:Compdfkit_Tools.PDFControl;assembly=com.compdfkit.tools"
         xmlns:cpdfcommon="clr-namespace:Compdfkit_Tools.Common;assembly=com.compdfkit.tools"
         mc:Ignorable="d"   

+ 1 - 1
Demo/Examples/compdfkit/MainWindow.xaml.cs

@@ -30,7 +30,7 @@ using System.Windows.Media.Imaging;
 using System.Windows.Shapes;
 using Path = System.IO.Path;
 
-namespace compdfkit
+namespace PDFViewer
 {
     /// <summary>
     /// MainWindow.xaml 的交互逻辑

+ 1 - 1
Demo/Examples/compdfkit/PDFViewer.csproj

@@ -6,7 +6,7 @@
     <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
     <ProjectGuid>{807EE747-34A1-4E03-8B72-9E9F6C3BB002}</ProjectGuid>
     <OutputType>WinExe</OutputType>
-    <RootNamespace>compdfkit</RootNamespace>
+    <RootNamespace>PDFViewer</RootNamespace>
     <AssemblyName>com.compdfkit.demo</AssemblyName>
     <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
     <FileAlignment>512</FileAlignment>

Demo/Examples/compdfkit/Properties/AssemblyInfo.cs → Demo/Examples/PDFViewer/Properties/AssemblyInfo.cs


Demo/Examples/compdfkit/Properties/Resources.Designer.cs → Demo/Examples/PDFViewer/Properties/Resources.Designer.cs


Demo/Examples/compdfkit/Properties/Resources.resx → Demo/Examples/PDFViewer/Properties/Resources.resx


Demo/Examples/compdfkit/Properties/Settings.Designer.cs → Demo/Examples/PDFViewer/Properties/Settings.Designer.cs


Demo/Examples/compdfkit/Properties/Settings.settings → Demo/Examples/PDFViewer/Properties/Settings.settings


Demo/Examples/compdfkit/developer_guide_windows.pdf → Demo/Examples/PDFViewer/developer_guide_windows.pdf


二進制
Demo/Examples/SDK/ComPDFKit.Viewer.dll


File diff suppressed because it is too large
+ 0 - 4
Demo/Examples/SDK/SDKLicense.xml


二進制
Demo/Examples/compdfkit/ComPDFKit.Desk.dll