PDF Office.csproj 95 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="packages\Xamarin.Forms.5.0.0.2012\build\Xamarin.Forms.props" Condition="Exists('packages\Xamarin.Forms.5.0.0.2012\build\Xamarin.Forms.props')" />
  4. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  5. <PropertyGroup>
  6. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  7. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  8. <ProjectGuid>{F3A2111D-9EAF-4ECE-9A92-B7F21D429DCD}</ProjectGuid>
  9. <OutputType>WinExe</OutputType>
  10. <RootNamespace>PDF_Office</RootNamespace>
  11. <AssemblyName>PDF Office</AssemblyName>
  12. <TargetFrameworkVersion>v4.6.2</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  15. <WarningLevel>4</WarningLevel>
  16. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  17. <Deterministic>true</Deterministic>
  18. <NuGetPackageImportStamp>
  19. </NuGetPackageImportStamp>
  20. </PropertyGroup>
  21. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  22. <PlatformTarget>AnyCPU</PlatformTarget>
  23. <DebugSymbols>true</DebugSymbols>
  24. <DebugType>embedded</DebugType>
  25. <Optimize>false</Optimize>
  26. <OutputPath>bin\Debug\</OutputPath>
  27. <DefineConstants>DEBUG;TRACE</DefineConstants>
  28. <ErrorReport>prompt</ErrorReport>
  29. <WarningLevel>4</WarningLevel>
  30. <Prefer32Bit>false</Prefer32Bit>
  31. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  32. </PropertyGroup>
  33. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  34. <PlatformTarget>AnyCPU</PlatformTarget>
  35. <DebugType>pdbonly</DebugType>
  36. <Optimize>true</Optimize>
  37. <OutputPath>bin\Release\</OutputPath>
  38. <DefineConstants>TRACE</DefineConstants>
  39. <ErrorReport>prompt</ErrorReport>
  40. <WarningLevel>4</WarningLevel>
  41. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  42. </PropertyGroup>
  43. <ItemGroup>
  44. <Reference Include="ComOCRKit.Desk, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
  45. <SpecificVersion>False</SpecificVersion>
  46. <HintPath>.\ComOCRKit.Desk.dll</HintPath>
  47. </Reference>
  48. <Reference Include="ComPDFKit.Desk, Version=1.7.0.0, Culture=neutral, processorArchitecture=MSIL">
  49. <SpecificVersion>False</SpecificVersion>
  50. <HintPath>.\ComPDFKit.Desk.dll</HintPath>
  51. </Reference>
  52. <Reference Include="ComPDFKit.Viewer, Version=1.7.0.0, Culture=neutral, processorArchitecture=MSIL">
  53. <SpecificVersion>False</SpecificVersion>
  54. <HintPath>.\ComPDFKit.Viewer.dll</HintPath>
  55. </Reference>
  56. <Reference Include="ComPDFKit_Conversion, Version=1.3.0.0, Culture=neutral, processorArchitecture=MSIL">
  57. <SpecificVersion>False</SpecificVersion>
  58. <HintPath>.\ComPDFKit_Conversion.dll</HintPath>
  59. </Reference>
  60. <Reference Include="DotNetSpeech, Version=5.1.0.0, Culture=neutral, processorArchitecture=MSIL">
  61. <SpecificVersion>False</SpecificVersion>
  62. <EmbedInteropTypes>True</EmbedInteropTypes>
  63. <HintPath>.\DotNetSpeech.dll</HintPath>
  64. </Reference>
  65. <Reference Include="Dragablz, Version=0.0.4.0, Culture=neutral, processorArchitecture=MSIL">
  66. <SpecificVersion>False</SpecificVersion>
  67. <HintPath>.\Dragablz.dll</HintPath>
  68. </Reference>
  69. <Reference Include="Dropbox.Api, Version=6.33.0.0, Culture=neutral, PublicKeyToken=310f0e82fbb45d01, processorArchitecture=MSIL">
  70. <HintPath>packages\Dropbox.Api.6.33.0\lib\netstandard2.0\Dropbox.Api.dll</HintPath>
  71. </Reference>
  72. <Reference Include="DryIoc, Version=4.7.7.0, Culture=neutral, PublicKeyToken=dfbf2bd50fcf7768, processorArchitecture=MSIL">
  73. <HintPath>packages\DryIoc.dll.4.7.7\lib\net45\DryIoc.dll</HintPath>
  74. </Reference>
  75. <Reference Include="Google.Apis, Version=1.57.0.0, Culture=neutral, PublicKeyToken=4b01fa6e34db77ab, processorArchitecture=MSIL">
  76. <HintPath>packages\Google.Apis.1.57.0\lib\net45\Google.Apis.dll</HintPath>
  77. </Reference>
  78. <Reference Include="Google.Apis.Auth, Version=1.57.0.0, Culture=neutral, PublicKeyToken=4b01fa6e34db77ab, processorArchitecture=MSIL">
  79. <HintPath>packages\Google.Apis.Auth.1.57.0\lib\net461\Google.Apis.Auth.dll</HintPath>
  80. </Reference>
  81. <Reference Include="Google.Apis.Auth.PlatformServices, Version=1.57.0.0, Culture=neutral, PublicKeyToken=4b01fa6e34db77ab, processorArchitecture=MSIL">
  82. <HintPath>packages\Google.Apis.Auth.1.57.0\lib\net461\Google.Apis.Auth.PlatformServices.dll</HintPath>
  83. </Reference>
  84. <Reference Include="Google.Apis.Core, Version=1.57.0.0, Culture=neutral, PublicKeyToken=4b01fa6e34db77ab, processorArchitecture=MSIL">
  85. <HintPath>packages\Google.Apis.Core.1.57.0\lib\net45\Google.Apis.Core.dll</HintPath>
  86. </Reference>
  87. <Reference Include="Google.Apis.Drive.v3, Version=1.57.0.2859, Culture=neutral, PublicKeyToken=4b01fa6e34db77ab, processorArchitecture=MSIL">
  88. <HintPath>packages\Google.Apis.Drive.v3.1.57.0.2859\lib\net45\Google.Apis.Drive.v3.dll</HintPath>
  89. </Reference>
  90. <Reference Include="Google.Apis.PlatformServices, Version=1.57.0.0, Culture=neutral, PublicKeyToken=4b01fa6e34db77ab, processorArchitecture=MSIL">
  91. <HintPath>packages\Google.Apis.1.57.0\lib\net45\Google.Apis.PlatformServices.dll</HintPath>
  92. </Reference>
  93. <Reference Include="Microsoft.AppCenter, Version=0.0.0.0, Culture=neutral, PublicKeyToken=8a600e2fee7ba272, processorArchitecture=MSIL">
  94. <HintPath>packages\Microsoft.AppCenter.4.5.0\lib\net461\Microsoft.AppCenter.dll</HintPath>
  95. </Reference>
  96. <Reference Include="Microsoft.AppCenter.Analytics, Version=0.0.0.0, Culture=neutral, PublicKeyToken=8a600e2fee7ba272, processorArchitecture=MSIL">
  97. <HintPath>packages\Microsoft.AppCenter.Analytics.4.5.0\lib\net461\Microsoft.AppCenter.Analytics.dll</HintPath>
  98. </Reference>
  99. <Reference Include="Microsoft.AppCenter.Crashes, Version=0.0.0.0, Culture=neutral, PublicKeyToken=8a600e2fee7ba272, processorArchitecture=MSIL">
  100. <HintPath>packages\Microsoft.AppCenter.Crashes.4.5.0\lib\net461\Microsoft.AppCenter.Crashes.dll</HintPath>
  101. </Reference>
  102. <Reference Include="Microsoft.Office.Interop.Excel, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c, processorArchitecture=MSIL">
  103. <HintPath>packages\Microsoft.Office.Interop.Excel.15.0.4795.1001\lib\net20\Microsoft.Office.Interop.Excel.dll</HintPath>
  104. <EmbedInteropTypes>True</EmbedInteropTypes>
  105. </Reference>
  106. <Reference Include="Microsoft.Office.Interop.PowerPoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c, processorArchitecture=MSIL">
  107. <HintPath>packages\Microsoft.Office.Interop.PowerPoint.15.0.4420.1018\lib\net20\Microsoft.Office.Interop.PowerPoint.dll</HintPath>
  108. <EmbedInteropTypes>True</EmbedInteropTypes>
  109. </Reference>
  110. <Reference Include="Microsoft.Office.Interop.Word, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c, processorArchitecture=MSIL">
  111. <HintPath>packages\Microsoft.Office.Interop.Word.15.0.4797.1004\lib\net20\Microsoft.Office.Interop.Word.dll</HintPath>
  112. <EmbedInteropTypes>True</EmbedInteropTypes>
  113. </Reference>
  114. <Reference Include="Microsoft.Xaml.Behaviors, Version=1.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  115. <HintPath>packages\Microsoft.Xaml.Behaviors.Wpf.1.1.31\lib\net45\Microsoft.Xaml.Behaviors.dll</HintPath>
  116. </Reference>
  117. <Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
  118. <HintPath>packages\Newtonsoft.Json.13.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
  119. </Reference>
  120. <Reference Include="office, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c">
  121. <EmbedInteropTypes>True</EmbedInteropTypes>
  122. </Reference>
  123. <Reference Include="Prism, Version=8.1.97.5141, Culture=neutral, PublicKeyToken=40ee6c3a2184dc59, processorArchitecture=MSIL">
  124. <HintPath>packages\Prism.Core.8.1.97\lib\net461\Prism.dll</HintPath>
  125. </Reference>
  126. <Reference Include="Prism.DryIoc.Wpf, Version=8.1.97.5141, Culture=neutral, PublicKeyToken=40ee6c3a2184dc59, processorArchitecture=MSIL">
  127. <HintPath>packages\Prism.DryIoc.8.1.97\lib\net461\Prism.DryIoc.Wpf.dll</HintPath>
  128. </Reference>
  129. <Reference Include="Prism.Wpf, Version=8.1.97.5141, Culture=neutral, PublicKeyToken=40ee6c3a2184dc59, processorArchitecture=MSIL">
  130. <HintPath>packages\Prism.Wpf.8.1.97\lib\net461\Prism.Wpf.dll</HintPath>
  131. </Reference>
  132. <Reference Include="SQLitePCLRaw.batteries_v2, Version=2.0.2.669, Culture=neutral, PublicKeyToken=8226ea5df37bcae9, processorArchitecture=MSIL">
  133. <HintPath>packages\SQLitePCLRaw.bundle_green.2.0.2\lib\net461\SQLitePCLRaw.batteries_v2.dll</HintPath>
  134. </Reference>
  135. <Reference Include="SQLitePCLRaw.core, Version=2.0.2.669, Culture=neutral, PublicKeyToken=1488e028ca7ab535, processorArchitecture=MSIL">
  136. <HintPath>packages\SQLitePCLRaw.core.2.0.2\lib\netstandard2.0\SQLitePCLRaw.core.dll</HintPath>
  137. </Reference>
  138. <Reference Include="SQLitePCLRaw.nativelibrary, Version=2.0.2.669, Culture=neutral, PublicKeyToken=502ed628492ab262, processorArchitecture=MSIL">
  139. <HintPath>packages\SQLitePCLRaw.bundle_green.2.0.2\lib\net461\SQLitePCLRaw.nativelibrary.dll</HintPath>
  140. </Reference>
  141. <Reference Include="SQLitePCLRaw.provider.dynamic_cdecl, Version=2.0.2.669, Culture=neutral, PublicKeyToken=b68184102cba0b3b, processorArchitecture=MSIL">
  142. <HintPath>packages\SQLitePCLRaw.provider.dynamic_cdecl.2.0.2\lib\netstandard2.0\SQLitePCLRaw.provider.dynamic_cdecl.dll</HintPath>
  143. </Reference>
  144. <Reference Include="System" />
  145. <Reference Include="System.Buffers, Version=4.0.2.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
  146. <HintPath>packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll</HintPath>
  147. </Reference>
  148. <Reference Include="System.Configuration" />
  149. <Reference Include="System.Data" />
  150. <Reference Include="System.Deployment" />
  151. <Reference Include="System.Drawing" />
  152. <Reference Include="System.Management" />
  153. <Reference Include="System.Memory, Version=4.0.1.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
  154. <HintPath>packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll</HintPath>
  155. </Reference>
  156. <Reference Include="System.Numerics" />
  157. <Reference Include="System.Numerics.Vectors, Version=4.1.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  158. <HintPath>packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll</HintPath>
  159. </Reference>
  160. <Reference Include="System.Runtime.CompilerServices.Unsafe, Version=4.0.4.1, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  161. <HintPath>packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll</HintPath>
  162. </Reference>
  163. <Reference Include="System.ValueTuple, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
  164. <HintPath>packages\System.ValueTuple.4.5.0\lib\net461\System.ValueTuple.dll</HintPath>
  165. </Reference>
  166. <Reference Include="System.Windows.Forms" />
  167. <Reference Include="System.Xml" />
  168. <Reference Include="Microsoft.CSharp" />
  169. <Reference Include="System.Core" />
  170. <Reference Include="System.Xml.Linq" />
  171. <Reference Include="System.Data.DataSetExtensions" />
  172. <Reference Include="System.Net.Http" />
  173. <Reference Include="System.Xaml">
  174. <RequiredTargetFramework>4.0</RequiredTargetFramework>
  175. </Reference>
  176. <Reference Include="VirtualizingWrapPanel, Version=1.5.7.0, Culture=neutral, processorArchitecture=MSIL">
  177. <SpecificVersion>False</SpecificVersion>
  178. <HintPath>packages\VirtualizingWrapPanel.1.5.7\lib\net452\VirtualizingWrapPanel.dll</HintPath>
  179. </Reference>
  180. <Reference Include="WindowsBase" />
  181. <Reference Include="PresentationCore" />
  182. <Reference Include="PresentationFramework" />
  183. </ItemGroup>
  184. <ItemGroup>
  185. <ApplicationDefinition Include="App.xaml">
  186. <Generator>MSBuild:Compile</Generator>
  187. <SubType>Designer</SubType>
  188. </ApplicationDefinition>
  189. <Compile Include="CustomControl\AlertsMessage.xaml.cs">
  190. <DependentUpon>AlertsMessage.xaml</DependentUpon>
  191. </Compile>
  192. <Compile Include="CustomControl\ColorDropBox.xaml.cs">
  193. <DependentUpon>ColorDropBox.xaml</DependentUpon>
  194. </Compile>
  195. <Compile Include="CustomControl\ColorDropBoxPop.xaml.cs">
  196. <DependentUpon>ColorDropBoxPop.xaml</DependentUpon>
  197. </Compile>
  198. <Compile Include="CustomControl\CommonWritableComboBox.xaml.cs">
  199. <DependentUpon>CommonWritableComboBox.xaml</DependentUpon>
  200. </Compile>
  201. <Compile Include="CustomControl\CompositeControl\ColorSubContent.xaml.cs">
  202. <DependentUpon>ColorSubContent.xaml</DependentUpon>
  203. </Compile>
  204. <Compile Include="CustomControl\CompositeControl\SlidComboControl.xaml.cs">
  205. <DependentUpon>SlidComboControl.xaml</DependentUpon>
  206. </Compile>
  207. <Compile Include="CustomControl\CustomIconToggleBtn.cs" />
  208. <Compile Include="CustomControl\CustomImageControl.cs" />
  209. <Compile Include="CustomControl\DialogContent.cs" />
  210. <Compile Include="CustomControl\Form\FormFieldCombox.xaml.cs">
  211. <DependentUpon>FormFieldCombox.xaml</DependentUpon>
  212. </Compile>
  213. <Compile Include="CustomControl\IconAndTextTabItem.cs" />
  214. <Compile Include="CustomControl\ListBoxItemToolBar.cs" />
  215. <Compile Include="CustomControl\MenuItemWithPath.cs" />
  216. <Compile Include="CustomControl\MessageBoxEx.cs" />
  217. <Compile Include="CustomControl\NumericUpDown.xaml.cs">
  218. <DependentUpon>NumericUpDown.xaml</DependentUpon>
  219. </Compile>
  220. <Compile Include="CustomControl\PageControl.xaml.cs">
  221. <DependentUpon>PageControl.xaml</DependentUpon>
  222. </Compile>
  223. <Compile Include="CustomControl\PageTurningPreview.xaml.cs">
  224. <DependentUpon>PageTurningPreview.xaml</DependentUpon>
  225. </Compile>
  226. <Compile Include="CustomControl\PathButton.cs" />
  227. <Compile Include="CustomControl\SystemControl\CustomCommandAction .cs" />
  228. <Compile Include="CustomControl\SystemControl\RoutedEventTrigger.cs" />
  229. <Compile Include="CustomControl\TextBoxEx.cs" />
  230. <Compile Include="CustomControl\ToastControl.xaml.cs">
  231. <DependentUpon>ToastControl.xaml</DependentUpon>
  232. </Compile>
  233. <Compile Include="CustomControl\WritableComboBox.xaml.cs">
  234. <DependentUpon>WritableComboBox.xaml</DependentUpon>
  235. </Compile>
  236. <Compile Include="DataConvert\AnnotateFontSizeConverter.cs" />
  237. <Compile Include="DataConvert\BoolToTextWrapConvert.cs" />
  238. <Compile Include="DataConvert\CreateTimeToDate.cs" />
  239. <Compile Include="DataConvert\FileFormatToIconConvert.cs" />
  240. <Compile Include="DataConvert\GroupHeaderConverter.cs" />
  241. <Compile Include="DataConvert\IntToBooleanConvert.cs" />
  242. <Compile Include="DataConvert\FileToImageSourceConvert.cs" />
  243. <Compile Include="DataConvert\IntAndTagToBoolMultiBinding.cs" />
  244. <Compile Include="DataConvert\InvertBoolConvert.cs" />
  245. <Compile Include="DataConvert\ObjectConvert.cs" />
  246. <Compile Include="DataConvert\PropertyPanelVisible.cs" />
  247. <Compile Include="DataConvert\StringToDateConvert.cs" />
  248. <Compile Include="DataConvert\StringToVisibleConvert.cs" />
  249. <Compile Include="DataConvert\UnVisivleConvert.cs" />
  250. <Compile Include="DataConvert\WidthConvert.cs" />
  251. <Compile Include="EventAggregators\EditToolsEvent.cs" />
  252. <Compile Include="EventAggregators\PageEditNotifyEvent.cs" />
  253. <Compile Include="EventAggregators\PageEditRefreshEvent.cs" />
  254. <Compile Include="Helper\CacheFilePath.cs" />
  255. <Compile Include="Helper\ConverterHelper.cs" />
  256. <Compile Include="Helper\DpiHelpers.cs" />
  257. <Compile Include="Helper\EditToolsHelper.cs" />
  258. <Compile Include="Helper\AdvancedInvokeCommandAction.cs" />
  259. <Compile Include="Helper\ArrowHelper.cs" />
  260. <Compile Include="Helper\DragDropHelper.cs" />
  261. <Compile Include="Helper\HomePageEditHelper.cs" />
  262. <Compile Include="Helper\ObservableDictionary.cs" />
  263. <Compile Include="Helper\PasswordBoxHelper.cs" />
  264. <Compile Include="Helper\RichTextBoxHelper.cs" />
  265. <Compile Include="Helper\SDKLisenceHelper.cs" />
  266. <Compile Include="Helper\PictureConverter.cs" />
  267. <Compile Include="Helper\SetterAction.cs" />
  268. <Compile Include="Helper\SettingHelper.cs" />
  269. <Compile Include="Helper\ToolMethod.cs" />
  270. <Compile Include="Model\AnnotPanel\Signature.cs" />
  271. <Compile Include="Model\BOTA\AnnotationHandlerEventArgs.cs" />
  272. <Compile Include="Model\AnnotPanel\Stamp.cs" />
  273. <Compile Include="Model\BOTA\OutlineNode.cs" />
  274. <Compile Include="Model\CloudDrive\CloudDriveItem.cs" />
  275. <Compile Include="Model\CloudDrive\CloudFiles.cs" />
  276. <Compile Include="Model\DialogNames.cs" />
  277. <Compile Include="CustomControl\SystemControl\InterTabClient.cs" />
  278. <Compile Include="CustomControl\LoadingControl.xaml.cs">
  279. <DependentUpon>LoadingControl.xaml</DependentUpon>
  280. </Compile>
  281. <Compile Include="Model\Dialog\ConverterDialogs\ConverterCSVDialogModel.cs" />
  282. <Compile Include="Model\Dialog\ConverterDialogs\ConverterDialogsModel.cs" />
  283. <Compile Include="Model\Dialog\ConverterDialogs\ConverterExcelDialogModel.cs" />
  284. <Compile Include="Model\Dialog\ConverterDialogs\ConverterHTMLDialogModel.cs" />
  285. <Compile Include="Model\Dialog\ConverterDialogs\ConverterImgDialogModel.cs" />
  286. <Compile Include="Model\Dialog\ConverterDialogs\ConverterPPTDialogModel.cs" />
  287. <Compile Include="Model\Dialog\ConverterDialogs\ConverterRTFDialogModel.cs" />
  288. <Compile Include="Model\Dialog\ConverterDialogs\ConverterTextDialogModel.cs" />
  289. <Compile Include="Model\Dialog\ConverterDialogs\ConverterWordDialogModel.cs" />
  290. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBatchProcessingDialogModel.cs" />
  291. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageCompressDialogModel.cs" />
  292. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterCSVModel.cs" />
  293. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterDialogModel.cs" />
  294. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterExcelModel.cs" />
  295. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterHTMLModel.cs" />
  296. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterImgModel.cs" />
  297. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterPPTModel.cs" />
  298. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterRTFModel.cs" />
  299. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterTextModel.cs" />
  300. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterWordModel.cs" />
  301. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageSetPasswordDialogModel.cs" />
  302. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePagePictureToPDFDialogModel.cs" />
  303. <Compile Include="Model\Dialog\ToolsDialogs\CompressDialogModel\CompressDialogModel.cs" />
  304. <Compile Include="Model\Dialog\ToolsDialogs\SaftyDialogs\CheckPasswordDialogModel.cs" />
  305. <Compile Include="Model\Dialog\ToolsDialogs\SaftyDialogs\DeleteSafetySettintgsModel.cs" />
  306. <Compile Include="Model\Dialog\ToolsDialogs\SaftyDialogs\SetPasswordDialogModel.cs" />
  307. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageExtractDialogModel.cs" />
  308. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageInsertDialogModel.cs" />
  309. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterDialogModel.cs" />
  310. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageSplitDialogModel.cs" />
  311. <Compile Include="Model\EditTools\Background\BackgroundCreateModel.cs" />
  312. <Compile Include="Model\EditTools\Background\BackgroundTemplateListModel.cs" />
  313. <Compile Include="Model\EditTools\Watermark\WatermarkCreateModel.cs" />
  314. <Compile Include="Model\EditTools\Watermark\WatermarkTemplateListModel.cs" />
  315. <Compile Include="Model\From\FormFieldType.cs" />
  316. <Compile Include="Model\PageEdit\CustomInsertModel.cs" />
  317. <Compile Include="Model\PageEdit\CustomPageItem.cs" />
  318. <Compile Include="Model\PageEdit\ExtractModel.cs" />
  319. <Compile Include="Model\PageEdit\PageEditHistory.cs" />
  320. <Compile Include="Model\PageEdit\PageEditItem.cs" />
  321. <Compile Include="Model\PageEdit\PageItemUnits.cs" />
  322. <Compile Include="Model\ParameterNames.cs" />
  323. <Compile Include="Model\PDFTool\ToolItem.cs" />
  324. <Compile Include="Model\PropertyPanel\AnnotPanel\FontStyleItem.cs" />
  325. <Compile Include="Model\RegionNames.cs" />
  326. <Compile Include="CustomControl\SystemControl\TabablzRegionBehavior.cs" />
  327. <Compile Include="DataConvert\BoolToVisible.cs" />
  328. <Compile Include="DataConvert\VisibleToBoolConvert.cs" />
  329. <Compile Include="EventAggregators\DragablzWindowEvent.cs" />
  330. <Compile Include="EventAggregators\OpenFileEvent.cs" />
  331. <Compile Include="Helper\CommomEvent.cs" />
  332. <Compile Include="Helper\CommonHelper.cs" />
  333. <Compile Include="Properties\Resources.Designer.cs">
  334. <DependentUpon>Resources.resx</DependentUpon>
  335. <DesignTime>True</DesignTime>
  336. <AutoGen>True</AutoGen>
  337. </Compile>
  338. <Compile Include="ViewModels\EditTools\Bates\BatesContentViewModel.cs" />
  339. <Compile Include="ViewModels\EditTools\Bates\BatesCreateContentViewModel.cs" />
  340. <Compile Include="ViewModels\EditTools\Bates\BatesDocumentContentViewModel.cs" />
  341. <Compile Include="ViewModels\EditTools\Bates\BatesTemplateListContentViewModel.cs" />
  342. <Compile Include="ViewModels\BOTA\AnnotationContentViewModel.cs" />
  343. <Compile Include="ViewModels\BOTA\AnnotationListItemViewModel.cs" />
  344. <Compile Include="ViewModels\BOTA\BookmarkContentViewModel.cs" />
  345. <Compile Include="ViewModels\Dialog\BOTA\AddAnnotationDialogViewModel.cs" />
  346. <Compile Include="ViewModels\BOTA\OutLineControlViewModel.cs" />
  347. <Compile Include="ViewModels\BOTA\SearchContentViewModel.cs" />
  348. <Compile Include="ViewModels\Dialog\BOTA\AddBookmarkDialogViewModel.cs" />
  349. <Compile Include="ViewModels\Dialog\BOTA\BookmarkInfoDialogViewModel.cs" />
  350. <Compile Include="ViewModels\Dialog\BOTA\ScreenAnnotationDialogViewModel.cs" />
  351. <Compile Include="ViewModels\EditTools\Background\BackgroundContentViewModel.cs" />
  352. <Compile Include="ViewModels\BOTA\BOTAContentViewModel.cs" />
  353. <Compile Include="ViewModels\BottomToolContentViewModel.cs" />
  354. <Compile Include="ViewModels\Dialog\ConverterDialogs\ConverterProgressBarDialogViewModel.cs" />
  355. <Compile Include="ViewModels\Dialog\ConverterDialogs\ConverterCSVDialogViewModel.cs" />
  356. <Compile Include="ViewModels\Dialog\ConverterDialogs\ConverterExcelDialogViewModel.cs" />
  357. <Compile Include="ViewModels\Dialog\ConverterDialogs\ConverterHTMLDialogViewModel.cs" />
  358. <Compile Include="ViewModels\Dialog\ConverterDialogs\ConverterImgDialogViewModel.cs" />
  359. <Compile Include="ViewModels\Dialog\ConverterDialogs\ConverterPPTDialogViewModel.cs" />
  360. <Compile Include="ViewModels\Dialog\ConverterDialogs\ConverterRTFDialogViewModel.cs" />
  361. <Compile Include="ViewModels\Dialog\ConverterDialogs\ConverterTextDialogViewModel.cs" />
  362. <Compile Include="ViewModels\Dialog\ConverterDialogs\ConverterWordDialogViewModel.cs" />
  363. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterDialogViewModel.cs" />
  364. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterCSVViewModel.cs" />
  365. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterExcelViewModel.cs" />
  366. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterImgViewModel.cs" />
  367. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterWordViewModel.cs" />
  368. <Compile Include="ViewModels\EditTools\Background\BackgroundCreateBaseContentViewModel.cs" />
  369. <Compile Include="ViewModels\EditTools\Background\BackgroundCreateColorContentViewModel.cs" />
  370. <Compile Include="ViewModels\EditTools\Background\BackgroundCreateFileContentViewModel.cs" />
  371. <Compile Include="ViewModels\EditTools\Background\BackgroundDocumentContentViewModel.cs" />
  372. <Compile Include="ViewModels\EditTools\Background\BackgroundTemplateListBaseContentViewModel.cs" />
  373. <Compile Include="ViewModels\EditTools\Background\BackgroundTemplateListColorContentViewModel.cs" />
  374. <Compile Include="ViewModels\EditTools\Background\BackgroundTemplateListFileContentViewModel.cs" />
  375. <Compile Include="ViewModels\EditTools\HeaderFooter\HeaderFooterContentViewModel.cs" />
  376. <Compile Include="ViewModels\EditTools\HeaderFooter\HeaderFooterCreateContentViewModel.cs" />
  377. <Compile Include="ViewModels\EditTools\HeaderFooter\HeaderFooterDocumentContentViewModel.cs" />
  378. <Compile Include="ViewModels\EditTools\HeaderFooter\HeaderFooterTemplateListContentViewModel.cs" />
  379. <Compile Include="ViewModels\EditTools\Redaction\RedactionContentViewModel.cs" />
  380. <Compile Include="ViewModels\EditTools\Redaction\RedactionDocumentContentViewModel.cs" />
  381. <Compile Include="ViewModels\Form\ButtonPropertyViewModel.cs" />
  382. <Compile Include="ViewModels\Form\CheckBoxPropertyViewModel.cs" />
  383. <Compile Include="ViewModels\Form\ComboxPropertyViewModel.cs" />
  384. <Compile Include="ViewModels\Form\FormBaseVM.cs" />
  385. <Compile Include="ViewModels\Form\FormsToolContentViewModel.cs" />
  386. <Compile Include="ViewModels\Form\ListBoxPropertyViewModel.cs" />
  387. <Compile Include="ViewModels\Form\RadioButtonPropertyViewModel.cs" />
  388. <Compile Include="ViewModels\Form\SignPropertyViewModel.cs" />
  389. <Compile Include="ViewModels\Form\TextFieldPropertyViewModel.cs" />
  390. <Compile Include="ViewModels\HomePanel\PDFTools\PDFToolsContentViewModel.cs" />
  391. <Compile Include="ViewModels\HomePanel\PDFTools\QuickToolsContentViewModel.cs" />
  392. <Compile Include="ViewModels\PropertyPanel\AnnotPanel\SignatureAnnotPropertyViewModel.cs" />
  393. <Compile Include="ViewModels\PropertyPanel\AnnotPanel\SignatureCreateDialogViewModel.cs" />
  394. <Compile Include="ViewModels\PropertyPanel\ViewModular\ReadViewContentViewModel.cs" />
  395. <Compile Include="ViewModels\HomePanel\RecentFiles\RecentFilesContentViewModel.cs" />
  396. <Compile Include="ViewModels\PropertyPanel\AnnotPanel\CustomCreateDialogViewModel.cs" />
  397. <Compile Include="ViewModels\PropertyPanel\AnnotPanel\DynamicPropertyDialogViewModel.cs" />
  398. <Compile Include="ViewModels\PropertyPanel\TextEditPropertyViewModel.cs" />
  399. <Compile Include="ViewModels\Tools\ConverterBarContentViewModel.cs" />
  400. <Compile Include="ViewModels\Dialog\ExtractDialogViewModel.cs" />
  401. <Compile Include="ViewModels\Dialog\FullScreenWindowViewModel.cs" />
  402. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBatchProcessingDialogViewModel.cs" />
  403. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageCompressDialogViewModel.cs" />
  404. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageSetPasswordDialogViewModel.cs" />
  405. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterModBookletContentViewModel.cs" />
  406. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterModMultipleContentViewModel.cs" />
  407. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterModPosterContentViewModel.cs" />
  408. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterModSizeContentViewModel.cs" />
  409. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterPageSetDialogViewModel.cs" />
  410. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePagePrinter\ModInfoSendEvent.cs" />
  411. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageSplitDialogViewModel.cs" />
  412. <Compile Include="ViewModels\Dialog\PageEditDialogs\ExtractDialogViewModel.cs" />
  413. <Compile Include="ViewModels\Dialog\PageEditDialogs\InsertDialogViewModel.cs" />
  414. <Compile Include="ViewModels\Dialog\PageEditDialogs\SplitDialogViewModel.cs" />
  415. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterDialogViewModel.cs" />
  416. <Compile Include="ViewModels\Dialog\ToolsDialogs\CompressDialogs\CompressDialogViewModel.cs" />
  417. <Compile Include="ViewModels\Dialog\ToolsDialogs\CompressDialogs\CompressProgressBarDialogViewModel.cs" />
  418. <Compile Include="ViewModels\Dialog\ToolsDialogs\SaftyDialogs\DeleteSafetySettingsDialogViewModel.cs" />
  419. <Compile Include="ViewModels\Dialog\ToolsDialogs\SaftyDialogs\CheckPasswordDialogViewModel.cs" />
  420. <Compile Include="ViewModels\Dialog\ToolsDialogs\SaftyDialogs\SetPasswordDialogViewModel.cs" />
  421. <Compile Include="ViewModels\Dialog\VerifyPassWordDialogViewModel.cs" />
  422. <Compile Include="ViewModels\FillAndSign\FillAndSignContentViewModel.cs" />
  423. <Compile Include="ViewModels\FillAndSign\PropertyPanel\DateFillPropertyViewModel.cs" />
  424. <Compile Include="ViewModels\FillAndSign\PropertyPanel\ShapFillPropertyViewModel.cs" />
  425. <Compile Include="ViewModels\FillAndSign\PropertyPanel\TextFillPropertyViewModel.cs" />
  426. <Compile Include="ViewModels\HomePanel\CloudDrive\CloudDriveContentViewModel.cs" />
  427. <Compile Include="ViewModels\HomePanel\CloudDrive\CloudDriveManager.cs" />
  428. <Compile Include="ViewModels\HomePanel\CloudDrive\CloudFilesContentViewModel.cs" />
  429. <Compile Include="ViewModels\HomePanel\CloudDrive\CloudDriveType\DropbBoxManager.cs" />
  430. <Compile Include="ViewModels\HomePanel\CloudDrive\CloudDriveType\DropbBoxUserItem.cs" />
  431. <Compile Include="ViewModels\HomePanel\CloudDrive\CloudDriveType\GoogleDriveManager.cs" />
  432. <Compile Include="ViewModels\HomePanel\CloudDrive\CloudDriveType\GoogleDriveUserItem.cs" />
  433. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePagePictureToPDFDialogViewModel.cs" />
  434. <Compile Include="ViewModels\HomePanel\HomeCloudContentViewModel.cs" />
  435. <Compile Include="ViewModels\HomePanel\HomeGuidContentViewModel.cs" />
  436. <Compile Include="ViewModels\HomePanel\HomeToolsContentViewModel.cs" />
  437. <Compile Include="ViewModels\MainContentViewModel.cs" />
  438. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageExtractDialogViewModel.cs" />
  439. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageInsertDialogViewModel.cs" />
  440. <Compile Include="ViewModels\PageEdit\PageEditContentViewModel.cs" />
  441. <Compile Include="ViewModels\PropertyPanel\AnnotPanel\FreehandAnnotPropertyViewModel.cs" />
  442. <Compile Include="ViewModels\PropertyPanel\AnnotPanel\FreetextAnnotPropertyViewModel.cs" />
  443. <Compile Include="ViewModels\PropertyPanel\AnnotPanel\ImageAnnotPropertyViewModel.cs" />
  444. <Compile Include="ViewModels\PropertyPanel\AnnotPanel\LinkAnnotPropertyViewModel.cs" />
  445. <Compile Include="ViewModels\PropertyPanel\AnnotPanel\SharpsAnnotPropertyViewModel.cs" />
  446. <Compile Include="ViewModels\PropertyPanel\AnnotPanel\StampAnnotPropertyViewModel.cs" />
  447. <Compile Include="ViewModels\PropertyPanel\AnnotPanel\TextAnnotPropertyViewModel.cs" />
  448. <Compile Include="ViewModels\PropertyPanel\PropertyPanelContentViewModel.cs" />
  449. <Compile Include="ViewModels\PropertyPanel\ViewModular\ReadModeContentViewModel.cs" />
  450. <Compile Include="ViewModels\PropertyPanel\ViewModular\SplitScreenContentViewModel.cs" />
  451. <Compile Include="ViewModels\PropertyPanel\ViewModular\ThemesContentViewModel.cs" />
  452. <Compile Include="ViewModels\PropertyPanel\ViewModular\ViewModularContentViewModel.cs" />
  453. <Compile Include="ViewModels\Tools\AnnotToolContentViewModel.cs" />
  454. <Compile Include="ViewModels\Tools\AnnotToolContentViewModel.Function.cs" />
  455. <Compile Include="ViewModels\Tools\AnnotToolContentViewModel.Properties.cs" />
  456. <Compile Include="ViewModels\Tools\TextEditToolContentViewModel.cs" />
  457. <Compile Include="ViewModels\Tools\ToolsBarContentViewModel.cs" />
  458. <Compile Include="ViewModels\EditTools\Watermark\WatermarkContentViewModel.cs" />
  459. <Compile Include="ViewModels\EditTools\Watermark\WatermarkCreateBaseContentViewModel.cs" />
  460. <Compile Include="ViewModels\EditTools\Watermark\WatermarkCreateFileContentViewModel.cs" />
  461. <Compile Include="ViewModels\EditTools\Watermark\WatermarkCreateTextContentViewModel.cs" />
  462. <Compile Include="ViewModels\EditTools\Watermark\WatermarkTemplateListBaseContentViewModel.cs" />
  463. <Compile Include="ViewModels\EditTools\Watermark\WatermarkTemplateListFileContentViewModel.cs" />
  464. <Compile Include="ViewModels\EditTools\Watermark\WatermarkTemplateListTextContentViewModel.cs" />
  465. <Compile Include="Views\BOTA\AnnotationContent.xaml.cs">
  466. <DependentUpon>AnnotationContent.xaml</DependentUpon>
  467. </Compile>
  468. <Compile Include="Views\BOTA\AnnotationListItem.xaml.cs">
  469. <DependentUpon>AnnotationListItem.xaml</DependentUpon>
  470. </Compile>
  471. <Compile Include="Views\BOTA\BookmarkContent.xaml.cs">
  472. <DependentUpon>BookmarkContent.xaml</DependentUpon>
  473. </Compile>
  474. <Compile Include="ViewModels\EditTools\Watermark\WatermarkDocumentContentViewModel.cs" />
  475. <Compile Include="Views\BOTA\BOTAContent.xaml.cs">
  476. <DependentUpon>BOTAContent.xaml</DependentUpon>
  477. </Compile>
  478. <Compile Include="Views\BOTA\OutLineControl.xaml.cs">
  479. <DependentUpon>OutLineControl.xaml</DependentUpon>
  480. </Compile>
  481. <Compile Include="Views\BOTA\SearchContent.xaml.cs">
  482. <DependentUpon>SearchContent.xaml</DependentUpon>
  483. </Compile>
  484. <Compile Include="Views\BottomToolContent.xaml.cs">
  485. <DependentUpon>BottomToolContent.xaml</DependentUpon>
  486. </Compile>
  487. <Compile Include="Views\Dialog\BOTA\AddAnnotationDialog.xaml.cs">
  488. <DependentUpon>AddAnnotationDialog.xaml</DependentUpon>
  489. </Compile>
  490. <Compile Include="Views\Dialog\BOTA\ScreenAnnotationDialog.xaml.cs">
  491. <DependentUpon>ScreenAnnotationDialog.xaml</DependentUpon>
  492. </Compile>
  493. <Compile Include="Views\Dialog\ConverterDialogs\ConverterCSVDialog.xaml.cs">
  494. <DependentUpon>ConverterCSVDialog.xaml</DependentUpon>
  495. </Compile>
  496. <Compile Include="Views\Dialog\ConverterDialogs\ConverterExcelDialog.xaml.cs">
  497. <DependentUpon>ConverterExcelDialog.xaml</DependentUpon>
  498. </Compile>
  499. <Compile Include="Views\Dialog\ConverterDialogs\ConverterHTMLDialog.xaml.cs">
  500. <DependentUpon>ConverterHTMLDialog.xaml</DependentUpon>
  501. </Compile>
  502. <Compile Include="Views\Dialog\ConverterDialogs\ConverterImgDialog.xaml.cs">
  503. <DependentUpon>ConverterImgDialog.xaml</DependentUpon>
  504. </Compile>
  505. <Compile Include="Views\Dialog\ConverterDialogs\ConverterPPTDialog.xaml.cs">
  506. <DependentUpon>ConverterPPTDialog.xaml</DependentUpon>
  507. </Compile>
  508. <Compile Include="Views\Dialog\ConverterDialogs\ConverterProgressBarDialog.xaml.cs">
  509. <DependentUpon>ConverterProgressBarDialog.xaml</DependentUpon>
  510. </Compile>
  511. <Compile Include="Views\Dialog\ConverterDialogs\ConverterRTFDialog.xaml.cs">
  512. <DependentUpon>ConverterRTFDialog.xaml</DependentUpon>
  513. </Compile>
  514. <Compile Include="Views\Dialog\ConverterDialogs\ConverterTextDialog.xaml.cs">
  515. <DependentUpon>ConverterTextDialog.xaml</DependentUpon>
  516. </Compile>
  517. <Compile Include="Views\Dialog\ConverterDialogs\ConverterWordDialog.xaml.cs">
  518. <DependentUpon>ConverterWordDialog.xaml</DependentUpon>
  519. </Compile>
  520. <Compile Include="Views\Dialog\BOTA\AddBookmarkDialog.xaml.cs">
  521. <DependentUpon>AddBookmarkDialog.xaml</DependentUpon>
  522. </Compile>
  523. <Compile Include="Views\Dialog\BOTA\BookmarkInfoDialog.xaml.cs">
  524. <DependentUpon>BookmarkInfoDialog.xaml</DependentUpon>
  525. </Compile>
  526. <Compile Include="Views\Dialog\FullScreenWindow.xaml.cs">
  527. <DependentUpon>FullScreenWindow.xaml</DependentUpon>
  528. </Compile>
  529. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBatchProcessingDialog.xaml.cs">
  530. <DependentUpon>HomePageBatchProcessingDialog.xaml</DependentUpon>
  531. </Compile>
  532. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageCompressDialog.xaml.cs">
  533. <DependentUpon>HomePageCompressDialog.xaml</DependentUpon>
  534. </Compile>
  535. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterCSV.xaml.cs">
  536. <DependentUpon>HomePageConverterCSV.xaml</DependentUpon>
  537. </Compile>
  538. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterDialog.xaml.cs">
  539. <DependentUpon>HomePageConverterDialog.xaml</DependentUpon>
  540. </Compile>
  541. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterExcel.xaml.cs">
  542. <DependentUpon>HomePageConverterExcel.xaml</DependentUpon>
  543. </Compile>
  544. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterImg.xaml.cs">
  545. <DependentUpon>HomePageConverterImg.xaml</DependentUpon>
  546. </Compile>
  547. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterWord.xaml.cs">
  548. <DependentUpon>HomePageConverterWord.xaml</DependentUpon>
  549. </Compile>
  550. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageSetPasswordDialog.xaml.cs">
  551. <DependentUpon>HomePageSetPasswordDialog.xaml</DependentUpon>
  552. </Compile>
  553. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageExtractDialog.xaml.cs">
  554. <DependentUpon>HomePageExtractDialog.xaml</DependentUpon>
  555. </Compile>
  556. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageInsertDialog.xaml.cs">
  557. <DependentUpon>HomePageInsertDialog.xaml</DependentUpon>
  558. </Compile>
  559. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePagePictureToPDFDialog.xaml.cs">
  560. <DependentUpon>HomePagePictureToPDFDialog.xaml</DependentUpon>
  561. </Compile>
  562. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterModBookletContent.xaml.cs">
  563. <DependentUpon>HomePagePrinterModBookletContent.xaml</DependentUpon>
  564. </Compile>
  565. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterModMultipleContent.xaml.cs">
  566. <DependentUpon>HomePagePrinterModMultipleContent.xaml</DependentUpon>
  567. </Compile>
  568. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterModPosterContent.xaml.cs">
  569. <DependentUpon>HomePagePrinterModPosterContent.xaml</DependentUpon>
  570. </Compile>
  571. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterModSizeContent.xaml.cs">
  572. <DependentUpon>HomePagePrinterModSizeContent.xaml</DependentUpon>
  573. </Compile>
  574. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterPageSetDialog.xaml.cs">
  575. <DependentUpon>HomePagePrinterPageSetDialog.xaml</DependentUpon>
  576. </Compile>
  577. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageSplitDialog.xaml.cs">
  578. <DependentUpon>HomePageSplitDialog.xaml</DependentUpon>
  579. </Compile>
  580. <Compile Include="Views\Dialog\PageEditDialogs\ExtractDialog.xaml.cs">
  581. <DependentUpon>ExtractDialog.xaml</DependentUpon>
  582. </Compile>
  583. <Compile Include="Views\Dialog\PageEditDialogs\InsertDialog.xaml.cs">
  584. <DependentUpon>InsertDialog.xaml</DependentUpon>
  585. </Compile>
  586. <Compile Include="Views\Dialog\PageEditDialogs\SplitDialog.xaml.cs">
  587. <DependentUpon>SplitDialog.xaml</DependentUpon>
  588. </Compile>
  589. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterDialog.xaml.cs">
  590. <DependentUpon>HomePagePrinterDialog.xaml</DependentUpon>
  591. </Compile>
  592. <Compile Include="Views\Dialog\ToolsDialogs\CompressDialogs\CompressDialog.xaml.cs">
  593. <DependentUpon>CompressDialog.xaml</DependentUpon>
  594. </Compile>
  595. <Compile Include="Views\Dialog\ToolsDialogs\CompressDialogs\CompressProgressBarDialog.xaml.cs">
  596. <DependentUpon>CompressProgressBarDialog.xaml</DependentUpon>
  597. </Compile>
  598. <Compile Include="Views\Dialog\ToolsDialogs\SaftyDialogs\CheckPasswordDialog.xaml.cs">
  599. <DependentUpon>CheckPasswordDialog.xaml</DependentUpon>
  600. </Compile>
  601. <Compile Include="Views\Dialog\ToolsDialogs\SaftyDialogs\DeleteSafetySettingsDialog.xaml.cs">
  602. <DependentUpon>DeleteSafetySettingsDialog.xaml</DependentUpon>
  603. </Compile>
  604. <Compile Include="Views\Dialog\ToolsDialogs\SaftyDialogs\SetPasswordDialog.xaml.cs">
  605. <DependentUpon>SetPasswordDialog.xaml</DependentUpon>
  606. </Compile>
  607. <Compile Include="Views\Dialog\VerifyPassWordDialog.xaml.cs">
  608. <DependentUpon>VerifyPassWordDialog.xaml</DependentUpon>
  609. </Compile>
  610. <Compile Include="Views\EditTools\Redaction\RedactionContent.xaml.cs">
  611. <DependentUpon>RedactionContent.xaml</DependentUpon>
  612. </Compile>
  613. <Compile Include="Views\EditTools\Redaction\RedactionDocumentContent.xaml.cs">
  614. <DependentUpon>RedactionDocumentContent.xaml</DependentUpon>
  615. </Compile>
  616. <Compile Include="Views\EditTools\Bates\BatesContent.xaml.cs">
  617. <DependentUpon>BatesContent.xaml</DependentUpon>
  618. </Compile>
  619. <Compile Include="Views\EditTools\Bates\BatesCreateContent.xaml.cs">
  620. <DependentUpon>BatesCreateContent.xaml</DependentUpon>
  621. </Compile>
  622. <Compile Include="Views\EditTools\Bates\BatesDocumentContent.xaml.cs">
  623. <DependentUpon>BatesDocumentContent.xaml</DependentUpon>
  624. </Compile>
  625. <Compile Include="Views\EditTools\Bates\BatesTemplateListContent.xaml.cs">
  626. <DependentUpon>BatesTemplateListContent.xaml</DependentUpon>
  627. </Compile>
  628. <Compile Include="Views\EditTools\HeaderFooter\HeaderFooterContent.xaml.cs">
  629. <DependentUpon>HeaderFooterContent.xaml</DependentUpon>
  630. </Compile>
  631. <Compile Include="Views\EditTools\HeaderFooter\HeaderFooterCreateContent.xaml.cs">
  632. <DependentUpon>HeaderFooterCreateContent.xaml</DependentUpon>
  633. </Compile>
  634. <Compile Include="Views\EditTools\HeaderFooter\HeaderFooterDocumentContent.xaml.cs">
  635. <DependentUpon>HeaderFooterDocumentContent.xaml</DependentUpon>
  636. </Compile>
  637. <Compile Include="Views\EditTools\HeaderFooter\HeaderFooterTemplateListContent.xaml.cs">
  638. <DependentUpon>HeaderFooterTemplateListContent.xaml</DependentUpon>
  639. </Compile>
  640. <Compile Include="Views\FillAndSign\FillAndSignContent.xaml.cs">
  641. <DependentUpon>FillAndSignContent.xaml</DependentUpon>
  642. </Compile>
  643. <Compile Include="Views\FillAndSign\PropertyPanel\DateFillProperty.xaml.cs">
  644. <DependentUpon>DateFillProperty.xaml</DependentUpon>
  645. </Compile>
  646. <Compile Include="Views\FillAndSign\PropertyPanel\ShapFillProperty.xaml.cs">
  647. <DependentUpon>ShapFillProperty.xaml</DependentUpon>
  648. </Compile>
  649. <Compile Include="Views\FillAndSign\PropertyPanel\TextFillProperty.xaml.cs">
  650. <DependentUpon>TextFillProperty.xaml</DependentUpon>
  651. </Compile>
  652. <Compile Include="Views\Form\ButtonProperty.xaml.cs">
  653. <DependentUpon>ButtonProperty.xaml</DependentUpon>
  654. </Compile>
  655. <Compile Include="Views\Form\CheckBoxProperty.xaml.cs">
  656. <DependentUpon>CheckBoxProperty.xaml</DependentUpon>
  657. </Compile>
  658. <Compile Include="Views\Form\ComboxProperty.xaml.cs">
  659. <DependentUpon>ComboxProperty.xaml</DependentUpon>
  660. </Compile>
  661. <Compile Include="Views\Form\FormsToolContent.xaml.cs">
  662. <DependentUpon>FormsToolContent.xaml</DependentUpon>
  663. <SubType>Code</SubType>
  664. </Compile>
  665. <Compile Include="Views\Form\ListBoxProperty.xaml.cs">
  666. <DependentUpon>ListBoxProperty.xaml</DependentUpon>
  667. </Compile>
  668. <Compile Include="Views\Form\RadioButtonProperty.xaml.cs">
  669. <DependentUpon>RadioButtonProperty.xaml</DependentUpon>
  670. </Compile>
  671. <Compile Include="Views\Form\SignProperty.xaml.cs">
  672. <DependentUpon>SignProperty.xaml</DependentUpon>
  673. </Compile>
  674. <Compile Include="Views\Form\TextFieldProperty.xaml.cs">
  675. <DependentUpon>TextFieldProperty.xaml</DependentUpon>
  676. </Compile>
  677. <Compile Include="Views\HomePanel\CloudDrive\CloudDriveContent.xaml.cs">
  678. <DependentUpon>CloudDriveContent.xaml</DependentUpon>
  679. </Compile>
  680. <Compile Include="Views\EditTools\Background\BackgroundContent.xaml.cs">
  681. <DependentUpon>BackgroundContent.xaml</DependentUpon>
  682. </Compile>
  683. <Compile Include="Views\EditTools\Background\BackgroundDocumentContent.xaml.cs">
  684. <DependentUpon>BackgroundDocumentContent.xaml</DependentUpon>
  685. </Compile>
  686. <Compile Include="Views\EditTools\Watermark\WatermarkContent.xaml.cs">
  687. <DependentUpon>WatermarkContent.xaml</DependentUpon>
  688. </Compile>
  689. <Compile Include="Views\EditTools\Watermark\WatermarkCreateBaseContent.xaml.cs">
  690. <DependentUpon>WatermarkCreateBaseContent.xaml</DependentUpon>
  691. </Compile>
  692. <Compile Include="Views\EditTools\Watermark\WatermarkCreateFileContent.xaml.cs">
  693. <DependentUpon>WatermarkCreateFileContent.xaml</DependentUpon>
  694. </Compile>
  695. <Compile Include="Views\EditTools\Watermark\WatermarkCreateTextContent.xaml.cs">
  696. <DependentUpon>WatermarkCreateTextContent.xaml</DependentUpon>
  697. </Compile>
  698. <Compile Include="Views\EditTools\Watermark\WatermarkDocumentContent.xaml.cs">
  699. <DependentUpon>WatermarkDocumentContent.xaml</DependentUpon>
  700. </Compile>
  701. <Compile Include="Views\EditTools\Watermark\WatermarkTemplateListBaseContent.xaml.cs">
  702. <DependentUpon>WatermarkTemplateListBaseContent.xaml</DependentUpon>
  703. </Compile>
  704. <Compile Include="Views\EditTools\Watermark\WatermarkTemplateListFileContent.xaml.cs">
  705. <DependentUpon>WatermarkTemplateListFileContent.xaml</DependentUpon>
  706. </Compile>
  707. <Compile Include="Views\EditTools\Watermark\WatermarkTemplateListTextContent.xaml.cs">
  708. <DependentUpon>WatermarkTemplateListTextContent.xaml</DependentUpon>
  709. </Compile>
  710. <Compile Include="Views\EditTools\Background\BackgroundCreateBaseContent.xaml.cs">
  711. <DependentUpon>BackgroundCreateBaseContent.xaml</DependentUpon>
  712. </Compile>
  713. <Compile Include="Views\EditTools\Background\BackgroundCreateColorContent.xaml.cs">
  714. <DependentUpon>BackgroundCreateColorContent.xaml</DependentUpon>
  715. </Compile>
  716. <Compile Include="Views\EditTools\Background\BackgroundCreateFileContent.xaml.cs">
  717. <DependentUpon>BackgroundCreateFileContent.xaml</DependentUpon>
  718. </Compile>
  719. <Compile Include="Views\EditTools\Background\BackgroundTemplateListBaseContent.xaml.cs">
  720. <DependentUpon>BackgroundTemplateListBaseContent.xaml</DependentUpon>
  721. </Compile>
  722. <Compile Include="Views\EditTools\Background\BackgroundTemplateListColorContent.xaml.cs">
  723. <DependentUpon>BackgroundTemplateListColorContent.xaml</DependentUpon>
  724. </Compile>
  725. <Compile Include="Views\EditTools\Background\BackgroundTemplateListFileContent.xaml.cs">
  726. <DependentUpon>BackgroundTemplateListFileContent.xaml</DependentUpon>
  727. </Compile>
  728. <Compile Include="Views\HomePanel\CloudDrive\CloudFilesContent.xaml.cs">
  729. <DependentUpon>CloudFilesContent.xaml</DependentUpon>
  730. </Compile>
  731. <Compile Include="Views\HomePanel\HomeCloudContent.xaml.cs">
  732. <DependentUpon>HomeCloudContent.xaml</DependentUpon>
  733. </Compile>
  734. <Compile Include="Views\HomePanel\HomeGuidContent.xaml.cs">
  735. <DependentUpon>HomeGuidContent.xaml</DependentUpon>
  736. </Compile>
  737. <Compile Include="Views\HomePanel\PDFTools\PDFToolExpendItem.xaml.cs">
  738. <DependentUpon>PDFToolExpendItem.xaml</DependentUpon>
  739. </Compile>
  740. <Compile Include="Views\HomePanel\PDFTools\PDFToolItem.xaml.cs">
  741. <DependentUpon>PDFToolItem.xaml</DependentUpon>
  742. </Compile>
  743. <Compile Include="Views\HomePanel\HomeToolsContent.xaml.cs">
  744. <DependentUpon>HomeToolsContent.xaml</DependentUpon>
  745. </Compile>
  746. <Compile Include="Helper\PDFToolsHelper.cs" />
  747. <Compile Include="Views\HomePanel\PDFTools\PDFToolsContent.xaml.cs">
  748. <DependentUpon>PDFToolsContent.xaml</DependentUpon>
  749. </Compile>
  750. <Compile Include="Views\HomePanel\PDFTools\QuickToolsContent.xaml.cs">
  751. <DependentUpon>QuickToolsContent.xaml</DependentUpon>
  752. </Compile>
  753. <Compile Include="Views\HomePanel\PromotionContent.xaml.cs">
  754. <DependentUpon>PromotionContent.xaml</DependentUpon>
  755. </Compile>
  756. <Compile Include="Views\HomePanel\RecentFiles\DocItemControl.xaml.cs">
  757. <DependentUpon>DocItemControl.xaml</DependentUpon>
  758. </Compile>
  759. <Compile Include="Views\HomePanel\RecentFiles\DocItemListViewControl.xaml.cs">
  760. <DependentUpon>DocItemListViewControl.xaml</DependentUpon>
  761. </Compile>
  762. <Compile Include="Views\HomePanel\RecentFiles\RecentFilesContent.xaml.cs">
  763. <DependentUpon>RecentFilesContent.xaml</DependentUpon>
  764. </Compile>
  765. <Compile Include="Views\MainContent.xaml.cs">
  766. <DependentUpon>MainContent.xaml</DependentUpon>
  767. </Compile>
  768. <Compile Include="Views\PageEdit\PageEditContent.xaml.cs">
  769. <DependentUpon>PageEditContent.xaml</DependentUpon>
  770. </Compile>
  771. <Compile Include="CustomControl\CompositeControl\ColorContent.xaml.cs">
  772. <DependentUpon>ColorContent.xaml</DependentUpon>
  773. </Compile>
  774. <Compile Include="CustomControl\CompositeControl\SlidContentPop.xaml.cs">
  775. <DependentUpon>SlidContentPop.xaml</DependentUpon>
  776. </Compile>
  777. <Compile Include="Views\PropertyPanel\AnnotPanel\CustomCreateDialog.xaml.cs">
  778. <DependentUpon>CustomCreateDialog.xaml</DependentUpon>
  779. </Compile>
  780. <Compile Include="Views\PropertyPanel\AnnotPanel\DynamicPropertyDialog.xaml.cs">
  781. <DependentUpon>DynamicPropertyDialog.xaml</DependentUpon>
  782. </Compile>
  783. <Compile Include="Views\PropertyPanel\AnnotPanel\FreehandAnnotProperty.xaml.cs">
  784. <DependentUpon>FreehandAnnotProperty.xaml</DependentUpon>
  785. </Compile>
  786. <Compile Include="Views\PropertyPanel\AnnotPanel\FreetextAnnotProperty.xaml.cs">
  787. <DependentUpon>FreetextAnnotProperty.xaml</DependentUpon>
  788. </Compile>
  789. <Compile Include="Views\PropertyPanel\AnnotPanel\ImageAnnotProperty.xaml.cs">
  790. <DependentUpon>ImageAnnotProperty.xaml</DependentUpon>
  791. </Compile>
  792. <Compile Include="Views\PropertyPanel\AnnotPanel\LinkAnnotProperty.xaml.cs">
  793. <DependentUpon>LinkAnnotProperty.xaml</DependentUpon>
  794. </Compile>
  795. <Compile Include="Views\PropertyPanel\AnnotPanel\SharpsAnnotProperty.xaml.cs">
  796. <DependentUpon>SharpsAnnotProperty.xaml</DependentUpon>
  797. </Compile>
  798. <Compile Include="Views\PropertyPanel\AnnotPanel\SignatureAnnotProperty.xaml.cs">
  799. <DependentUpon>SignatureAnnotProperty.xaml</DependentUpon>
  800. </Compile>
  801. <Compile Include="Views\PropertyPanel\AnnotPanel\SignatureCreateDialog.xaml.cs">
  802. <DependentUpon>SignatureCreateDialog.xaml</DependentUpon>
  803. </Compile>
  804. <Compile Include="Views\PropertyPanel\AnnotPanel\StampAnnotProperty.xaml.cs">
  805. <DependentUpon>StampAnnotProperty.xaml</DependentUpon>
  806. </Compile>
  807. <Compile Include="Views\PropertyPanel\AnnotPanel\TextAnnotProperty.xaml.cs">
  808. <DependentUpon>TextAnnotProperty.xaml</DependentUpon>
  809. </Compile>
  810. <Compile Include="CustomControl\CompositeControl\SlidContent.xaml.cs">
  811. <DependentUpon>SlidContent.xaml</DependentUpon>
  812. </Compile>
  813. <Compile Include="Views\PropertyPanel\PropertyPanelContent.xaml.cs">
  814. <DependentUpon>PropertyPanelContent.xaml</DependentUpon>
  815. </Compile>
  816. <Compile Include="Views\PropertyPanel\TextEditProperty.xaml.cs">
  817. <DependentUpon>TextEditProperty.xaml</DependentUpon>
  818. </Compile>
  819. <Compile Include="Views\PropertyPanel\ViewModular\ReadModeContent.xaml.cs">
  820. <DependentUpon>ReadModeContent.xaml</DependentUpon>
  821. </Compile>
  822. <Compile Include="Views\PropertyPanel\ViewModular\ReadViewContent.xaml.cs">
  823. <DependentUpon>ReadViewContent.xaml</DependentUpon>
  824. </Compile>
  825. <Compile Include="Views\PropertyPanel\ViewModular\SplitScreenContent.xaml.cs">
  826. <DependentUpon>SplitScreenContent.xaml</DependentUpon>
  827. </Compile>
  828. <Compile Include="Views\PropertyPanel\ViewModular\ThemesContent.xaml.cs">
  829. <DependentUpon>ThemesContent.xaml</DependentUpon>
  830. </Compile>
  831. <Compile Include="Views\PropertyPanel\ViewModular\ViewModularContent.xaml.cs">
  832. <DependentUpon>ViewModularContent.xaml</DependentUpon>
  833. </Compile>
  834. <Compile Include="Views\Tools\AnnotToolContent.xaml.cs">
  835. <DependentUpon>AnnotToolContent.xaml</DependentUpon>
  836. </Compile>
  837. <Compile Include="Views\Tools\ConverterBarContent.xaml.cs">
  838. <DependentUpon>ConverterBarContent.xaml</DependentUpon>
  839. </Compile>
  840. <Compile Include="Views\Tools\TextEditToolContent.xaml.cs">
  841. <DependentUpon>TextEditToolContent.xaml</DependentUpon>
  842. </Compile>
  843. <Compile Include="Views\Tools\ToolsBarContent.xaml.cs">
  844. <DependentUpon>ToolsBarContent.xaml</DependentUpon>
  845. </Compile>
  846. <Compile Include="Views\ViewContent.xaml.cs">
  847. <DependentUpon>ViewContent.xaml</DependentUpon>
  848. </Compile>
  849. <Page Include="CustomControl\AlertsMessage.xaml">
  850. <Generator>MSBuild:Compile</Generator>
  851. <SubType>Designer</SubType>
  852. </Page>
  853. <Page Include="CustomControl\ColorDropBox.xaml">
  854. <Generator>MSBuild:Compile</Generator>
  855. <SubType>Designer</SubType>
  856. </Page>
  857. <Page Include="CustomControl\ColorDropBoxPop.xaml">
  858. <Generator>MSBuild:Compile</Generator>
  859. <SubType>Designer</SubType>
  860. </Page>
  861. <Page Include="CustomControl\CommonWritableComboBox.xaml">
  862. <Generator>MSBuild:Compile</Generator>
  863. <SubType>Designer</SubType>
  864. </Page>
  865. <Page Include="CustomControl\CompositeControl\ColorSubContent.xaml">
  866. <Generator>MSBuild:Compile</Generator>
  867. <SubType>Designer</SubType>
  868. </Page>
  869. <Page Include="CustomControl\CompositeControl\SlidComboControl.xaml">
  870. <Generator>MSBuild:Compile</Generator>
  871. <SubType>Designer</SubType>
  872. </Page>
  873. <Page Include="CustomControl\Form\FormFieldCombox.xaml">
  874. <SubType>Designer</SubType>
  875. <Generator>MSBuild:Compile</Generator>
  876. </Page>
  877. <Page Include="CustomControl\LoadingControl.xaml">
  878. <SubType>Designer</SubType>
  879. <Generator>MSBuild:Compile</Generator>
  880. </Page>
  881. <Page Include="CustomControl\NumericUpDown.xaml">
  882. <SubType>Designer</SubType>
  883. <Generator>MSBuild:Compile</Generator>
  884. </Page>
  885. <Page Include="CustomControl\PageControl.xaml">
  886. <SubType>Designer</SubType>
  887. <Generator>MSBuild:Compile</Generator>
  888. </Page>
  889. <Page Include="CustomControl\PageTurningPreview.xaml">
  890. <SubType>Designer</SubType>
  891. <Generator>MSBuild:Compile</Generator>
  892. </Page>
  893. <Page Include="CustomControl\ToastControl.xaml">
  894. <Generator>MSBuild:Compile</Generator>
  895. <SubType>Designer</SubType>
  896. </Page>
  897. <Page Include="CustomControl\WritableComboBox.xaml">
  898. <SubType>Designer</SubType>
  899. <Generator>MSBuild:Compile</Generator>
  900. </Page>
  901. <Page Include="Styles\ButtonStyle.xaml">
  902. <SubType>Designer</SubType>
  903. <Generator>MSBuild:Compile</Generator>
  904. </Page>
  905. <Page Include="Styles\CheckBoxStyle.xaml">
  906. <SubType>Designer</SubType>
  907. <Generator>MSBuild:Compile</Generator>
  908. </Page>
  909. <Page Include="Styles\ComboxStyle.xaml">
  910. <SubType>Designer</SubType>
  911. <Generator>MSBuild:Compile</Generator>
  912. </Page>
  913. <Page Include="Styles\ContainerStyles\ComboxStyle\ComboxItemStyle.xaml">
  914. <SubType>Designer</SubType>
  915. <Generator>MSBuild:Compile</Generator>
  916. </Page>
  917. <Page Include="Styles\ContextMenuStyle.xaml">
  918. <Generator>MSBuild:Compile</Generator>
  919. <SubType>Designer</SubType>
  920. </Page>
  921. <Page Include="Styles\ContextMenuTextEditStyle.xaml">
  922. <SubType>Designer</SubType>
  923. <Generator>MSBuild:Compile</Generator>
  924. </Page>
  925. <Page Include="Styles\CustomBtnStyle.xaml">
  926. <Generator>MSBuild:Compile</Generator>
  927. <SubType>Designer</SubType>
  928. </Page>
  929. <Page Include="Styles\CustomListItemStyle.xaml">
  930. <SubType>Designer</SubType>
  931. <Generator>MSBuild:Compile</Generator>
  932. </Page>
  933. <Page Include="Styles\ExpanderStyle.xaml">
  934. <Generator>MSBuild:Compile</Generator>
  935. <SubType>Designer</SubType>
  936. </Page>
  937. <Page Include="Styles\ListBoxStyle.xaml">
  938. <Generator>MSBuild:Compile</Generator>
  939. <SubType>Designer</SubType>
  940. </Page>
  941. <Page Include="Styles\ListViewStyle.xaml">
  942. <Generator>MSBuild:Compile</Generator>
  943. <SubType>Designer</SubType>
  944. </Page>
  945. <Page Include="Styles\MenuStyle.xaml">
  946. <SubType>Designer</SubType>
  947. <Generator>MSBuild:Compile</Generator>
  948. </Page>
  949. <Page Include="Styles\OutLineItemStyle.xaml">
  950. <SubType>Designer</SubType>
  951. <Generator>MSBuild:Compile</Generator>
  952. </Page>
  953. <Page Include="Styles\PathButtonStyle.xaml">
  954. <SubType>Designer</SubType>
  955. <Generator>MSBuild:Compile</Generator>
  956. </Page>
  957. <Page Include="Styles\RadioButtonStyle.xaml">
  958. <SubType>Designer</SubType>
  959. <Generator>MSBuild:Compile</Generator>
  960. </Page>
  961. <Page Include="Styles\SliderStyle.xaml">
  962. <Generator>MSBuild:Compile</Generator>
  963. <SubType>Designer</SubType>
  964. </Page>
  965. <Page Include="Styles\TabControlStyle.xaml">
  966. <SubType>Designer</SubType>
  967. <Generator>MSBuild:Compile</Generator>
  968. </Page>
  969. <Page Include="Styles\TextBoxStyle.xaml">
  970. <SubType>Designer</SubType>
  971. <Generator>MSBuild:Compile</Generator>
  972. </Page>
  973. <Page Include="Styles\WindowsStyle.xaml">
  974. <Generator>MSBuild:Compile</Generator>
  975. <SubType>Designer</SubType>
  976. </Page>
  977. <Page Include="Themes\Alias_Light.xaml">
  978. <SubType>Designer</SubType>
  979. <Generator>MSBuild:Compile</Generator>
  980. </Page>
  981. <Page Include="Themes\Generic.xaml">
  982. <Generator>MSBuild:Compile</Generator>
  983. <SubType>Designer</SubType>
  984. </Page>
  985. <Page Include="Themes\Global.xaml">
  986. <SubType>Designer</SubType>
  987. <Generator>XamlIntelliSenseFileGenerator</Generator>
  988. </Page>
  989. <Page Include="Views\BOTA\AnnotationContent.xaml">
  990. <SubType>Designer</SubType>
  991. <Generator>MSBuild:Compile</Generator>
  992. </Page>
  993. <Page Include="Views\BOTA\AnnotationListItem.xaml">
  994. <SubType>Designer</SubType>
  995. <Generator>MSBuild:Compile</Generator>
  996. </Page>
  997. <Page Include="Views\BOTA\BookmarkContent.xaml">
  998. <SubType>Designer</SubType>
  999. <Generator>MSBuild:Compile</Generator>
  1000. </Page>
  1001. <Page Include="Views\BOTA\BOTAContent.xaml">
  1002. <SubType>Designer</SubType>
  1003. <Generator>MSBuild:Compile</Generator>
  1004. </Page>
  1005. <Page Include="Views\BOTA\OutLineControl.xaml">
  1006. <SubType>Designer</SubType>
  1007. <Generator>MSBuild:Compile</Generator>
  1008. </Page>
  1009. <Page Include="Views\BOTA\SearchContent.xaml">
  1010. <Generator>MSBuild:Compile</Generator>
  1011. <SubType>Designer</SubType>
  1012. </Page>
  1013. <Page Include="Views\BottomToolContent.xaml">
  1014. <SubType>Designer</SubType>
  1015. <Generator>MSBuild:Compile</Generator>
  1016. </Page>
  1017. <Page Include="Views\Dialog\BOTA\AddAnnotationDialog.xaml">
  1018. <SubType>Designer</SubType>
  1019. <Generator>MSBuild:Compile</Generator>
  1020. </Page>
  1021. <Page Include="Views\Dialog\BOTA\ScreenAnnotationDialog.xaml">
  1022. <SubType>Designer</SubType>
  1023. <Generator>MSBuild:Compile</Generator>
  1024. </Page>
  1025. <Page Include="Views\Dialog\ConverterDialogs\ConverterCSVDialog.xaml">
  1026. <SubType>Designer</SubType>
  1027. <Generator>MSBuild:Compile</Generator>
  1028. </Page>
  1029. <Page Include="Views\Dialog\BOTA\AddBookmarkDialog.xaml">
  1030. <SubType>Designer</SubType>
  1031. <Generator>MSBuild:Compile</Generator>
  1032. </Page>
  1033. <Page Include="Views\Dialog\BOTA\BookmarkInfoDialog.xaml">
  1034. <SubType>Designer</SubType>
  1035. <Generator>MSBuild:Compile</Generator>
  1036. </Page>
  1037. <Page Include="Views\Dialog\FullScreenWindow.xaml">
  1038. <SubType>Designer</SubType>
  1039. <Generator>MSBuild:Compile</Generator>
  1040. </Page>
  1041. <Page Include="Views\Dialog\ConverterDialogs\ConverterExcelDialog.xaml">
  1042. <SubType>Designer</SubType>
  1043. <Generator>MSBuild:Compile</Generator>
  1044. </Page>
  1045. <Page Include="Views\Dialog\ConverterDialogs\ConverterHTMLDialog.xaml">
  1046. <SubType>Designer</SubType>
  1047. <Generator>MSBuild:Compile</Generator>
  1048. </Page>
  1049. <Page Include="Views\Dialog\ConverterDialogs\ConverterImgDialog.xaml">
  1050. <SubType>Designer</SubType>
  1051. <Generator>MSBuild:Compile</Generator>
  1052. </Page>
  1053. <Page Include="Views\Dialog\ConverterDialogs\ConverterPPTDialog.xaml">
  1054. <SubType>Designer</SubType>
  1055. <Generator>MSBuild:Compile</Generator>
  1056. </Page>
  1057. <Page Include="Views\Dialog\ConverterDialogs\ConverterProgressBarDialog.xaml">
  1058. <SubType>Designer</SubType>
  1059. <Generator>MSBuild:Compile</Generator>
  1060. </Page>
  1061. <Page Include="Views\Dialog\ConverterDialogs\ConverterRTFDialog.xaml">
  1062. <SubType>Designer</SubType>
  1063. <Generator>MSBuild:Compile</Generator>
  1064. </Page>
  1065. <Page Include="Views\Dialog\ConverterDialogs\ConverterTextDialog.xaml">
  1066. <SubType>Designer</SubType>
  1067. <Generator>MSBuild:Compile</Generator>
  1068. </Page>
  1069. <Page Include="Views\Dialog\ConverterDialogs\ConverterWordDialog.xaml">
  1070. <SubType>Designer</SubType>
  1071. <Generator>MSBuild:Compile</Generator>
  1072. </Page>
  1073. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBatchProcessingDialog.xaml">
  1074. <SubType>Designer</SubType>
  1075. <Generator>MSBuild:Compile</Generator>
  1076. </Page>
  1077. <Page Include="Views\Dialog\PageEditDialogs\SplitDialog.xaml">
  1078. <SubType>Designer</SubType>
  1079. <Generator>MSBuild:Compile</Generator>
  1080. </Page>
  1081. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageCompressDialog.xaml">
  1082. <SubType>Designer</SubType>
  1083. <Generator>MSBuild:Compile</Generator>
  1084. </Page>
  1085. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterCSV.xaml">
  1086. <SubType>Designer</SubType>
  1087. <Generator>MSBuild:Compile</Generator>
  1088. </Page>
  1089. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterDialog.xaml">
  1090. <SubType>Designer</SubType>
  1091. <Generator>MSBuild:Compile</Generator>
  1092. </Page>
  1093. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterExcel.xaml">
  1094. <SubType>Designer</SubType>
  1095. <Generator>MSBuild:Compile</Generator>
  1096. </Page>
  1097. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterImg.xaml">
  1098. <SubType>Designer</SubType>
  1099. <Generator>MSBuild:Compile</Generator>
  1100. </Page>
  1101. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterWord.xaml">
  1102. <SubType>Designer</SubType>
  1103. <Generator>MSBuild:Compile</Generator>
  1104. </Page>
  1105. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageSetPasswordDialog.xaml">
  1106. <SubType>Designer</SubType>
  1107. <Generator>MSBuild:Compile</Generator>
  1108. </Page>
  1109. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageExtractDialog.xaml">
  1110. <SubType>Designer</SubType>
  1111. <Generator>MSBuild:Compile</Generator>
  1112. </Page>
  1113. <Page Include="Views\EditTools\Bates\BatesContent.xaml">
  1114. <SubType>Designer</SubType>
  1115. <Generator>MSBuild:Compile</Generator>
  1116. </Page>
  1117. <Page Include="Views\EditTools\Bates\BatesCreateContent.xaml">
  1118. <SubType>Designer</SubType>
  1119. <Generator>MSBuild:Compile</Generator>
  1120. </Page>
  1121. <Page Include="Views\EditTools\Bates\BatesDocumentContent.xaml">
  1122. <SubType>Designer</SubType>
  1123. <Generator>MSBuild:Compile</Generator>
  1124. </Page>
  1125. <Page Include="Views\EditTools\Bates\BatesTemplateListContent.xaml">
  1126. <SubType>Designer</SubType>
  1127. <Generator>MSBuild:Compile</Generator>
  1128. </Page>
  1129. <Page Include="Views\EditTools\HeaderFooter\HeaderFooterContent.xaml">
  1130. <SubType>Designer</SubType>
  1131. <Generator>MSBuild:Compile</Generator>
  1132. </Page>
  1133. <Page Include="Views\EditTools\HeaderFooter\HeaderFooterCreateContent.xaml">
  1134. <SubType>Designer</SubType>
  1135. <Generator>MSBuild:Compile</Generator>
  1136. </Page>
  1137. <Page Include="Views\EditTools\HeaderFooter\HeaderFooterDocumentContent.xaml">
  1138. <SubType>Designer</SubType>
  1139. <Generator>MSBuild:Compile</Generator>
  1140. </Page>
  1141. <Page Include="Views\EditTools\HeaderFooter\HeaderFooterTemplateListContent.xaml">
  1142. <SubType>Designer</SubType>
  1143. <Generator>MSBuild:Compile</Generator>
  1144. </Page>
  1145. <Page Include="Views\EditTools\Redaction\RedactionContent.xaml">
  1146. <SubType>Designer</SubType>
  1147. <Generator>MSBuild:Compile</Generator>
  1148. </Page>
  1149. <Page Include="Views\EditTools\Redaction\RedactionDocumentContent.xaml">
  1150. <SubType>Designer</SubType>
  1151. <Generator>MSBuild:Compile</Generator>
  1152. </Page>
  1153. <Page Include="Views\FillAndSign\FillAndSignContent.xaml">
  1154. <SubType>Designer</SubType>
  1155. <Generator>MSBuild:Compile</Generator>
  1156. </Page>
  1157. <Page Include="Views\FillAndSign\PropertyPanel\DateFillProperty.xaml">
  1158. <SubType>Designer</SubType>
  1159. <Generator>MSBuild:Compile</Generator>
  1160. </Page>
  1161. <Page Include="Views\FillAndSign\PropertyPanel\ShapFillProperty.xaml">
  1162. <SubType>Designer</SubType>
  1163. <Generator>MSBuild:Compile</Generator>
  1164. </Page>
  1165. <Page Include="Views\FillAndSign\PropertyPanel\TextFillProperty.xaml">
  1166. <SubType>Designer</SubType>
  1167. <Generator>MSBuild:Compile</Generator>
  1168. </Page>
  1169. <Page Include="Views\Form\ButtonProperty.xaml">
  1170. <SubType>Designer</SubType>
  1171. <Generator>MSBuild:Compile</Generator>
  1172. </Page>
  1173. <Page Include="Views\Form\CheckBoxProperty.xaml">
  1174. <SubType>Designer</SubType>
  1175. <Generator>MSBuild:Compile</Generator>
  1176. </Page>
  1177. <Page Include="Views\Form\ComboxProperty.xaml">
  1178. <SubType>Designer</SubType>
  1179. <Generator>MSBuild:Compile</Generator>
  1180. </Page>
  1181. <Page Include="Views\Form\FormsToolContent.xaml">
  1182. <SubType>Designer</SubType>
  1183. <Generator>XamlIntelliSenseFileGenerator</Generator>
  1184. </Page>
  1185. <Page Include="Views\Form\ListBoxProperty.xaml">
  1186. <SubType>Designer</SubType>
  1187. <Generator>MSBuild:Compile</Generator>
  1188. </Page>
  1189. <Page Include="Views\Form\RadioButtonProperty.xaml">
  1190. <SubType>Designer</SubType>
  1191. <Generator>MSBuild:Compile</Generator>
  1192. </Page>
  1193. <Page Include="Views\Form\SignProperty.xaml">
  1194. <SubType>Designer</SubType>
  1195. <Generator>MSBuild:Compile</Generator>
  1196. </Page>
  1197. <Page Include="Views\Form\TextFieldProperty.xaml">
  1198. <SubType>Designer</SubType>
  1199. <Generator>MSBuild:Compile</Generator>
  1200. </Page>
  1201. <Page Include="Views\HomeContent.xaml">
  1202. <SubType>Designer</SubType>
  1203. <Generator>MSBuild:Compile</Generator>
  1204. </Page>
  1205. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageInsertDialog.xaml">
  1206. <SubType>Designer</SubType>
  1207. <Generator>MSBuild:Compile</Generator>
  1208. </Page>
  1209. <Page Include="Views\HomePanel\CloudDrive\CloudDriveContent.xaml">
  1210. <SubType>Designer</SubType>
  1211. <Generator>MSBuild:Compile</Generator>
  1212. </Page>
  1213. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePagePictureToPDFDialog.xaml">
  1214. <SubType>Designer</SubType>
  1215. <Generator>MSBuild:Compile</Generator>
  1216. </Page>
  1217. <Page Include="Views\HomePanel\CloudDrive\CloudFilesContent.xaml">
  1218. <SubType>Designer</SubType>
  1219. <Generator>MSBuild:Compile</Generator>
  1220. </Page>
  1221. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterModBookletContent.xaml">
  1222. <SubType>Designer</SubType>
  1223. <Generator>MSBuild:Compile</Generator>
  1224. </Page>
  1225. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterModMultipleContent.xaml">
  1226. <SubType>Designer</SubType>
  1227. <Generator>MSBuild:Compile</Generator>
  1228. </Page>
  1229. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterModPosterContent.xaml">
  1230. <SubType>Designer</SubType>
  1231. <Generator>MSBuild:Compile</Generator>
  1232. </Page>
  1233. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterModSizeContent.xaml">
  1234. <SubType>Designer</SubType>
  1235. <Generator>MSBuild:Compile</Generator>
  1236. </Page>
  1237. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterPageSetDialog.xaml">
  1238. <SubType>Designer</SubType>
  1239. <Generator>MSBuild:Compile</Generator>
  1240. </Page>
  1241. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageSplitDialog.xaml">
  1242. <SubType>Designer</SubType>
  1243. <Generator>MSBuild:Compile</Generator>
  1244. </Page>
  1245. <Page Include="Views\Dialog\PageEditDialogs\ExtractDialog.xaml">
  1246. <Generator>MSBuild:Compile</Generator>
  1247. <SubType>Designer</SubType>
  1248. </Page>
  1249. <Page Include="Views\Dialog\PageEditDialogs\InsertDialog.xaml">
  1250. <Generator>MSBuild:Compile</Generator>
  1251. <SubType>Designer</SubType>
  1252. </Page>
  1253. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterDialog.xaml">
  1254. <SubType>Designer</SubType>
  1255. </Page>
  1256. <Page Include="CustomControl\CompositeControl\ColorContent.xaml">
  1257. <SubType>Designer</SubType>
  1258. <Generator>MSBuild:Compile</Generator>
  1259. </Page>
  1260. <Page Include="Views\Dialog\ToolsDialogs\CompressDialogs\CompressDialog.xaml">
  1261. <SubType>Designer</SubType>
  1262. <Generator>MSBuild:Compile</Generator>
  1263. </Page>
  1264. <Page Include="Views\Dialog\ToolsDialogs\CompressDialogs\CompressProgressBarDialog.xaml">
  1265. <SubType>Designer</SubType>
  1266. <Generator>MSBuild:Compile</Generator>
  1267. </Page>
  1268. <Page Include="Views\Dialog\ToolsDialogs\SaftyDialogs\CheckPasswordDialog.xaml">
  1269. <SubType>Designer</SubType>
  1270. <Generator>MSBuild:Compile</Generator>
  1271. </Page>
  1272. <Page Include="CustomControl\CompositeControl\SlidContentPop.xaml">
  1273. <Generator>MSBuild:Compile</Generator>
  1274. <SubType>Designer</SubType>
  1275. </Page>
  1276. <Page Include="Views\HomePanel\PDFTools\PDFToolExpendItem.xaml">
  1277. <SubType>Designer</SubType>
  1278. <Generator>MSBuild:Compile</Generator>
  1279. </Page>
  1280. <Page Include="Views\PropertyPanel\AnnotPanel\CustomCreateDialog.xaml">
  1281. <SubType>Designer</SubType>
  1282. <Generator>MSBuild:Compile</Generator>
  1283. </Page>
  1284. <Page Include="Views\PropertyPanel\AnnotPanel\DynamicPropertyDialog.xaml">
  1285. <SubType>Designer</SubType>
  1286. <Generator>MSBuild:Compile</Generator>
  1287. </Page>
  1288. <Page Include="Views\PropertyPanel\AnnotPanel\FreehandAnnotProperty.xaml">
  1289. <SubType>Designer</SubType>
  1290. <Generator>MSBuild:Compile</Generator>
  1291. </Page>
  1292. <Page Include="Views\Dialog\ToolsDialogs\SaftyDialogs\DeleteSafetySettingsDialog.xaml">
  1293. <SubType>Designer</SubType>
  1294. <Generator>MSBuild:Compile</Generator>
  1295. </Page>
  1296. <Page Include="Views\PropertyPanel\AnnotPanel\FreetextAnnotProperty.xaml">
  1297. <SubType>Designer</SubType>
  1298. <Generator>MSBuild:Compile</Generator>
  1299. </Page>
  1300. <Page Include="Views\Dialog\ToolsDialogs\SaftyDialogs\SetPasswordDialog.xaml">
  1301. <SubType>Designer</SubType>
  1302. <Generator>MSBuild:Compile</Generator>
  1303. </Page>
  1304. <Page Include="Views\Dialog\VerifyPassWordDialog.xaml">
  1305. <SubType>Designer</SubType>
  1306. <Generator>MSBuild:Compile</Generator>
  1307. </Page>
  1308. <Page Include="Views\PropertyPanel\AnnotPanel\ImageAnnotProperty.xaml">
  1309. <SubType>Designer</SubType>
  1310. <Generator>MSBuild:Compile</Generator>
  1311. </Page>
  1312. <Page Include="Views\PropertyPanel\AnnotPanel\LinkAnnotProperty.xaml">
  1313. <SubType>Designer</SubType>
  1314. <Generator>MSBuild:Compile</Generator>
  1315. </Page>
  1316. <Page Include="Views\EditTools\Background\BackgroundContent.xaml">
  1317. <SubType>Designer</SubType>
  1318. <Generator>MSBuild:Compile</Generator>
  1319. </Page>
  1320. <Page Include="Views\EditTools\Background\BackgroundDocumentContent.xaml">
  1321. <SubType>Designer</SubType>
  1322. <Generator>MSBuild:Compile</Generator>
  1323. </Page>
  1324. <Page Include="Views\PropertyPanel\AnnotPanel\SharpsAnnotProperty.xaml">
  1325. <SubType>Designer</SubType>
  1326. <Generator>MSBuild:Compile</Generator>
  1327. </Page>
  1328. <Page Include="Views\EditTools\Watermark\WatermarkContent.xaml">
  1329. <SubType>Designer</SubType>
  1330. <Generator>MSBuild:Compile</Generator>
  1331. </Page>
  1332. <Page Include="Views\PropertyPanel\AnnotPanel\SignatureAnnotProperty.xaml">
  1333. <SubType>Designer</SubType>
  1334. <Generator>MSBuild:Compile</Generator>
  1335. </Page>
  1336. <Page Include="Views\PropertyPanel\AnnotPanel\SignatureCreateDialog.xaml">
  1337. <SubType>Designer</SubType>
  1338. <Generator>MSBuild:Compile</Generator>
  1339. </Page>
  1340. <Page Include="Views\PropertyPanel\AnnotPanel\StampAnnotProperty.xaml">
  1341. <SubType>Designer</SubType>
  1342. <Generator>MSBuild:Compile</Generator>
  1343. </Page>
  1344. <Page Include="Views\EditTools\Watermark\WatermarkCreateBaseContent.xaml">
  1345. <SubType>Designer</SubType>
  1346. <Generator>MSBuild:Compile</Generator>
  1347. </Page>
  1348. <Page Include="Views\EditTools\Watermark\WatermarkCreateFileContent.xaml">
  1349. <SubType>Designer</SubType>
  1350. <Generator>MSBuild:Compile</Generator>
  1351. </Page>
  1352. <Page Include="Views\PropertyPanel\AnnotPanel\TextAnnotProperty.xaml">
  1353. <SubType>Designer</SubType>
  1354. <Generator>MSBuild:Compile</Generator>
  1355. </Page>
  1356. <Page Include="Views\EditTools\Watermark\WatermarkCreateTextContent.xaml">
  1357. <SubType>Designer</SubType>
  1358. <Generator>MSBuild:Compile</Generator>
  1359. </Page>
  1360. <Page Include="Views\EditTools\Watermark\WatermarkDocumentContent.xaml">
  1361. <SubType>Designer</SubType>
  1362. <Generator>MSBuild:Compile</Generator>
  1363. </Page>
  1364. <Page Include="Views\EditTools\Watermark\WatermarkTemplateListBaseContent.xaml">
  1365. <SubType>Designer</SubType>
  1366. <Generator>MSBuild:Compile</Generator>
  1367. </Page>
  1368. <Page Include="CustomControl\CompositeControl\SlidContent.xaml">
  1369. <Generator>MSBuild:Compile</Generator>
  1370. </Page>
  1371. <Page Include="Views\EditTools\Watermark\WatermarkTemplateListFileContent.xaml">
  1372. <SubType>Designer</SubType>
  1373. <Generator>MSBuild:Compile</Generator>
  1374. </Page>
  1375. <Page Include="Views\EditTools\Watermark\WatermarkTemplateListTextContent.xaml">
  1376. <SubType>Designer</SubType>
  1377. <Generator>MSBuild:Compile</Generator>
  1378. </Page>
  1379. <Page Include="Views\EditTools\Background\BackgroundCreateBaseContent.xaml">
  1380. <SubType>Designer</SubType>
  1381. </Page>
  1382. <Page Include="Views\PropertyPanel\PropertyPanelContent.xaml">
  1383. <SubType>Designer</SubType>
  1384. <Generator>MSBuild:Compile</Generator>
  1385. </Page>
  1386. <Page Include="Views\PropertyPanel\TextEditProperty.xaml">
  1387. <Generator>MSBuild:Compile</Generator>
  1388. <SubType>Designer</SubType>
  1389. </Page>
  1390. <Page Include="Views\PropertyPanel\ViewModular\ReadModeContent.xaml">
  1391. <SubType>Designer</SubType>
  1392. <Generator>MSBuild:Compile</Generator>
  1393. </Page>
  1394. <Page Include="Views\PropertyPanel\ViewModular\ReadViewContent.xaml">
  1395. <SubType>Designer</SubType>
  1396. <Generator>MSBuild:Compile</Generator>
  1397. </Page>
  1398. <Page Include="Views\PropertyPanel\ViewModular\SplitScreenContent.xaml">
  1399. <SubType>Designer</SubType>
  1400. <Generator>MSBuild:Compile</Generator>
  1401. </Page>
  1402. <Page Include="Views\EditTools\Background\BackgroundCreateColorContent.xaml">
  1403. <SubType>Designer</SubType>
  1404. <Generator>MSBuild:Compile</Generator>
  1405. </Page>
  1406. <Page Include="Views\EditTools\Background\BackgroundCreateFileContent.xaml">
  1407. <SubType>Designer</SubType>
  1408. <Generator>MSBuild:Compile</Generator>
  1409. </Page>
  1410. <Page Include="Views\PropertyPanel\ViewModular\ThemesContent.xaml">
  1411. <SubType>Designer</SubType>
  1412. <Generator>MSBuild:Compile</Generator>
  1413. </Page>
  1414. <Page Include="Views\PropertyPanel\ViewModular\ViewModularContent.xaml">
  1415. <SubType>Designer</SubType>
  1416. <Generator>MSBuild:Compile</Generator>
  1417. </Page>
  1418. <Page Include="Views\EditTools\Background\BackgroundTemplateListBaseContent.xaml">
  1419. <SubType>Designer</SubType>
  1420. <Generator>MSBuild:Compile</Generator>
  1421. </Page>
  1422. <Page Include="Views\EditTools\Background\BackgroundTemplateListColorContent.xaml">
  1423. <SubType>Designer</SubType>
  1424. <Generator>MSBuild:Compile</Generator>
  1425. </Page>
  1426. <Page Include="Views\EditTools\Background\BackgroundTemplateListFileContent.xaml">
  1427. <SubType>Designer</SubType>
  1428. <Generator>MSBuild:Compile</Generator>
  1429. </Page>
  1430. <Page Include="Views\HomePanel\HomeCloudContent.xaml">
  1431. <SubType>Designer</SubType>
  1432. <Generator>MSBuild:Compile</Generator>
  1433. </Page>
  1434. <Page Include="Views\HomePanel\HomeGuidContent.xaml">
  1435. <SubType>Designer</SubType>
  1436. <Generator>MSBuild:Compile</Generator>
  1437. </Page>
  1438. <Page Include="Views\HomePanel\PDFTools\PDFToolItem.xaml">
  1439. <Generator>MSBuild:Compile</Generator>
  1440. <SubType>Designer</SubType>
  1441. </Page>
  1442. <Page Include="Views\HomePanel\HomeToolsContent.xaml">
  1443. <SubType>Designer</SubType>
  1444. <Generator>MSBuild:Compile</Generator>
  1445. </Page>
  1446. <Page Include="Views\HomePanel\PDFTools\PDFToolsContent.xaml">
  1447. <Generator>MSBuild:Compile</Generator>
  1448. <SubType>Designer</SubType>
  1449. </Page>
  1450. <Page Include="Views\HomePanel\PDFTools\QuickToolsContent.xaml">
  1451. <SubType>Designer</SubType>
  1452. <Generator>MSBuild:Compile</Generator>
  1453. </Page>
  1454. <Page Include="Views\HomePanel\PromotionContent.xaml">
  1455. <Generator>MSBuild:Compile</Generator>
  1456. <SubType>Designer</SubType>
  1457. </Page>
  1458. <Page Include="Views\HomePanel\RecentFiles\DocItemControl.xaml">
  1459. <Generator>MSBuild:Compile</Generator>
  1460. <SubType>Designer</SubType>
  1461. </Page>
  1462. <Page Include="Views\HomePanel\RecentFiles\DocItemListViewControl.xaml">
  1463. <Generator>MSBuild:Compile</Generator>
  1464. <SubType>Designer</SubType>
  1465. </Page>
  1466. <Page Include="Views\HomePanel\RecentFiles\RecentFilesContent.xaml">
  1467. <Generator>MSBuild:Compile</Generator>
  1468. <SubType>Designer</SubType>
  1469. </Page>
  1470. <Page Include="Views\MainContent.xaml">
  1471. <SubType>Designer</SubType>
  1472. <Generator>MSBuild:Compile</Generator>
  1473. </Page>
  1474. <Page Include="Views\MainWindow.xaml">
  1475. <Generator>MSBuild:Compile</Generator>
  1476. <SubType>Designer</SubType>
  1477. </Page>
  1478. <Compile Include="App.xaml.cs">
  1479. <DependentUpon>App.xaml</DependentUpon>
  1480. <SubType>Code</SubType>
  1481. </Compile>
  1482. <Compile Include="ViewModels\HomeContentViewModel.cs" />
  1483. <Compile Include="ViewModels\MainWindowViewModel.cs" />
  1484. <Compile Include="ViewModels\ViewContentViewModel.cs" />
  1485. <Compile Include="Views\HomeContent.xaml.cs">
  1486. <DependentUpon>HomeContent.xaml</DependentUpon>
  1487. </Compile>
  1488. <Compile Include="Views\MainWindow.xaml.cs">
  1489. <DependentUpon>MainWindow.xaml</DependentUpon>
  1490. <SubType>Code</SubType>
  1491. </Compile>
  1492. <Page Include="Views\PageEdit\PageEditContent.xaml">
  1493. <Generator>MSBuild:Compile</Generator>
  1494. <SubType>Designer</SubType>
  1495. </Page>
  1496. <Page Include="Views\Tools\AnnotToolContent.xaml">
  1497. <SubType>Designer</SubType>
  1498. <Generator>MSBuild:Compile</Generator>
  1499. </Page>
  1500. <Page Include="Views\Tools\ConverterBarContent.xaml">
  1501. <SubType>Designer</SubType>
  1502. <Generator>MSBuild:Compile</Generator>
  1503. </Page>
  1504. <Page Include="Views\Tools\TextEditToolContent.xaml">
  1505. <Generator>MSBuild:Compile</Generator>
  1506. <SubType>Designer</SubType>
  1507. </Page>
  1508. <Page Include="Views\Tools\ToolsBarContent.xaml">
  1509. <SubType>Designer</SubType>
  1510. <Generator>MSBuild:Compile</Generator>
  1511. </Page>
  1512. <Page Include="Views\ViewContent.xaml">
  1513. <SubType>Designer</SubType>
  1514. <Generator>MSBuild:Compile</Generator>
  1515. </Page>
  1516. </ItemGroup>
  1517. <ItemGroup>
  1518. <Compile Include="Properties\AssemblyInfo.cs">
  1519. <SubType>Code</SubType>
  1520. </Compile>
  1521. <Compile Include="Properties\Settings.Designer.cs">
  1522. <AutoGen>True</AutoGen>
  1523. <DependentUpon>Settings.settings</DependentUpon>
  1524. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  1525. </Compile>
  1526. <None Include="credentials.json">
  1527. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1528. </None>
  1529. <None Include="packages.config" />
  1530. <None Include="Properties\Settings.settings">
  1531. <Generator>SettingsSingleFileGenerator</Generator>
  1532. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  1533. </None>
  1534. <None Include="source\AnalysisWord\Res\word\_rels\document.xml.rels" />
  1535. <Resource Include="Resources\BOTA\Annotation\Arrow.png" />
  1536. <Resource Include="Resources\BOTA\Annotation\Bookmark.png" />
  1537. <Resource Include="Resources\BOTA\Annotation\Circle.png" />
  1538. <Resource Include="Resources\BOTA\Annotation\Freehande.png" />
  1539. <Resource Include="Resources\BOTA\Annotation\Freehande2.png" />
  1540. <Resource Include="Resources\BOTA\Annotation\Hand.png" />
  1541. <Resource Include="Resources\BOTA\Annotation\Highlight.png" />
  1542. <Resource Include="Resources\BOTA\Annotation\Hyperlink.png" />
  1543. <Resource Include="Resources\BOTA\Annotation\Image.png" />
  1544. <Resource Include="Resources\BOTA\Annotation\Line.png" />
  1545. <Resource Include="Resources\BOTA\Annotation\Note.png" />
  1546. <Resource Include="Resources\BOTA\Annotation\Point.png" />
  1547. <Resource Include="Resources\BOTA\Annotation\Rectangle.png" />
  1548. <Resource Include="Resources\BOTA\Annotation\Selecttool.png" />
  1549. <Resource Include="Resources\BOTA\Annotation\Stamp.png" />
  1550. <Resource Include="Resources\BOTA\Annotation\Textbox.png" />
  1551. <Resource Include="Resources\BOTA\Annotation\wavyline2.png" />
  1552. <Resource Include="Resources\BOTA\empty_annotation.png" />
  1553. <Resource Include="Resources\HomeIcon\PDFTools\background.png" />
  1554. <Resource Include="Resources\HomeIcon\PDFTools\batch-remove.png" />
  1555. <Resource Include="Resources\HomeIcon\PDFTools\batch.png" />
  1556. <Resource Include="Resources\HomeIcon\PDFTools\batesnumbers.png" />
  1557. <Resource Include="Resources\HomeIcon\PDFTools\compare.png" />
  1558. <Resource Include="Resources\HomeIcon\PDFTools\compress.png" />
  1559. <Resource Include="Resources\HomeIcon\PDFTools\convert.png" />
  1560. <Resource Include="Resources\HomeIcon\PDFTools\extract.png" />
  1561. <Resource Include="Resources\HomeIcon\PDFTools\form-filed-recognition.png" />
  1562. <Resource Include="Resources\HomeIcon\PDFTools\header&amp;footer.png" />
  1563. <Resource Include="Resources\HomeIcon\PDFTools\image.png" />
  1564. <Resource Include="Resources\HomeIcon\PDFTools\insert.png" />
  1565. <Resource Include="Resources\HomeIcon\PDFTools\merge.png" />
  1566. <Resource Include="Resources\HomeIcon\PDFTools\ocr.png" />
  1567. <Resource Include="Resources\HomeIcon\PDFTools\page-edit.png" />
  1568. <Resource Include="Resources\HomeIcon\PDFTools\pdf-to-excel.png" />
  1569. <Resource Include="Resources\HomeIcon\PDFTools\pdf-to-image.png" />
  1570. <Resource Include="Resources\HomeIcon\PDFTools\pdf-to-ppt.png" />
  1571. <Resource Include="Resources\HomeIcon\PDFTools\pdf-to-word.png" />
  1572. <Resource Include="Resources\HomeIcon\PDFTools\print.png" />
  1573. <Resource Include="Resources\HomeIcon\PDFTools\reduct.png" />
  1574. <Resource Include="Resources\HomeIcon\PDFTools\security.png" />
  1575. <Resource Include="Resources\HomeIcon\PDFTools\split.png" />
  1576. <Resource Include="Resources\HomeIcon\PDFTools\watermark.png" />
  1577. <Resource Include="Resources\StampIcons\Accepted.png" />
  1578. <Resource Include="Resources\StampIcons\Approved.png" />
  1579. <Resource Include="Resources\StampIcons\Completed.png" />
  1580. <Resource Include="Resources\StampIcons\Confidential.png" />
  1581. <Resource Include="Resources\StampIcons\Draft.png" />
  1582. <Resource Include="Resources\StampIcons\Empty_stamp.png" />
  1583. <Resource Include="Resources\StampIcons\Final.png" />
  1584. <Resource Include="Resources\StampIcons\ForComment.png" />
  1585. <Resource Include="Resources\StampIcons\ForPublicRelease.png" />
  1586. <Resource Include="Resources\StampIcons\InformationOnly.png" />
  1587. <Resource Include="Resources\StampIcons\InitialHere.png" />
  1588. <Resource Include="Resources\StampIcons\NotApproved.png" />
  1589. <Resource Include="Resources\StampIcons\NotForPublicRelease.png" />
  1590. <Resource Include="Resources\StampIcons\PreliminaryResults.png" />
  1591. <Resource Include="Resources\StampIcons\PrivateMark1.png" />
  1592. <Resource Include="Resources\StampIcons\PrivateMark2.png" />
  1593. <Resource Include="Resources\StampIcons\PrivateMark3.png" />
  1594. <Resource Include="Resources\StampIcons\Rejected.png" />
  1595. <Resource Include="Resources\StampIcons\revised.png" />
  1596. <Resource Include="Resources\StampIcons\SignHere.png" />
  1597. <Resource Include="Resources\StampIcons\Void.png" />
  1598. <Resource Include="Resources\StampIcons\Witness.png" />
  1599. <Content Include="Resources\PageEdit\GridLine.jpg">
  1600. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1601. </Content>
  1602. <Content Include="Resources\PageEdit\HorizontalLine.jpg">
  1603. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1604. </Content>
  1605. <Content Include="Resources\PageEdit\Staff.jpg">
  1606. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1607. </Content>
  1608. <Resource Include="Resources\EditTools\watermark_bg.png" />
  1609. <Content Include="source\AnalysisWord\Res\_rels\.rels">
  1610. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1611. </Content>
  1612. </ItemGroup>
  1613. <ItemGroup>
  1614. <None Include="App.config" />
  1615. </ItemGroup>
  1616. <ItemGroup>
  1617. <Folder Include="Views\Edit\" />
  1618. <Folder Include="Views\Scan\" />
  1619. </ItemGroup>
  1620. <ItemGroup>
  1621. <Content Include="ComOCRKit.Desk.dll">
  1622. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1623. </Content>
  1624. <Content Include="ComPDFKit.Desk.dll">
  1625. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1626. </Content>
  1627. <Content Include="ComPDFKit.Viewer.dll">
  1628. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1629. </Content>
  1630. <Content Include="ComPDFKit_Conversion.dll">
  1631. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1632. </Content>
  1633. <Content Include="DotNetSpeech.dll">
  1634. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1635. </Content>
  1636. <Content Include="Dragablz.dll">
  1637. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1638. </Content>
  1639. <Resource Include="StyleAndTemplateList.txt" />
  1640. <Resource Include="Resources\QuickToolIcon\Batch.png" />
  1641. <Resource Include="Resources\HomeIcon\file_addition.png" />
  1642. <Resource Include="Resources\HomeIcon\folderOpen.png" />
  1643. <Resource Include="Resources\PromotionIcon\Android.png" />
  1644. <Resource Include="Resources\PromotionIcon\ComPDFKit.png" />
  1645. <Resource Include="Resources\PromotionIcon\ComVideoKit.png" />
  1646. <Resource Include="Resources\PromotionIcon\FilmageEditor.png" />
  1647. <Resource Include="Resources\PromotionIcon\FilmageScreen.png" />
  1648. <Resource Include="Resources\PromotionIcon\FreePDFTemplates.png" />
  1649. <Resource Include="Resources\PromotionIcon\IPhoneiPad.png" />
  1650. <Resource Include="Resources\PromotionIcon\SignFlow.png" />
  1651. <Resource Include="Resources\PromotionIcon\Windows.png" />
  1652. <Resource Include="Resources\FilesType\ic_propertybar_file_pdf_lock.png" />
  1653. <Resource Include="Resources\FilesType\ic_propertybar_file_png_Large.png" />
  1654. <Resource Include="SDKLisence.xml" />
  1655. <Content Include="index.html">
  1656. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1657. </Content>
  1658. <Resource Include="Resources\ToolBarIcon\MyTools\Arrow.png" />
  1659. <Resource Include="Resources\ToolBarIcon\MyTools\Bookmark.png" />
  1660. <Resource Include="Resources\ToolBarIcon\MyTools\Circle.png" />
  1661. <Resource Include="Resources\ToolBarIcon\MyTools\Freehande.png" />
  1662. <Resource Include="Resources\ToolBarIcon\MyTools\Freehande2.png" />
  1663. <Resource Include="Resources\ToolBarIcon\MyTools\Hand.png" />
  1664. <Resource Include="Resources\ToolBarIcon\MyTools\Highlight.png" />
  1665. <Resource Include="Resources\ToolBarIcon\MyTools\Hyperlink.png" />
  1666. <Resource Include="Resources\ToolBarIcon\MyTools\Image.png" />
  1667. <Resource Include="Resources\ToolBarIcon\MyTools\Line.png" />
  1668. <Resource Include="Resources\ToolBarIcon\MyTools\Note.png" />
  1669. <Resource Include="Resources\ToolBarIcon\MyTools\Point.png" />
  1670. <Resource Include="Resources\ToolBarIcon\MyTools\Rectangle.png" />
  1671. <Resource Include="Resources\ToolBarIcon\MyTools\Selecttool.png" />
  1672. <Resource Include="Resources\ToolBarIcon\MyTools\Stamp.png" />
  1673. <Resource Include="Resources\ToolBarIcon\MyTools\Textbox.png" />
  1674. <Resource Include="Resources\ToolBarIcon\MyTools\wavyline2.png" />
  1675. <Content Include="source\AnalysisPPT\Res\slideLayouts\slideLayout1.xml">
  1676. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1677. </Content>
  1678. <Content Include="source\AnalysisPPT\Res\slideLayouts\slideLayout10.xml">
  1679. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1680. </Content>
  1681. <Content Include="source\AnalysisPPT\Res\slideLayouts\slideLayout11.xml">
  1682. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1683. </Content>
  1684. <Content Include="source\AnalysisPPT\Res\slideLayouts\slideLayout2.xml">
  1685. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1686. </Content>
  1687. <Content Include="source\AnalysisPPT\Res\slideLayouts\slideLayout3.xml">
  1688. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1689. </Content>
  1690. <Content Include="source\AnalysisPPT\Res\slideLayouts\slideLayout4.xml">
  1691. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1692. </Content>
  1693. <Content Include="source\AnalysisPPT\Res\slideLayouts\slideLayout5.xml">
  1694. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1695. </Content>
  1696. <Content Include="source\AnalysisPPT\Res\slideLayouts\slideLayout6.xml">
  1697. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1698. </Content>
  1699. <Content Include="source\AnalysisPPT\Res\slideLayouts\slideLayout7.xml">
  1700. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1701. </Content>
  1702. <Content Include="source\AnalysisPPT\Res\slideLayouts\slideLayout8.xml">
  1703. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1704. </Content>
  1705. <Content Include="source\AnalysisPPT\Res\slideLayouts\slideLayout9.xml">
  1706. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1707. </Content>
  1708. <Content Include="source\AnalysisPPT\Res\slideMaster1.xml">
  1709. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1710. </Content>
  1711. <Content Include="source\AnalysisPPT\Res\theme1.xml">
  1712. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1713. </Content>
  1714. <Content Include="source\AnalysisPPT\Res\thumbnail.jpeg">
  1715. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1716. </Content>
  1717. <Content Include="source\AnalysisWord\Res\docProps\app.xml">
  1718. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1719. </Content>
  1720. <Content Include="source\AnalysisWord\Res\docProps\core.xml">
  1721. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1722. </Content>
  1723. <Resource Include="source\AnalysisWord\Res\word\document.xml" />
  1724. <Resource Include="source\AnalysisWord\Res\word\document0.xml" />
  1725. <Resource Include="source\AnalysisWord\Res\word\endnotes.xml" />
  1726. <Resource Include="source\AnalysisWord\Res\word\footnotes.xml" />
  1727. <Resource Include="source\AnalysisWord\Res\word\settings.xml" />
  1728. <Resource Include="source\AnalysisWord\Res\word\theme\theme1.xml" />
  1729. <Content Include="source\AnalysisWord\Res\[Content_Types].xml">
  1730. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1731. </Content>
  1732. <Resource Include="Resources\BOTA\empty_bookmark.png" />
  1733. <Resource Include="Resources\PropertyPanel\colorIcon.png" />
  1734. <Content Include="SystemService\PreviewHandler.dll">
  1735. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1736. </Content>
  1737. <Content Include="SystemService\PreviewHandlerx86.dll">
  1738. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1739. </Content>
  1740. <Content Include="SystemService\TechPDFKitBase.dll">
  1741. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1742. </Content>
  1743. <Content Include="SystemService\ThumbnailProvider.dll">
  1744. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1745. </Content>
  1746. <Content Include="SystemService\ThumbnailProviderx86.dll">
  1747. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1748. </Content>
  1749. <Content Include="x64\ComPDFKit.dll">
  1750. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1751. </Content>
  1752. <Content Include="x64\CPDFConverterNative.dll">
  1753. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1754. </Content>
  1755. <Content Include="x64\libhpdf.dll">
  1756. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1757. </Content>
  1758. <Content Include="x64\libpng16.dll">
  1759. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1760. </Content>
  1761. <Content Include="x64\TechPDFKit.dll">
  1762. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1763. </Content>
  1764. <Content Include="x64\TechPdfToOffice.dll">
  1765. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1766. </Content>
  1767. <Content Include="x64\vcruntime140.dll">
  1768. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1769. </Content>
  1770. <Content Include="x64\zlib1.dll">
  1771. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1772. </Content>
  1773. <Content Include="x86\ComPDFKit.dll">
  1774. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1775. </Content>
  1776. <Content Include="x86\CPDFConverterNative.dll">
  1777. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1778. </Content>
  1779. <Content Include="x86\libhpdf.dll">
  1780. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1781. </Content>
  1782. <Content Include="x86\libpng16.dll">
  1783. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1784. </Content>
  1785. <Content Include="x86\TechPDFKit.dll">
  1786. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1787. </Content>
  1788. <Content Include="x86\TechPDFToOffice.dll">
  1789. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1790. </Content>
  1791. <Content Include="x86\vcruntime140.dll">
  1792. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1793. </Content>
  1794. <Content Include="x86\zlib1.dll">
  1795. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1796. </Content>
  1797. </ItemGroup>
  1798. <ItemGroup>
  1799. <ProjectReference Include="..\PDFSettings\PDFSettings.csproj">
  1800. <Project>{bee73aae-9a2c-446b-b64d-3a8f042c985d}</Project>
  1801. <Name>PDFSettings</Name>
  1802. </ProjectReference>
  1803. </ItemGroup>
  1804. <ItemGroup>
  1805. <EmbeddedResource Include="Properties\Resources.resx">
  1806. <Generator>ResXFileCodeGenerator</Generator>
  1807. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  1808. </EmbeddedResource>
  1809. </ItemGroup>
  1810. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  1811. <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
  1812. <PropertyGroup>
  1813. <ErrorText>这台计算机上缺少此项目引用的 NuGet 程序包。使用“NuGet 程序包还原”可下载这些程序包。有关更多信息,请参见 http://go.microsoft.com/fwlink/?LinkID=322105。缺少的文件是 {0}。</ErrorText>
  1814. </PropertyGroup>
  1815. <Error Condition="!Exists('packages\SQLitePCLRaw.lib.e_sqlite3.2.0.2\build\net461\SQLitePCLRaw.lib.e_sqlite3.targets')" Text="$([System.String]::Format('$(ErrorText)', 'packages\SQLitePCLRaw.lib.e_sqlite3.2.0.2\build\net461\SQLitePCLRaw.lib.e_sqlite3.targets'))" />
  1816. </Target>
  1817. <Import Project="packages\SQLitePCLRaw.lib.e_sqlite3.2.0.2\build\net461\SQLitePCLRaw.lib.e_sqlite3.targets" Condition="Exists('packages\SQLitePCLRaw.lib.e_sqlite3.2.0.2\build\net461\SQLitePCLRaw.lib.e_sqlite3.targets')" />
  1818. </Project>