PDF Office.csproj 127 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364
  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. <IsWebBootstrapper>false</IsWebBootstrapper>
  21. <PublishUrl>publish\</PublishUrl>
  22. <Install>true</Install>
  23. <InstallFrom>Disk</InstallFrom>
  24. <UpdateEnabled>false</UpdateEnabled>
  25. <UpdateMode>Foreground</UpdateMode>
  26. <UpdateInterval>7</UpdateInterval>
  27. <UpdateIntervalUnits>Days</UpdateIntervalUnits>
  28. <UpdatePeriodically>false</UpdatePeriodically>
  29. <UpdateRequired>false</UpdateRequired>
  30. <MapFileExtensions>true</MapFileExtensions>
  31. <ApplicationRevision>0</ApplicationRevision>
  32. <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
  33. <UseApplicationTrust>false</UseApplicationTrust>
  34. <BootstrapperEnabled>true</BootstrapperEnabled>
  35. </PropertyGroup>
  36. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  37. <PlatformTarget>x64</PlatformTarget>
  38. <DebugSymbols>true</DebugSymbols>
  39. <DebugType>embedded</DebugType>
  40. <Optimize>false</Optimize>
  41. <OutputPath>bin\Debug\</OutputPath>
  42. <DefineConstants>DEBUG;TRACE</DefineConstants>
  43. <ErrorReport>prompt</ErrorReport>
  44. <WarningLevel>4</WarningLevel>
  45. <Prefer32Bit>false</Prefer32Bit>
  46. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  47. <DocumentationFile>
  48. </DocumentationFile>
  49. </PropertyGroup>
  50. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  51. <PlatformTarget>AnyCPU</PlatformTarget>
  52. <DebugType>none</DebugType>
  53. <Optimize>true</Optimize>
  54. <OutputPath>bin\Release\</OutputPath>
  55. <DefineConstants>TRACE</DefineConstants>
  56. <ErrorReport>prompt</ErrorReport>
  57. <WarningLevel>4</WarningLevel>
  58. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  59. <Prefer32Bit>false</Prefer32Bit>
  60. </PropertyGroup>
  61. <ItemGroup>
  62. <Reference Include="ComDocumentAIKit, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
  63. <SpecificVersion>False</SpecificVersion>
  64. <HintPath>.\ComDocumentAIKit.dll</HintPath>
  65. </Reference>
  66. <Reference Include="ComOCRKit.Desk, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
  67. <SpecificVersion>False</SpecificVersion>
  68. <HintPath>.\ComOCRKit.Desk.dll</HintPath>
  69. </Reference>
  70. <Reference Include="ComPDFKit.Desk, Version=1.7.0.0, Culture=neutral, processorArchitecture=MSIL">
  71. <SpecificVersion>False</SpecificVersion>
  72. <HintPath>.\ComPDFKit.Desk.dll</HintPath>
  73. </Reference>
  74. <Reference Include="ComPDFKit.Viewer, Version=1.7.0.0, Culture=neutral, processorArchitecture=MSIL">
  75. <SpecificVersion>False</SpecificVersion>
  76. <HintPath>.\ComPDFKit.Viewer.dll</HintPath>
  77. </Reference>
  78. <Reference Include="ComPDFKit_Conversion, Version=1.3.0.0, Culture=neutral, processorArchitecture=MSIL">
  79. <SpecificVersion>False</SpecificVersion>
  80. <HintPath>.\ComPDFKit_Conversion.dll</HintPath>
  81. </Reference>
  82. <Reference Include="DotNetSpeech, Version=5.1.0.0, Culture=neutral, processorArchitecture=MSIL">
  83. <SpecificVersion>False</SpecificVersion>
  84. <EmbedInteropTypes>True</EmbedInteropTypes>
  85. <HintPath>.\DotNetSpeech.dll</HintPath>
  86. </Reference>
  87. <Reference Include="Dragablz, Version=0.0.4.0, Culture=neutral, processorArchitecture=MSIL">
  88. <SpecificVersion>False</SpecificVersion>
  89. <HintPath>.\Dragablz.dll</HintPath>
  90. </Reference>
  91. <Reference Include="Dropbox.Api, Version=6.33.0.0, Culture=neutral, PublicKeyToken=310f0e82fbb45d01, processorArchitecture=MSIL">
  92. <HintPath>packages\Dropbox.Api.6.33.0\lib\netstandard2.0\Dropbox.Api.dll</HintPath>
  93. </Reference>
  94. <Reference Include="DryIoc, Version=4.7.7.0, Culture=neutral, PublicKeyToken=dfbf2bd50fcf7768, processorArchitecture=MSIL">
  95. <HintPath>packages\DryIoc.dll.4.7.7\lib\net45\DryIoc.dll</HintPath>
  96. </Reference>
  97. <Reference Include="Google.Apis, Version=1.57.0.0, Culture=neutral, PublicKeyToken=4b01fa6e34db77ab, processorArchitecture=MSIL">
  98. <HintPath>packages\Google.Apis.1.57.0\lib\net45\Google.Apis.dll</HintPath>
  99. </Reference>
  100. <Reference Include="Google.Apis.Auth, Version=1.57.0.0, Culture=neutral, PublicKeyToken=4b01fa6e34db77ab, processorArchitecture=MSIL">
  101. <HintPath>packages\Google.Apis.Auth.1.57.0\lib\net461\Google.Apis.Auth.dll</HintPath>
  102. </Reference>
  103. <Reference Include="Google.Apis.Auth.PlatformServices, Version=1.57.0.0, Culture=neutral, PublicKeyToken=4b01fa6e34db77ab, processorArchitecture=MSIL">
  104. <HintPath>packages\Google.Apis.Auth.1.57.0\lib\net461\Google.Apis.Auth.PlatformServices.dll</HintPath>
  105. </Reference>
  106. <Reference Include="Google.Apis.Core, Version=1.57.0.0, Culture=neutral, PublicKeyToken=4b01fa6e34db77ab, processorArchitecture=MSIL">
  107. <HintPath>packages\Google.Apis.Core.1.57.0\lib\net45\Google.Apis.Core.dll</HintPath>
  108. </Reference>
  109. <Reference Include="Google.Apis.Drive.v3, Version=1.57.0.2859, Culture=neutral, PublicKeyToken=4b01fa6e34db77ab, processorArchitecture=MSIL">
  110. <HintPath>packages\Google.Apis.Drive.v3.1.57.0.2859\lib\net45\Google.Apis.Drive.v3.dll</HintPath>
  111. </Reference>
  112. <Reference Include="Google.Apis.PlatformServices, Version=1.57.0.0, Culture=neutral, PublicKeyToken=4b01fa6e34db77ab, processorArchitecture=MSIL">
  113. <HintPath>packages\Google.Apis.1.57.0\lib\net45\Google.Apis.PlatformServices.dll</HintPath>
  114. </Reference>
  115. <Reference Include="Magick.NET-Q16-AnyCPU, Version=12.2.0.0, Culture=neutral, PublicKeyToken=2004825badfa91ec, processorArchitecture=MSIL">
  116. <HintPath>packages\Magick.NET-Q16-AnyCPU.12.2.2\lib\netstandard20\Magick.NET-Q16-AnyCPU.dll</HintPath>
  117. </Reference>
  118. <Reference Include="Magick.NET.Core, Version=12.2.0.0, Culture=neutral, PublicKeyToken=2004825badfa91ec, processorArchitecture=MSIL">
  119. <HintPath>packages\Magick.NET.Core.12.2.2\lib\netstandard20\Magick.NET.Core.dll</HintPath>
  120. </Reference>
  121. <Reference Include="Microsoft.AppCenter, Version=0.0.0.0, Culture=neutral, PublicKeyToken=8a600e2fee7ba272, processorArchitecture=MSIL">
  122. <HintPath>packages\Microsoft.AppCenter.4.5.0\lib\net461\Microsoft.AppCenter.dll</HintPath>
  123. </Reference>
  124. <Reference Include="Microsoft.AppCenter.Analytics, Version=0.0.0.0, Culture=neutral, PublicKeyToken=8a600e2fee7ba272, processorArchitecture=MSIL">
  125. <HintPath>packages\Microsoft.AppCenter.Analytics.4.5.0\lib\net461\Microsoft.AppCenter.Analytics.dll</HintPath>
  126. </Reference>
  127. <Reference Include="Microsoft.AppCenter.Crashes, Version=0.0.0.0, Culture=neutral, PublicKeyToken=8a600e2fee7ba272, processorArchitecture=MSIL">
  128. <HintPath>packages\Microsoft.AppCenter.Crashes.4.5.0\lib\net461\Microsoft.AppCenter.Crashes.dll</HintPath>
  129. </Reference>
  130. <Reference Include="Microsoft.Office.Interop.Excel, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c, processorArchitecture=MSIL">
  131. <HintPath>packages\Microsoft.Office.Interop.Excel.15.0.4795.1001\lib\net20\Microsoft.Office.Interop.Excel.dll</HintPath>
  132. <EmbedInteropTypes>True</EmbedInteropTypes>
  133. </Reference>
  134. <Reference Include="Microsoft.Office.Interop.PowerPoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c, processorArchitecture=MSIL">
  135. <HintPath>packages\Microsoft.Office.Interop.PowerPoint.15.0.4420.1018\lib\net20\Microsoft.Office.Interop.PowerPoint.dll</HintPath>
  136. <EmbedInteropTypes>True</EmbedInteropTypes>
  137. </Reference>
  138. <Reference Include="Microsoft.Office.Interop.Word, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c, processorArchitecture=MSIL">
  139. <HintPath>packages\Microsoft.Office.Interop.Word.15.0.4797.1004\lib\net20\Microsoft.Office.Interop.Word.dll</HintPath>
  140. <EmbedInteropTypes>True</EmbedInteropTypes>
  141. </Reference>
  142. <Reference Include="Microsoft.Xaml.Behaviors, Version=1.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  143. <HintPath>packages\Microsoft.Xaml.Behaviors.Wpf.1.1.31\lib\net45\Microsoft.Xaml.Behaviors.dll</HintPath>
  144. </Reference>
  145. <Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
  146. <HintPath>packages\Newtonsoft.Json.13.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
  147. </Reference>
  148. <Reference Include="office, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c">
  149. <EmbedInteropTypes>True</EmbedInteropTypes>
  150. </Reference>
  151. <Reference Include="PresentationFramework.Aero2" />
  152. <Reference Include="Prism, Version=8.1.97.5141, Culture=neutral, PublicKeyToken=40ee6c3a2184dc59, processorArchitecture=MSIL">
  153. <HintPath>packages\Prism.Core.8.1.97\lib\net461\Prism.dll</HintPath>
  154. </Reference>
  155. <Reference Include="Prism.DryIoc.Wpf, Version=8.1.97.5141, Culture=neutral, PublicKeyToken=40ee6c3a2184dc59, processorArchitecture=MSIL">
  156. <HintPath>packages\Prism.DryIoc.8.1.97\lib\net461\Prism.DryIoc.Wpf.dll</HintPath>
  157. </Reference>
  158. <Reference Include="Prism.Wpf, Version=8.1.97.5141, Culture=neutral, PublicKeyToken=40ee6c3a2184dc59, processorArchitecture=MSIL">
  159. <HintPath>packages\Prism.Wpf.8.1.97\lib\net461\Prism.Wpf.dll</HintPath>
  160. </Reference>
  161. <Reference Include="ReachFramework" />
  162. <Reference Include="SQLitePCLRaw.batteries_v2, Version=2.0.2.669, Culture=neutral, PublicKeyToken=8226ea5df37bcae9, processorArchitecture=MSIL">
  163. <HintPath>packages\SQLitePCLRaw.bundle_green.2.0.2\lib\net461\SQLitePCLRaw.batteries_v2.dll</HintPath>
  164. </Reference>
  165. <Reference Include="SQLitePCLRaw.core, Version=2.0.2.669, Culture=neutral, PublicKeyToken=1488e028ca7ab535, processorArchitecture=MSIL">
  166. <HintPath>packages\SQLitePCLRaw.core.2.0.2\lib\netstandard2.0\SQLitePCLRaw.core.dll</HintPath>
  167. </Reference>
  168. <Reference Include="SQLitePCLRaw.nativelibrary, Version=2.0.2.669, Culture=neutral, PublicKeyToken=502ed628492ab262, processorArchitecture=MSIL">
  169. <HintPath>packages\SQLitePCLRaw.bundle_green.2.0.2\lib\net461\SQLitePCLRaw.nativelibrary.dll</HintPath>
  170. </Reference>
  171. <Reference Include="SQLitePCLRaw.provider.dynamic_cdecl, Version=2.0.2.669, Culture=neutral, PublicKeyToken=b68184102cba0b3b, processorArchitecture=MSIL">
  172. <HintPath>packages\SQLitePCLRaw.provider.dynamic_cdecl.2.0.2\lib\netstandard2.0\SQLitePCLRaw.provider.dynamic_cdecl.dll</HintPath>
  173. </Reference>
  174. <Reference Include="System" />
  175. <Reference Include="System.Buffers, Version=4.0.2.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
  176. <HintPath>packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll</HintPath>
  177. </Reference>
  178. <Reference Include="System.Configuration" />
  179. <Reference Include="System.Data" />
  180. <Reference Include="System.Deployment" />
  181. <Reference Include="System.Drawing" />
  182. <Reference Include="System.IO.Compression.FileSystem" />
  183. <Reference Include="System.Management" />
  184. <Reference Include="System.Memory, Version=4.0.1.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
  185. <HintPath>packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll</HintPath>
  186. </Reference>
  187. <Reference Include="System.Numerics" />
  188. <Reference Include="System.Numerics.Vectors, Version=4.1.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  189. <HintPath>packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll</HintPath>
  190. </Reference>
  191. <Reference Include="System.Printing" />
  192. <Reference Include="System.Runtime.CompilerServices.Unsafe, Version=4.0.4.1, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  193. <HintPath>packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll</HintPath>
  194. </Reference>
  195. <Reference Include="System.ValueTuple, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
  196. <HintPath>packages\System.ValueTuple.4.5.0\lib\net461\System.ValueTuple.dll</HintPath>
  197. </Reference>
  198. <Reference Include="System.Windows.Forms" />
  199. <Reference Include="System.Xml" />
  200. <Reference Include="Microsoft.CSharp" />
  201. <Reference Include="System.Core" />
  202. <Reference Include="System.Xml.Linq" />
  203. <Reference Include="System.Data.DataSetExtensions" />
  204. <Reference Include="System.Net.Http" />
  205. <Reference Include="System.Xaml">
  206. <RequiredTargetFramework>4.0</RequiredTargetFramework>
  207. </Reference>
  208. <Reference Include="VirtualizingWrapPanel, Version=1.5.7.0, Culture=neutral, processorArchitecture=MSIL">
  209. <SpecificVersion>False</SpecificVersion>
  210. <HintPath>packages\VirtualizingWrapPanel.1.5.7\lib\net452\VirtualizingWrapPanel.dll</HintPath>
  211. </Reference>
  212. <Reference Include="WindowsBase" />
  213. <Reference Include="PresentationCore" />
  214. <Reference Include="PresentationFramework" />
  215. </ItemGroup>
  216. <ItemGroup>
  217. <ApplicationDefinition Include="App.xaml">
  218. <Generator>MSBuild:Compile</Generator>
  219. <SubType>Designer</SubType>
  220. </ApplicationDefinition>
  221. <Compile Include="CustomControl\AlertsMessage.xaml.cs">
  222. <DependentUpon>AlertsMessage.xaml</DependentUpon>
  223. </Compile>
  224. <Compile Include="CustomControl\BatchStatus.xaml.cs">
  225. <DependentUpon>BatchStatus.xaml</DependentUpon>
  226. </Compile>
  227. <Compile Include="CustomControl\ColorDropBox.xaml.cs">
  228. <DependentUpon>ColorDropBox.xaml</DependentUpon>
  229. </Compile>
  230. <Compile Include="CustomControl\ColorDropBoxPop.xaml.cs">
  231. <DependentUpon>ColorDropBoxPop.xaml</DependentUpon>
  232. </Compile>
  233. <Compile Include="CustomControl\CommonWritableComboBox.xaml.cs">
  234. <DependentUpon>CommonWritableComboBox.xaml</DependentUpon>
  235. </Compile>
  236. <Compile Include="CustomControl\CompositeControl\ColorSubContent.xaml.cs">
  237. <DependentUpon>ColorSubContent.xaml</DependentUpon>
  238. </Compile>
  239. <Compile Include="CustomControl\CompositeControl\CustomComboControl.xaml.cs">
  240. <DependentUpon>CustomComboControl.xaml</DependentUpon>
  241. </Compile>
  242. <Compile Include="CustomControl\CompositeControl\SlidComboControl.xaml.cs">
  243. <DependentUpon>SlidComboControl.xaml</DependentUpon>
  244. </Compile>
  245. <Compile Include="CustomControl\CustomIconToggleBtn.cs" />
  246. <Compile Include="CustomControl\CustomImageControl.cs" />
  247. <Compile Include="CustomControl\DialogContent.cs" />
  248. <Compile Include="CustomControl\Form\FormFieldCombox.xaml.cs">
  249. <DependentUpon>FormFieldCombox.xaml</DependentUpon>
  250. </Compile>
  251. <Compile Include="CustomControl\Form\LayoutAglinContent.xaml.cs">
  252. <DependentUpon>LayoutAglinContent.xaml</DependentUpon>
  253. </Compile>
  254. <Compile Include="CustomControl\IconAndTextTabItem.cs" />
  255. <Compile Include="CustomControl\ImageButton.cs" />
  256. <Compile Include="CustomControl\ImageRadioButton .cs" />
  257. <Compile Include="CustomControl\ListBoxItemToolBar.cs" />
  258. <Compile Include="CustomControl\MenuItemWithPath.cs" />
  259. <Compile Include="CustomControl\MessageBoxEx.cs" />
  260. <Compile Include="CustomControl\NumericUpDown.xaml.cs">
  261. <DependentUpon>NumericUpDown.xaml</DependentUpon>
  262. </Compile>
  263. <Compile Include="CustomControl\PageControl.xaml.cs">
  264. <DependentUpon>PageControl.xaml</DependentUpon>
  265. </Compile>
  266. <Compile Include="CustomControl\PageTurningPreview.xaml.cs">
  267. <DependentUpon>PageTurningPreview.xaml</DependentUpon>
  268. </Compile>
  269. <Compile Include="CustomControl\PaginationControl.xaml.cs">
  270. <DependentUpon>PaginationControl.xaml</DependentUpon>
  271. </Compile>
  272. <Compile Include="CustomControl\PathButton.cs" />
  273. <Compile Include="CustomControl\PathRadioButton.cs" />
  274. <Compile Include="CustomControl\ScanViewControl\CustomDraw.cs" />
  275. <Compile Include="CustomControl\ScanViewControl\CustomPanel.cs" />
  276. <Compile Include="CustomControl\ScanViewControl\DrawRect.cs" />
  277. <Compile Include="CustomControl\SystemControl\CustomCommandAction .cs" />
  278. <Compile Include="CustomControl\SystemControl\RoutedEventTrigger.cs" />
  279. <Compile Include="CustomControl\TextBoxEx.cs" />
  280. <Compile Include="CustomControl\TextBoxWithTip.xaml.cs">
  281. <DependentUpon>TextBoxWithTip.xaml</DependentUpon>
  282. </Compile>
  283. <Compile Include="CustomControl\ToastControl.xaml.cs">
  284. <DependentUpon>ToastControl.xaml</DependentUpon>
  285. </Compile>
  286. <Compile Include="CustomControl\WritableComboBox.xaml.cs">
  287. <DependentUpon>WritableComboBox.xaml</DependentUpon>
  288. </Compile>
  289. <Compile Include="DataConvert\AnnotateFontSizeConverter.cs" />
  290. <Compile Include="DataConvert\BoolToBrushConvert.cs" />
  291. <Compile Include="DataConvert\BoolToTextWrapConvert.cs" />
  292. <Compile Include="DataConvert\CenterToolTipConverter .cs" />
  293. <Compile Include="DataConvert\ColorBrushConvert.cs" />
  294. <Compile Include="DataConvert\CreateTimeToDate.cs" />
  295. <Compile Include="DataConvert\FileFormatToIconConvert.cs" />
  296. <Compile Include="DataConvert\GroupHeaderConverter.cs" />
  297. <Compile Include="DataConvert\IndexConverter .cs" />
  298. <Compile Include="DataConvert\IntToBooleanConvert.cs" />
  299. <Compile Include="DataConvert\FileToImageSourceConvert.cs" />
  300. <Compile Include="DataConvert\IntAndTagToBoolMultiBinding.cs" />
  301. <Compile Include="DataConvert\IntToColorBrush.cs" />
  302. <Compile Include="DataConvert\InvertBoolConvert.cs" />
  303. <Compile Include="DataConvert\ListCountToVisible.cs.cs" />
  304. <Compile Include="DataConvert\ObjectConvert.cs" />
  305. <Compile Include="DataConvert\PropertyPanelVisible.cs" />
  306. <Compile Include="DataConvert\StringToDateConvert.cs" />
  307. <Compile Include="DataConvert\StringToVisibleConvert.cs" />
  308. <Compile Include="DataConvert\UnVisivleConvert.cs" />
  309. <Compile Include="DataConvert\WidthConvert.cs" />
  310. <Compile Include="EventAggregators\EditToolsEvent.cs" />
  311. <Compile Include="EventAggregators\PageEditNotifyEvent.cs" />
  312. <Compile Include="EventAggregators\PageEditRefreshEvent.cs" />
  313. <Compile Include="EventAggregators\RedactionCommandEvent.cs" />
  314. <Compile Include="EventAggregators\ScanEvent.cs" />
  315. <Compile Include="EventAggregators\SendPrintInfoEvent.cs" />
  316. <Compile Include="EventAggregators\SplitEvent.cs" />
  317. <Compile Include="Helper\CacheFilePath.cs" />
  318. <Compile Include="Helper\ConverterHelper.cs" />
  319. <Compile Include="Helper\DpiHelpers.cs" />
  320. <Compile Include="Helper\EditToolsHelper.cs" />
  321. <Compile Include="Helper\AdvancedInvokeCommandAction.cs" />
  322. <Compile Include="Helper\ArrowHelper.cs" />
  323. <Compile Include="Helper\DragDropHelper.cs" />
  324. <Compile Include="Helper\HomePageEditHelper.cs" />
  325. <Compile Include="Helper\ObservableDictionary.cs" />
  326. <Compile Include="Helper\PasswordBoxHelper.cs" />
  327. <Compile Include="Helper\PopControlHelper.cs" />
  328. <Compile Include="Helper\RichTextBoxHelper.cs" />
  329. <Compile Include="Helper\SDKLisenceHelper.cs" />
  330. <Compile Include="Helper\PictureConverter.cs" />
  331. <Compile Include="Helper\SecurityHelper.cs" />
  332. <Compile Include="Helper\SetterAction.cs" />
  333. <Compile Include="Helper\SettingHelper.cs" />
  334. <Compile Include="Helper\ToolMethod.cs" />
  335. <Compile Include="Helper\UpdateAttributeHelper.cs" />
  336. <Compile Include="Model\AnnotPanel\Signature.cs" />
  337. <Compile Include="Model\BOTA\AnnotationHandlerEventArgs.cs" />
  338. <Compile Include="Model\AnnotPanel\Stamp.cs" />
  339. <Compile Include="Model\BOTA\AnnotationSortOrder.cs" />
  340. <Compile Include="Model\BOTA\AuthorItem.cs" />
  341. <Compile Include="Model\BOTA\OutlineNode.cs" />
  342. <Compile Include="Model\CloudDrive\CloudDriveItem.cs" />
  343. <Compile Include="Model\CloudDrive\CloudFiles.cs" />
  344. <Compile Include="Model\DialogNames.cs" />
  345. <Compile Include="CustomControl\SystemControl\InterTabClient.cs" />
  346. <Compile Include="CustomControl\LoadingControl.xaml.cs">
  347. <DependentUpon>LoadingControl.xaml</DependentUpon>
  348. </Compile>
  349. <Compile Include="Model\Dialog\ConverterDialogs\ConverterCSVDialogModel.cs" />
  350. <Compile Include="Model\Dialog\ConverterDialogs\ConverterDialogsModel.cs" />
  351. <Compile Include="Model\Dialog\ConverterDialogs\ConverterExcelDialogModel.cs" />
  352. <Compile Include="Model\Dialog\ConverterDialogs\ConverterHTMLDialogModel.cs" />
  353. <Compile Include="Model\Dialog\ConverterDialogs\ConverterImgDialogModel.cs" />
  354. <Compile Include="Model\Dialog\ConverterDialogs\ConverterPPTDialogModel.cs" />
  355. <Compile Include="Model\Dialog\ConverterDialogs\ConverterRTFDialogModel.cs" />
  356. <Compile Include="Model\Dialog\ConverterDialogs\ConverterTextDialogModel.cs" />
  357. <Compile Include="Model\Dialog\ConverterDialogs\ConverterWordDialogModel.cs" />
  358. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBatchProcessingDialogModel.cs" />
  359. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageCompressDialogModel.cs" />
  360. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterCSVModel.cs" />
  361. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterDialogModel.cs" />
  362. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterExcelModel.cs" />
  363. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterHTMLModel.cs" />
  364. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterImgModel.cs" />
  365. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterPPTModel.cs" />
  366. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterRTFModel.cs" />
  367. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterTextModel.cs" />
  368. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterWordModel.cs" />
  369. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageSetPasswordDialogModel.cs" />
  370. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePagePictureToPDFDialogModel.cs" />
  371. <Compile Include="Model\Dialog\HomePageToolsDialogs\HtmlModel.cs" />
  372. <Compile Include="Model\Dialog\ToolsDialogs\CompressDialogModel\CompressDialogModel.cs" />
  373. <Compile Include="Model\Dialog\ToolsDialogs\MergeObject.cs" />
  374. <Compile Include="Model\Dialog\ToolsDialogs\SaftyDialogs\CheckPasswordDialogModel.cs" />
  375. <Compile Include="Model\Dialog\ToolsDialogs\SaftyDialogs\DeleteSafetySettintgsModel.cs" />
  376. <Compile Include="Model\Dialog\ToolsDialogs\SaftyDialogs\SetPasswordDialogModel.cs" />
  377. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageExtractDialogModel.cs" />
  378. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageInsertDialogModel.cs" />
  379. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterDialogModel.cs" />
  380. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageSplitDialogModel.cs" />
  381. <Compile Include="Model\EditTools\Background\BackgroundCreateModel.cs" />
  382. <Compile Include="Model\EditTools\Background\BackgroundTemplateListModel.cs" />
  383. <Compile Include="Model\EditTools\Bates\BatesCreateModel.cs" />
  384. <Compile Include="Model\EditTools\HeaderFooter\HeaderFooterCreateModel.cs" />
  385. <Compile Include="Model\EditTools\Watermark\WatermarkCreateModel.cs" />
  386. <Compile Include="Model\EditTools\Watermark\WatermarkTemplateListModel.cs" />
  387. <Compile Include="Model\From\FormFieldType.cs" />
  388. <Compile Include="Model\PageEdit\CustomInsertModel.cs" />
  389. <Compile Include="Model\PageEdit\CustomPageItem.cs" />
  390. <Compile Include="Model\PageEdit\ExtractModel.cs" />
  391. <Compile Include="Model\PageEdit\PageEditHistory.cs" />
  392. <Compile Include="Model\PageEdit\PageEditItem.cs" />
  393. <Compile Include="Model\PageEdit\PageItemUnits.cs" />
  394. <Compile Include="Model\ParameterNames.cs" />
  395. <Compile Include="Model\PDFTool\ToolItem.cs" />
  396. <Compile Include="Model\PropertyPanel\AnnotPanel\FontStyleItem.cs" />
  397. <Compile Include="Model\RegionNames.cs" />
  398. <Compile Include="CustomControl\SystemControl\TabablzRegionBehavior.cs" />
  399. <Compile Include="DataConvert\BoolToVisible.cs" />
  400. <Compile Include="DataConvert\VisibleToBoolConvert.cs" />
  401. <Compile Include="EventAggregators\DragablzWindowEvent.cs" />
  402. <Compile Include="EventAggregators\OpenFileEvent.cs" />
  403. <Compile Include="Helper\CommonHelper.cs" />
  404. <Compile Include="Model\SettingsDialog\AnnotateModel.cs" />
  405. <Compile Include="Model\SettingsDialog\DescriptionModel.cs" />
  406. <Compile Include="Model\SettingsDialog\InitialVIewModel.cs" />
  407. <Compile Include="Properties\Resources.Designer.cs">
  408. <DependentUpon>Resources.resx</DependentUpon>
  409. <DesignTime>True</DesignTime>
  410. <AutoGen>True</AutoGen>
  411. </Compile>
  412. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\CreateFromHtmlDialogViewModel.cs" />
  413. <Compile Include="ViewModels\Dialog\PropertiesDialogViewModel.cs" />
  414. <Compile Include="ViewModels\Dialog\Redaction\MarkSettingDialogViewModel.cs" />
  415. <Compile Include="ViewModels\Dialog\Redaction\PageMarkDialogViewModel.cs" />
  416. <Compile Include="ViewModels\Dialog\Redaction\RepeatMarkDialogViewModel.cs" />
  417. <Compile Include="ViewModels\Dialog\SettingsDialogViewModel.cs" />
  418. <Compile Include="ViewModels\Dialog\ToolsDialogs\MergeDialogViewModel.cs" />
  419. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageRemoveDialogViewModel.cs" />
  420. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterDocumentContentViewModel.cs" />
  421. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterPaperSettingsDialogViewModel.cs" />
  422. <Compile Include="ViewModels\EditTools\Bates\BatesContentViewModel.cs" />
  423. <Compile Include="ViewModels\EditTools\Bates\BatesCreateContentViewModel.cs" />
  424. <Compile Include="ViewModels\EditTools\Bates\BatesDocumentContentViewModel.cs" />
  425. <Compile Include="ViewModels\EditTools\Bates\BatesTemplateListContentViewModel.cs" />
  426. <Compile Include="ViewModels\BOTA\AnnotationContentViewModel.cs" />
  427. <Compile Include="ViewModels\BOTA\BookmarkContentViewModel.cs" />
  428. <Compile Include="ViewModels\Dialog\BOTA\AddAnnotationDialogViewModel.cs" />
  429. <Compile Include="ViewModels\BOTA\OutLineControlViewModel.cs" />
  430. <Compile Include="ViewModels\BOTA\SearchContentViewModel.cs" />
  431. <Compile Include="ViewModels\Dialog\BOTA\AddBookmarkDialogViewModel.cs" />
  432. <Compile Include="ViewModels\Dialog\BOTA\BookmarkInfoDialogViewModel.cs" />
  433. <Compile Include="ViewModels\Dialog\BOTA\ScreenAnnotationDialogViewModel.cs" />
  434. <Compile Include="ViewModels\EditTools\Background\BackgroundContentViewModel.cs" />
  435. <Compile Include="ViewModels\BOTA\BOTAContentViewModel.cs" />
  436. <Compile Include="ViewModels\BottomToolContentViewModel.cs" />
  437. <Compile Include="ViewModels\Dialog\ConverterDialogs\ConverterProgressBarDialogViewModel.cs" />
  438. <Compile Include="ViewModels\Dialog\ConverterDialogs\ConverterCSVDialogViewModel.cs" />
  439. <Compile Include="ViewModels\Dialog\ConverterDialogs\ConverterExcelDialogViewModel.cs" />
  440. <Compile Include="ViewModels\Dialog\ConverterDialogs\ConverterHTMLDialogViewModel.cs" />
  441. <Compile Include="ViewModels\Dialog\ConverterDialogs\ConverterImgDialogViewModel.cs" />
  442. <Compile Include="ViewModels\Dialog\ConverterDialogs\ConverterPPTDialogViewModel.cs" />
  443. <Compile Include="ViewModels\Dialog\ConverterDialogs\ConverterRTFDialogViewModel.cs" />
  444. <Compile Include="ViewModels\Dialog\ConverterDialogs\ConverterTextDialogViewModel.cs" />
  445. <Compile Include="ViewModels\Dialog\ConverterDialogs\ConverterWordDialogViewModel.cs" />
  446. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterDialogViewModel.cs" />
  447. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterCSVViewModel.cs" />
  448. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterExcelViewModel.cs" />
  449. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterImgViewModel.cs" />
  450. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterWordViewModel.cs" />
  451. <Compile Include="ViewModels\EditTools\Background\BackgroundCreateBaseContentViewModel.cs" />
  452. <Compile Include="ViewModels\EditTools\Background\BackgroundCreateColorContentViewModel.cs" />
  453. <Compile Include="ViewModels\EditTools\Background\BackgroundCreateFileContentViewModel.cs" />
  454. <Compile Include="ViewModels\EditTools\Background\BackgroundDocumentContentViewModel.cs" />
  455. <Compile Include="ViewModels\EditTools\Background\BackgroundTemplateListBaseContentViewModel.cs" />
  456. <Compile Include="ViewModels\EditTools\Background\BackgroundTemplateListColorContentViewModel.cs" />
  457. <Compile Include="ViewModels\EditTools\Background\BackgroundTemplateListFileContentViewModel.cs" />
  458. <Compile Include="ViewModels\EditTools\HeaderFooter\HeaderFooterContentViewModel.cs" />
  459. <Compile Include="ViewModels\EditTools\HeaderFooter\HeaderFooterCreateContentViewModel.cs" />
  460. <Compile Include="ViewModels\EditTools\HeaderFooter\HeaderFooterDocumentContentViewModel.cs" />
  461. <Compile Include="ViewModels\EditTools\HeaderFooter\HeaderFooterTemplateListContentViewModel.cs" />
  462. <Compile Include="ViewModels\EditTools\Redaction\RedactionContentViewModel.cs" />
  463. <Compile Include="ViewModels\Form\ButtonPropertyViewModel.cs" />
  464. <Compile Include="ViewModels\Form\CheckBoxPropertyViewModel.cs" />
  465. <Compile Include="ViewModels\Form\ComboxPropertyViewModel.cs" />
  466. <Compile Include="ViewModels\Form\EditPresetColorsDialogViewModel.cs" />
  467. <Compile Include="ViewModels\Form\FormBaseVM.cs" />
  468. <Compile Include="ViewModels\Form\FormsToolContentViewModel.cs" />
  469. <Compile Include="ViewModels\Form\ListBoxPropertyViewModel.cs" />
  470. <Compile Include="ViewModels\Form\RadioButtonPropertyViewModel.cs" />
  471. <Compile Include="ViewModels\Form\SignPropertyViewModel.cs" />
  472. <Compile Include="ViewModels\Form\TextFieldPropertyViewModel.cs" />
  473. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBackground\HomePageBackgroundDialogViewModel.cs" />
  474. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBates\HomePageBatesDialogViewModel.cs" />
  475. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageHeaderFooter\HomePageHeaderFooterDialogViewModel.cs" />
  476. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageWatermark\HomePageWatermarkDialogViewModel.cs" />
  477. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageHeaderFooter\HomePageHeaderFooterCreateContentViewModel.cs" />
  478. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageHeaderFooter\HomePageHeaderFooterTemplateListContentViewModel.cs" />
  479. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBates\HomePageBatesCreateContentViewModel.cs" />
  480. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBates\HomePageBatesTemplateListContentViewModel.cs" />
  481. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBackground\HomePageBackgroundCreateBaseContentViewModel.cs" />
  482. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBackground\HomePageBackgroundCreateColorContentViewModel.cs" />
  483. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBackground\HomePageBackgroundCreateFileContentViewModel.cs" />
  484. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBackground\HomePageBackgroundTemplateListBaseContentViewModel.cs" />
  485. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBackground\HomePageBackgroundTemplateListColorContentViewModel.cs" />
  486. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBackground\HomePageBackgroundTemplateListFileContentViewModel.cs" />
  487. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageWatermark\HomePageWatermarkCreateBaseContentViewModel.cs" />
  488. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageWatermark\HomePageWatermarkCreateFileContentViewModel.cs" />
  489. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageWatermark\HomePageWatermarkCreateTextContentViewModel.cs" />
  490. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageWatermark\HomePageWatermarkTemplateListBaseContentViewModel.cs" />
  491. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageWatermark\HomePageWatermarkTemplateListFileContentViewModel.cs" />
  492. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageWatermark\HomePageWatermarkTemplateListTextContentViewModel.cs" />
  493. <Compile Include="ViewModels\HomePanel\PDFTools\PDFToolsContentViewModel.cs" />
  494. <Compile Include="ViewModels\HomePanel\PDFTools\QuickToolsContentViewModel.cs" />
  495. <Compile Include="ViewModels\PropertyPanel\AnnotPanel\SignatureAnnotPropertyViewModel.cs" />
  496. <Compile Include="ViewModels\PropertyPanel\AnnotPanel\SignatureCreateDialogViewModel.cs" />
  497. <Compile Include="ViewModels\PropertyPanel\AnnotPanel\SnapshotEditMenuViewModel.cs" />
  498. <Compile Include="ViewModels\PropertyPanel\AnnotPanel\StickyNotePropertyViewModel.cs" />
  499. <Compile Include="ViewModels\PropertyPanel\FontSetModeVM.cs" />
  500. <Compile Include="ViewModels\PropertyPanel\PDFEdit\ImageEditPropertyViewModel.cs" />
  501. <Compile Include="ViewModels\PropertyPanel\PDFEdit\ImageTextEditPropertyViewModel.cs" />
  502. <Compile Include="ViewModels\PropertyPanel\PDFEdit\PDFEditVM.cs" />
  503. <Compile Include="ViewModels\PropertyPanel\PDFEdit\TextEditPropertyViewModel.cs" />
  504. <Compile Include="ViewModels\PropertyPanel\Scan\ScanPropertyPanelViewModel.cs" />
  505. <Compile Include="ViewModels\PropertyPanel\ViewModular\ReadViewContentViewModel.cs" />
  506. <Compile Include="ViewModels\HomePanel\RecentFiles\RecentFilesContentViewModel.cs" />
  507. <Compile Include="ViewModels\Dialog\CustomCreateDialogViewModel.cs" />
  508. <Compile Include="ViewModels\Dialog\DynamicPropertyDialogViewModel.cs" />
  509. <Compile Include="ViewModels\PropertyPanel\ViewModular\PageContentViewModel.cs" />
  510. <Compile Include="ViewModels\Scan\ScanViwerViewModel.cs" />
  511. <Compile Include="ViewModels\TipContent\LinkAnnotTipViewModel.cs" />
  512. <Compile Include="ViewModels\Tools\AnnotToolContentViewModel.Command.cs" />
  513. <Compile Include="ViewModels\Tools\ConverterBarContentViewModel.cs" />
  514. <Compile Include="ViewModels\Dialog\ExtractDialogViewModel.cs" />
  515. <Compile Include="ViewModels\Dialog\FullScreenWindowViewModel.cs" />
  516. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBatchProcessingDialogViewModel.cs" />
  517. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageCompressDialogViewModel.cs" />
  518. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageSetPasswordDialogViewModel.cs" />
  519. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterModBookletContentViewModel.cs" />
  520. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterModMultipleContentViewModel.cs" />
  521. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterModPosterContentViewModel.cs" />
  522. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterModSizeContentViewModel.cs" />
  523. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageSplitDialogViewModel.cs" />
  524. <Compile Include="ViewModels\Dialog\PageEditDialogs\ExtractDialogViewModel.cs" />
  525. <Compile Include="ViewModels\Dialog\PageEditDialogs\InsertDialogViewModel.cs" />
  526. <Compile Include="ViewModels\Dialog\PageEditDialogs\SplitDialogViewModel.cs" />
  527. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterDialogViewModel.cs" />
  528. <Compile Include="ViewModels\Dialog\ToolsDialogs\CompressDialogs\CompressDialogViewModel.cs" />
  529. <Compile Include="ViewModels\Dialog\ToolsDialogs\CompressDialogs\CompressProgressBarDialogViewModel.cs" />
  530. <Compile Include="ViewModels\Dialog\ToolsDialogs\SaftyDialogs\DeleteSafetySettingsDialogViewModel.cs" />
  531. <Compile Include="ViewModels\Dialog\ToolsDialogs\SaftyDialogs\CheckPasswordDialogViewModel.cs" />
  532. <Compile Include="ViewModels\Dialog\ToolsDialogs\SaftyDialogs\SetPasswordDialogViewModel.cs" />
  533. <Compile Include="ViewModels\Dialog\VerifyPassWordDialogViewModel.cs" />
  534. <Compile Include="ViewModels\FillAndSign\FillAndSignContentViewModel.cs" />
  535. <Compile Include="ViewModels\FillAndSign\PropertyPanel\DateFillPropertyViewModel.cs" />
  536. <Compile Include="ViewModels\FillAndSign\PropertyPanel\ShapFillPropertyViewModel.cs" />
  537. <Compile Include="ViewModels\FillAndSign\PropertyPanel\TextFillPropertyViewModel.cs" />
  538. <Compile Include="ViewModels\HomePanel\CloudDrive\CloudDriveContentViewModel.cs" />
  539. <Compile Include="ViewModels\HomePanel\CloudDrive\CloudDriveManager.cs" />
  540. <Compile Include="ViewModels\HomePanel\CloudDrive\CloudFilesContentViewModel.cs" />
  541. <Compile Include="ViewModels\HomePanel\CloudDrive\CloudDriveType\DropbBoxManager.cs" />
  542. <Compile Include="ViewModels\HomePanel\CloudDrive\CloudDriveType\DropbBoxUserItem.cs" />
  543. <Compile Include="ViewModels\HomePanel\CloudDrive\CloudDriveType\GoogleDriveManager.cs" />
  544. <Compile Include="ViewModels\HomePanel\CloudDrive\CloudDriveType\GoogleDriveUserItem.cs" />
  545. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePagePictureToPDFDialogViewModel.cs" />
  546. <Compile Include="ViewModels\HomePanel\HomeCloudContentViewModel.cs" />
  547. <Compile Include="ViewModels\HomePanel\HomeGuidContentViewModel.cs" />
  548. <Compile Include="ViewModels\HomePanel\HomeToolsContentViewModel.cs" />
  549. <Compile Include="ViewModels\MainContentViewModel.cs" />
  550. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageExtractDialogViewModel.cs" />
  551. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageInsertDialogViewModel.cs" />
  552. <Compile Include="ViewModels\PageEdit\PageEditContentViewModel.cs" />
  553. <Compile Include="ViewModels\PropertyPanel\AnnotPanel\FreehandAnnotPropertyViewModel.cs" />
  554. <Compile Include="ViewModels\PropertyPanel\AnnotPanel\FreetextAnnotPropertyViewModel.cs" />
  555. <Compile Include="ViewModels\PropertyPanel\AnnotPanel\ImageAnnotPropertyViewModel.cs" />
  556. <Compile Include="ViewModels\PropertyPanel\AnnotPanel\LinkAnnotPropertyViewModel.cs" />
  557. <Compile Include="ViewModels\PropertyPanel\AnnotPanel\SharpsAnnotPropertyViewModel.cs" />
  558. <Compile Include="ViewModels\PropertyPanel\AnnotPanel\StampAnnotPropertyViewModel.cs" />
  559. <Compile Include="ViewModels\PropertyPanel\AnnotPanel\TextAnnotPropertyViewModel.cs" />
  560. <Compile Include="ViewModels\PropertyPanel\PropertyPanelContentViewModel.cs" />
  561. <Compile Include="ViewModels\PropertyPanel\ViewModular\ReadModeContentViewModel.cs" />
  562. <Compile Include="ViewModels\PropertyPanel\ViewModular\SplitScreenContentViewModel.cs" />
  563. <Compile Include="ViewModels\PropertyPanel\ViewModular\ThemesContentViewModel.cs" />
  564. <Compile Include="ViewModels\PropertyPanel\ViewModular\ViewModularContentViewModel.cs" />
  565. <Compile Include="ViewModels\Tools\AnnotToolContentViewModel.cs" />
  566. <Compile Include="ViewModels\Tools\AnnotToolContentViewModel.Function.cs" />
  567. <Compile Include="ViewModels\Tools\AnnotToolContentViewModel.Properties.cs" />
  568. <Compile Include="ViewModels\Tools\ScanContentViewModel.cs" />
  569. <Compile Include="ViewModels\Tools\TextEditToolContentViewModel.cs" />
  570. <Compile Include="ViewModels\Tools\ToolsBarContentViewModel.cs" />
  571. <Compile Include="ViewModels\EditTools\Watermark\WatermarkContentViewModel.cs" />
  572. <Compile Include="ViewModels\EditTools\Watermark\WatermarkCreateBaseContentViewModel.cs" />
  573. <Compile Include="ViewModels\EditTools\Watermark\WatermarkCreateFileContentViewModel.cs" />
  574. <Compile Include="ViewModels\EditTools\Watermark\WatermarkCreateTextContentViewModel.cs" />
  575. <Compile Include="ViewModels\EditTools\Watermark\WatermarkTemplateListBaseContentViewModel.cs" />
  576. <Compile Include="ViewModels\EditTools\Watermark\WatermarkTemplateListFileContentViewModel.cs" />
  577. <Compile Include="ViewModels\EditTools\Watermark\WatermarkTemplateListTextContentViewModel.cs" />
  578. <Compile Include="Views\BOTA\AnnotationContent.xaml.cs">
  579. <DependentUpon>AnnotationContent.xaml</DependentUpon>
  580. </Compile>
  581. <Compile Include="Views\BOTA\AnnotationListItem.xaml.cs">
  582. <DependentUpon>AnnotationListItem.xaml</DependentUpon>
  583. </Compile>
  584. <Compile Include="Views\BOTA\BookmarkContent.xaml.cs">
  585. <DependentUpon>BookmarkContent.xaml</DependentUpon>
  586. </Compile>
  587. <Compile Include="ViewModels\EditTools\Watermark\WatermarkDocumentContentViewModel.cs" />
  588. <Compile Include="Views\BOTA\BOTAContent.xaml.cs">
  589. <DependentUpon>BOTAContent.xaml</DependentUpon>
  590. </Compile>
  591. <Compile Include="Views\BOTA\OutLineControl.xaml.cs">
  592. <DependentUpon>OutLineControl.xaml</DependentUpon>
  593. </Compile>
  594. <Compile Include="Views\BOTA\SearchContent.xaml.cs">
  595. <DependentUpon>SearchContent.xaml</DependentUpon>
  596. </Compile>
  597. <Compile Include="Views\BottomToolContent.xaml.cs">
  598. <DependentUpon>BottomToolContent.xaml</DependentUpon>
  599. </Compile>
  600. <Compile Include="Views\Dialog\BOTA\AddAnnotationDialog.xaml.cs">
  601. <DependentUpon>AddAnnotationDialog.xaml</DependentUpon>
  602. </Compile>
  603. <Compile Include="Views\Dialog\BOTA\ScreenAnnotationDialog.xaml.cs">
  604. <DependentUpon>ScreenAnnotationDialog.xaml</DependentUpon>
  605. </Compile>
  606. <Compile Include="Views\Dialog\ConverterDialogs\ConverterCSVDialog.xaml.cs">
  607. <DependentUpon>ConverterCSVDialog.xaml</DependentUpon>
  608. </Compile>
  609. <Compile Include="Views\Dialog\ConverterDialogs\ConverterExcelDialog.xaml.cs">
  610. <DependentUpon>ConverterExcelDialog.xaml</DependentUpon>
  611. </Compile>
  612. <Compile Include="Views\Dialog\ConverterDialogs\ConverterHTMLDialog.xaml.cs">
  613. <DependentUpon>ConverterHTMLDialog.xaml</DependentUpon>
  614. </Compile>
  615. <Compile Include="Views\Dialog\ConverterDialogs\ConverterImgDialog.xaml.cs">
  616. <DependentUpon>ConverterImgDialog.xaml</DependentUpon>
  617. </Compile>
  618. <Compile Include="Views\Dialog\ConverterDialogs\ConverterPPTDialog.xaml.cs">
  619. <DependentUpon>ConverterPPTDialog.xaml</DependentUpon>
  620. </Compile>
  621. <Compile Include="Views\Dialog\ConverterDialogs\ConverterProgressBarDialog.xaml.cs">
  622. <DependentUpon>ConverterProgressBarDialog.xaml</DependentUpon>
  623. </Compile>
  624. <Compile Include="Views\Dialog\ConverterDialogs\ConverterRTFDialog.xaml.cs">
  625. <DependentUpon>ConverterRTFDialog.xaml</DependentUpon>
  626. </Compile>
  627. <Compile Include="Views\Dialog\ConverterDialogs\ConverterTextDialog.xaml.cs">
  628. <DependentUpon>ConverterTextDialog.xaml</DependentUpon>
  629. </Compile>
  630. <Compile Include="Views\Dialog\ConverterDialogs\ConverterWordDialog.xaml.cs">
  631. <DependentUpon>ConverterWordDialog.xaml</DependentUpon>
  632. </Compile>
  633. <Compile Include="Views\Dialog\BOTA\AddBookmarkDialog.xaml.cs">
  634. <DependentUpon>AddBookmarkDialog.xaml</DependentUpon>
  635. </Compile>
  636. <Compile Include="Views\Dialog\BOTA\BookmarkInfoDialog.xaml.cs">
  637. <DependentUpon>BookmarkInfoDialog.xaml</DependentUpon>
  638. </Compile>
  639. <Compile Include="Views\Dialog\FullScreenWindow.xaml.cs">
  640. <DependentUpon>FullScreenWindow.xaml</DependentUpon>
  641. </Compile>
  642. <Compile Include="Views\Dialog\HomePageToolsDialogs\CreateFromHtmlDialog.xaml.cs">
  643. <DependentUpon>CreateFromHtmlDialog.xaml</DependentUpon>
  644. </Compile>
  645. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBackground\HomePageBackgroundCreateBaseContent.xaml.cs">
  646. <DependentUpon>HomePageBackgroundCreateBaseContent.xaml</DependentUpon>
  647. </Compile>
  648. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBackground\HomePageBackgroundCreateColorContent.xaml.cs">
  649. <DependentUpon>HomePageBackgroundCreateColorContent.xaml</DependentUpon>
  650. </Compile>
  651. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBackground\HomePageBackgroundCreateFileContent.xaml.cs">
  652. <DependentUpon>HomePageBackgroundCreateFileContent.xaml</DependentUpon>
  653. </Compile>
  654. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBackground\HomePageBackgroundDialog.xaml.cs">
  655. <DependentUpon>HomePageBackgroundDialog.xaml</DependentUpon>
  656. </Compile>
  657. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBackground\HomePageBackgroundTemplateListBaseContent.xaml.cs">
  658. <DependentUpon>HomePageBackgroundTemplateListBaseContent.xaml</DependentUpon>
  659. </Compile>
  660. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBackground\HomePageBackgroundTemplateListColorContent.xaml.cs">
  661. <DependentUpon>HomePageBackgroundTemplateListColorContent.xaml</DependentUpon>
  662. </Compile>
  663. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBackground\HomePageBackgroundTemplateListFileContent.xaml.cs">
  664. <DependentUpon>HomePageBackgroundTemplateListFileContent.xaml</DependentUpon>
  665. </Compile>
  666. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBates\HomePageBatesCreateContent.xaml.cs">
  667. <DependentUpon>HomePageBatesCreateContent.xaml</DependentUpon>
  668. </Compile>
  669. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBates\HomePageBatesTemplateListContent.xaml.cs">
  670. <DependentUpon>HomePageBatesTemplateListContent.xaml</DependentUpon>
  671. </Compile>
  672. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageHeaderFooter\HomePageHeaderFooterCreateContent.xaml.cs">
  673. <DependentUpon>HomePageHeaderFooterCreateContent.xaml</DependentUpon>
  674. </Compile>
  675. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageHeaderFooter\HomePageHeaderFooterTemplateListContent.xaml.cs">
  676. <DependentUpon>HomePageHeaderFooterTemplateListContent.xaml</DependentUpon>
  677. </Compile>
  678. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBatchProcessingDialog.xaml.cs">
  679. <DependentUpon>HomePageBatchProcessingDialog.xaml</DependentUpon>
  680. </Compile>
  681. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBates\HomePageBatesDialog.xaml.cs">
  682. <DependentUpon>HomePageBatesDialog.xaml</DependentUpon>
  683. </Compile>
  684. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageCompressDialog.xaml.cs">
  685. <DependentUpon>HomePageCompressDialog.xaml</DependentUpon>
  686. </Compile>
  687. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterCSV.xaml.cs">
  688. <DependentUpon>HomePageConverterCSV.xaml</DependentUpon>
  689. </Compile>
  690. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterDialog.xaml.cs">
  691. <DependentUpon>HomePageConverterDialog.xaml</DependentUpon>
  692. </Compile>
  693. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterExcel.xaml.cs">
  694. <DependentUpon>HomePageConverterExcel.xaml</DependentUpon>
  695. </Compile>
  696. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterImg.xaml.cs">
  697. <DependentUpon>HomePageConverterImg.xaml</DependentUpon>
  698. </Compile>
  699. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterWord.xaml.cs">
  700. <DependentUpon>HomePageConverterWord.xaml</DependentUpon>
  701. </Compile>
  702. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageHeaderFooter\HomePageHeaderFooterDialog.xaml.cs">
  703. <DependentUpon>HomePageHeaderFooterDialog.xaml</DependentUpon>
  704. </Compile>
  705. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageRemoveDialog.xaml.cs">
  706. <DependentUpon>HomePageRemoveDialog.xaml</DependentUpon>
  707. </Compile>
  708. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageSetPasswordDialog.xaml.cs">
  709. <DependentUpon>HomePageSetPasswordDialog.xaml</DependentUpon>
  710. </Compile>
  711. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageWatermark\HomePageWatermarkCreateBaseContent.xaml.cs">
  712. <DependentUpon>HomePageWatermarkCreateBaseContent.xaml</DependentUpon>
  713. </Compile>
  714. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageWatermark\HomePageWatermarkCreateFileContent.xaml.cs">
  715. <DependentUpon>HomePageWatermarkCreateFileContent.xaml</DependentUpon>
  716. </Compile>
  717. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageWatermark\HomePageWatermarkCreateTextContent.xaml.cs">
  718. <DependentUpon>HomePageWatermarkCreateTextContent.xaml</DependentUpon>
  719. </Compile>
  720. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageWatermark\HomePageWatermarkDialog.xaml.cs">
  721. <DependentUpon>HomePageWatermarkDialog.xaml</DependentUpon>
  722. </Compile>
  723. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageWatermark\HomePageWatermarkTemplateListBaseContent.xaml.cs">
  724. <DependentUpon>HomePageWatermarkTemplateListBaseContent.xaml</DependentUpon>
  725. </Compile>
  726. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageWatermark\HomePageWatermarkTemplateListFileContent.xaml.cs">
  727. <DependentUpon>HomePageWatermarkTemplateListFileContent.xaml</DependentUpon>
  728. </Compile>
  729. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageWatermark\HomePageWatermarkTemplateListTextContent.xaml.cs">
  730. <DependentUpon>HomePageWatermarkTemplateListTextContent.xaml</DependentUpon>
  731. </Compile>
  732. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageExtractDialog.xaml.cs">
  733. <DependentUpon>HomePageExtractDialog.xaml</DependentUpon>
  734. </Compile>
  735. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageInsertDialog.xaml.cs">
  736. <DependentUpon>HomePageInsertDialog.xaml</DependentUpon>
  737. </Compile>
  738. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePagePictureToPDFDialog.xaml.cs">
  739. <DependentUpon>HomePagePictureToPDFDialog.xaml</DependentUpon>
  740. </Compile>
  741. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterDocumentContent.xaml.cs">
  742. <DependentUpon>HomePagePrinterDocumentContent.xaml</DependentUpon>
  743. </Compile>
  744. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterModBookletContent.xaml.cs">
  745. <DependentUpon>HomePagePrinterModBookletContent.xaml</DependentUpon>
  746. </Compile>
  747. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterModMultipleContent.xaml.cs">
  748. <DependentUpon>HomePagePrinterModMultipleContent.xaml</DependentUpon>
  749. </Compile>
  750. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterModPosterContent.xaml.cs">
  751. <DependentUpon>HomePagePrinterModPosterContent.xaml</DependentUpon>
  752. </Compile>
  753. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterModSizeContent.xaml.cs">
  754. <DependentUpon>HomePagePrinterModSizeContent.xaml</DependentUpon>
  755. </Compile>
  756. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterPaperSettingsDialog.xaml.cs">
  757. <DependentUpon>HomePagePrinterPaperSettingsDialog.xaml</DependentUpon>
  758. </Compile>
  759. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageSplitDialog.xaml.cs">
  760. <DependentUpon>HomePageSplitDialog.xaml</DependentUpon>
  761. </Compile>
  762. <Compile Include="Views\Dialog\PageEditDialogs\ExtractDialog.xaml.cs">
  763. <DependentUpon>ExtractDialog.xaml</DependentUpon>
  764. </Compile>
  765. <Compile Include="Views\Dialog\PageEditDialogs\InsertDialog.xaml.cs">
  766. <DependentUpon>InsertDialog.xaml</DependentUpon>
  767. </Compile>
  768. <Compile Include="Views\Dialog\PageEditDialogs\SplitDialog.xaml.cs">
  769. <DependentUpon>SplitDialog.xaml</DependentUpon>
  770. </Compile>
  771. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterDialog.xaml.cs">
  772. <DependentUpon>HomePagePrinterDialog.xaml</DependentUpon>
  773. </Compile>
  774. <Compile Include="Views\Dialog\PropertiesDialog.xaml.cs">
  775. <DependentUpon>PropertiesDialog.xaml</DependentUpon>
  776. </Compile>
  777. <Compile Include="Views\Dialog\Redaction\MarkSettingDialog.xaml.cs">
  778. <DependentUpon>MarkSettingDialog.xaml</DependentUpon>
  779. </Compile>
  780. <Compile Include="Views\Dialog\Redaction\PageMarkDialog.xaml.cs">
  781. <DependentUpon>PageMarkDialog.xaml</DependentUpon>
  782. </Compile>
  783. <Compile Include="Views\Dialog\Redaction\RepeatMarkDialog.xaml.cs">
  784. <DependentUpon>RepeatMarkDialog.xaml</DependentUpon>
  785. </Compile>
  786. <Compile Include="Views\Dialog\SettingsDialog.xaml.cs">
  787. <DependentUpon>SettingsDialog.xaml</DependentUpon>
  788. </Compile>
  789. <Compile Include="Views\Dialog\ToolsDialogs\CompressDialogs\CompressDialog.xaml.cs">
  790. <DependentUpon>CompressDialog.xaml</DependentUpon>
  791. </Compile>
  792. <Compile Include="Views\Dialog\ToolsDialogs\CompressDialogs\CompressProgressBarDialog.xaml.cs">
  793. <DependentUpon>CompressProgressBarDialog.xaml</DependentUpon>
  794. </Compile>
  795. <Compile Include="Views\Dialog\ToolsDialogs\MergeDialog.xaml.cs">
  796. <DependentUpon>MergeDialog.xaml</DependentUpon>
  797. </Compile>
  798. <Compile Include="Views\Dialog\ToolsDialogs\SaftyDialogs\CheckPasswordDialog.xaml.cs">
  799. <DependentUpon>CheckPasswordDialog.xaml</DependentUpon>
  800. </Compile>
  801. <Compile Include="Views\Dialog\ToolsDialogs\SaftyDialogs\DeleteSafetySettingsDialog.xaml.cs">
  802. <DependentUpon>DeleteSafetySettingsDialog.xaml</DependentUpon>
  803. </Compile>
  804. <Compile Include="Views\Dialog\ToolsDialogs\SaftyDialogs\SetPasswordDialog.xaml.cs">
  805. <DependentUpon>SetPasswordDialog.xaml</DependentUpon>
  806. </Compile>
  807. <Compile Include="Views\Dialog\VerifyPassWordDialog.xaml.cs">
  808. <DependentUpon>VerifyPassWordDialog.xaml</DependentUpon>
  809. </Compile>
  810. <Compile Include="Views\EditTools\Redaction\RedactionContent.xaml.cs">
  811. <DependentUpon>RedactionContent.xaml</DependentUpon>
  812. </Compile>
  813. <Compile Include="Views\EditTools\Bates\BatesContent.xaml.cs">
  814. <DependentUpon>BatesContent.xaml</DependentUpon>
  815. </Compile>
  816. <Compile Include="Views\EditTools\Bates\BatesCreateContent.xaml.cs">
  817. <DependentUpon>BatesCreateContent.xaml</DependentUpon>
  818. </Compile>
  819. <Compile Include="Views\EditTools\Bates\BatesDocumentContent.xaml.cs">
  820. <DependentUpon>BatesDocumentContent.xaml</DependentUpon>
  821. </Compile>
  822. <Compile Include="Views\EditTools\Bates\BatesTemplateListContent.xaml.cs">
  823. <DependentUpon>BatesTemplateListContent.xaml</DependentUpon>
  824. </Compile>
  825. <Compile Include="Views\EditTools\HeaderFooter\HeaderFooterContent.xaml.cs">
  826. <DependentUpon>HeaderFooterContent.xaml</DependentUpon>
  827. </Compile>
  828. <Compile Include="Views\EditTools\HeaderFooter\HeaderFooterCreateContent.xaml.cs">
  829. <DependentUpon>HeaderFooterCreateContent.xaml</DependentUpon>
  830. </Compile>
  831. <Compile Include="Views\EditTools\HeaderFooter\HeaderFooterDocumentContent.xaml.cs">
  832. <DependentUpon>HeaderFooterDocumentContent.xaml</DependentUpon>
  833. </Compile>
  834. <Compile Include="Views\EditTools\HeaderFooter\HeaderFooterTemplateListContent.xaml.cs">
  835. <DependentUpon>HeaderFooterTemplateListContent.xaml</DependentUpon>
  836. </Compile>
  837. <Compile Include="Views\FillAndSign\FillAndSignContent.xaml.cs">
  838. <DependentUpon>FillAndSignContent.xaml</DependentUpon>
  839. </Compile>
  840. <Compile Include="Views\FillAndSign\PropertyPanel\DateFillProperty.xaml.cs">
  841. <DependentUpon>DateFillProperty.xaml</DependentUpon>
  842. </Compile>
  843. <Compile Include="Views\FillAndSign\PropertyPanel\ShapFillProperty.xaml.cs">
  844. <DependentUpon>ShapFillProperty.xaml</DependentUpon>
  845. </Compile>
  846. <Compile Include="Views\FillAndSign\PropertyPanel\TextFillProperty.xaml.cs">
  847. <DependentUpon>TextFillProperty.xaml</DependentUpon>
  848. </Compile>
  849. <Compile Include="Views\Form\ButtonProperty.xaml.cs">
  850. <DependentUpon>ButtonProperty.xaml</DependentUpon>
  851. </Compile>
  852. <Compile Include="Views\Form\CheckBoxProperty.xaml.cs">
  853. <DependentUpon>CheckBoxProperty.xaml</DependentUpon>
  854. </Compile>
  855. <Compile Include="Views\Form\ComboxProperty.xaml.cs">
  856. <DependentUpon>ComboxProperty.xaml</DependentUpon>
  857. </Compile>
  858. <Compile Include="Views\Form\EditPresetColorsDialog.xaml.cs">
  859. <DependentUpon>EditPresetColorsDialog.xaml</DependentUpon>
  860. </Compile>
  861. <Compile Include="Views\Form\EmptyFormProperty.xaml.cs">
  862. <DependentUpon>EmptyFormProperty.xaml</DependentUpon>
  863. </Compile>
  864. <Compile Include="Views\Form\FormsToolContent.xaml.cs">
  865. <DependentUpon>FormsToolContent.xaml</DependentUpon>
  866. <SubType>Code</SubType>
  867. </Compile>
  868. <Compile Include="Views\Form\ListBoxProperty.xaml.cs">
  869. <DependentUpon>ListBoxProperty.xaml</DependentUpon>
  870. </Compile>
  871. <Compile Include="Views\Form\RadioButtonProperty.xaml.cs">
  872. <DependentUpon>RadioButtonProperty.xaml</DependentUpon>
  873. </Compile>
  874. <Compile Include="Views\Form\SignProperty.xaml.cs">
  875. <DependentUpon>SignProperty.xaml</DependentUpon>
  876. </Compile>
  877. <Compile Include="Views\Form\TextFieldProperty.xaml.cs">
  878. <DependentUpon>TextFieldProperty.xaml</DependentUpon>
  879. </Compile>
  880. <Compile Include="Views\HomePanel\CloudDrive\CloudDriveContent.xaml.cs">
  881. <DependentUpon>CloudDriveContent.xaml</DependentUpon>
  882. </Compile>
  883. <Compile Include="Views\EditTools\Background\BackgroundContent.xaml.cs">
  884. <DependentUpon>BackgroundContent.xaml</DependentUpon>
  885. </Compile>
  886. <Compile Include="Views\EditTools\Background\BackgroundDocumentContent.xaml.cs">
  887. <DependentUpon>BackgroundDocumentContent.xaml</DependentUpon>
  888. </Compile>
  889. <Compile Include="Views\EditTools\Watermark\WatermarkContent.xaml.cs">
  890. <DependentUpon>WatermarkContent.xaml</DependentUpon>
  891. </Compile>
  892. <Compile Include="Views\EditTools\Watermark\WatermarkCreateBaseContent.xaml.cs">
  893. <DependentUpon>WatermarkCreateBaseContent.xaml</DependentUpon>
  894. </Compile>
  895. <Compile Include="Views\EditTools\Watermark\WatermarkCreateFileContent.xaml.cs">
  896. <DependentUpon>WatermarkCreateFileContent.xaml</DependentUpon>
  897. </Compile>
  898. <Compile Include="Views\EditTools\Watermark\WatermarkCreateTextContent.xaml.cs">
  899. <DependentUpon>WatermarkCreateTextContent.xaml</DependentUpon>
  900. </Compile>
  901. <Compile Include="Views\EditTools\Watermark\WatermarkDocumentContent.xaml.cs">
  902. <DependentUpon>WatermarkDocumentContent.xaml</DependentUpon>
  903. </Compile>
  904. <Compile Include="Views\EditTools\Watermark\WatermarkTemplateListBaseContent.xaml.cs">
  905. <DependentUpon>WatermarkTemplateListBaseContent.xaml</DependentUpon>
  906. </Compile>
  907. <Compile Include="Views\EditTools\Watermark\WatermarkTemplateListFileContent.xaml.cs">
  908. <DependentUpon>WatermarkTemplateListFileContent.xaml</DependentUpon>
  909. </Compile>
  910. <Compile Include="Views\EditTools\Watermark\WatermarkTemplateListTextContent.xaml.cs">
  911. <DependentUpon>WatermarkTemplateListTextContent.xaml</DependentUpon>
  912. </Compile>
  913. <Compile Include="Views\EditTools\Background\BackgroundCreateBaseContent.xaml.cs">
  914. <DependentUpon>BackgroundCreateBaseContent.xaml</DependentUpon>
  915. </Compile>
  916. <Compile Include="Views\EditTools\Background\BackgroundCreateColorContent.xaml.cs">
  917. <DependentUpon>BackgroundCreateColorContent.xaml</DependentUpon>
  918. </Compile>
  919. <Compile Include="Views\EditTools\Background\BackgroundCreateFileContent.xaml.cs">
  920. <DependentUpon>BackgroundCreateFileContent.xaml</DependentUpon>
  921. </Compile>
  922. <Compile Include="Views\EditTools\Background\BackgroundTemplateListBaseContent.xaml.cs">
  923. <DependentUpon>BackgroundTemplateListBaseContent.xaml</DependentUpon>
  924. </Compile>
  925. <Compile Include="Views\EditTools\Background\BackgroundTemplateListColorContent.xaml.cs">
  926. <DependentUpon>BackgroundTemplateListColorContent.xaml</DependentUpon>
  927. </Compile>
  928. <Compile Include="Views\EditTools\Background\BackgroundTemplateListFileContent.xaml.cs">
  929. <DependentUpon>BackgroundTemplateListFileContent.xaml</DependentUpon>
  930. </Compile>
  931. <Compile Include="Views\HomePanel\CloudDrive\CloudFilesContent.xaml.cs">
  932. <DependentUpon>CloudFilesContent.xaml</DependentUpon>
  933. </Compile>
  934. <Compile Include="Views\HomePanel\HomeCloudContent.xaml.cs">
  935. <DependentUpon>HomeCloudContent.xaml</DependentUpon>
  936. </Compile>
  937. <Compile Include="Views\HomePanel\HomeGuidContent.xaml.cs">
  938. <DependentUpon>HomeGuidContent.xaml</DependentUpon>
  939. </Compile>
  940. <Compile Include="Views\HomePanel\PDFTools\PDFToolExpendItem.xaml.cs">
  941. <DependentUpon>PDFToolExpendItem.xaml</DependentUpon>
  942. </Compile>
  943. <Compile Include="Views\HomePanel\PDFTools\PDFToolItem.xaml.cs">
  944. <DependentUpon>PDFToolItem.xaml</DependentUpon>
  945. </Compile>
  946. <Compile Include="Views\HomePanel\HomeToolsContent.xaml.cs">
  947. <DependentUpon>HomeToolsContent.xaml</DependentUpon>
  948. </Compile>
  949. <Compile Include="Helper\PDFToolsHelper.cs" />
  950. <Compile Include="Views\HomePanel\PDFTools\PDFToolsContent.xaml.cs">
  951. <DependentUpon>PDFToolsContent.xaml</DependentUpon>
  952. </Compile>
  953. <Compile Include="Views\HomePanel\PDFTools\QuickToolsContent.xaml.cs">
  954. <DependentUpon>QuickToolsContent.xaml</DependentUpon>
  955. </Compile>
  956. <Compile Include="Views\HomePanel\PromotionContent.xaml.cs">
  957. <DependentUpon>PromotionContent.xaml</DependentUpon>
  958. </Compile>
  959. <Compile Include="Views\HomePanel\RecentFiles\DocItemControl.xaml.cs">
  960. <DependentUpon>DocItemControl.xaml</DependentUpon>
  961. </Compile>
  962. <Compile Include="Views\HomePanel\RecentFiles\DocItemListViewControl.xaml.cs">
  963. <DependentUpon>DocItemListViewControl.xaml</DependentUpon>
  964. </Compile>
  965. <Compile Include="Views\HomePanel\RecentFiles\RecentFilesContent.xaml.cs">
  966. <DependentUpon>RecentFilesContent.xaml</DependentUpon>
  967. </Compile>
  968. <Compile Include="Views\MainContent.xaml.cs">
  969. <DependentUpon>MainContent.xaml</DependentUpon>
  970. </Compile>
  971. <Compile Include="Views\PageEdit\PageEditContent.xaml.cs">
  972. <DependentUpon>PageEditContent.xaml</DependentUpon>
  973. </Compile>
  974. <Compile Include="CustomControl\CompositeControl\ColorContent.xaml.cs">
  975. <DependentUpon>ColorContent.xaml</DependentUpon>
  976. </Compile>
  977. <Compile Include="CustomControl\CompositeControl\SlidContentPop.xaml.cs">
  978. <DependentUpon>SlidContentPop.xaml</DependentUpon>
  979. </Compile>
  980. <Compile Include="Views\Dialog\CustomCreateDialog.xaml.cs">
  981. <DependentUpon>CustomCreateDialog.xaml</DependentUpon>
  982. </Compile>
  983. <Compile Include="Views\Dialog\DynamicPropertyDialog.xaml.cs">
  984. <DependentUpon>DynamicPropertyDialog.xaml</DependentUpon>
  985. </Compile>
  986. <Compile Include="Views\PropertyPanel\AnnotPanel\FreehandAnnotProperty.xaml.cs">
  987. <DependentUpon>FreehandAnnotProperty.xaml</DependentUpon>
  988. </Compile>
  989. <Compile Include="Views\PropertyPanel\AnnotPanel\FreetextAnnotProperty.xaml.cs">
  990. <DependentUpon>FreetextAnnotProperty.xaml</DependentUpon>
  991. </Compile>
  992. <Compile Include="Views\PropertyPanel\AnnotPanel\ImageAnnotProperty.xaml.cs">
  993. <DependentUpon>ImageAnnotProperty.xaml</DependentUpon>
  994. </Compile>
  995. <Compile Include="Views\PropertyPanel\AnnotPanel\LinkAnnotProperty.xaml.cs">
  996. <DependentUpon>LinkAnnotProperty.xaml</DependentUpon>
  997. </Compile>
  998. <Compile Include="Views\PropertyPanel\AnnotPanel\SharpsAnnotProperty.xaml.cs">
  999. <DependentUpon>SharpsAnnotProperty.xaml</DependentUpon>
  1000. </Compile>
  1001. <Compile Include="Views\PropertyPanel\AnnotPanel\SignatureAnnotProperty.xaml.cs">
  1002. <DependentUpon>SignatureAnnotProperty.xaml</DependentUpon>
  1003. </Compile>
  1004. <Compile Include="Views\PropertyPanel\AnnotPanel\SignatureCreateDialog.xaml.cs">
  1005. <DependentUpon>SignatureCreateDialog.xaml</DependentUpon>
  1006. </Compile>
  1007. <Compile Include="Views\PropertyPanel\AnnotPanel\SnapshotEditMenu.xaml.cs">
  1008. <DependentUpon>SnapshotEditMenu.xaml</DependentUpon>
  1009. </Compile>
  1010. <Compile Include="Views\PropertyPanel\AnnotPanel\StampAnnotProperty.xaml.cs">
  1011. <DependentUpon>StampAnnotProperty.xaml</DependentUpon>
  1012. </Compile>
  1013. <Compile Include="Views\PropertyPanel\AnnotPanel\StickyNoteProperty.xaml.cs">
  1014. <DependentUpon>StickyNoteProperty.xaml</DependentUpon>
  1015. </Compile>
  1016. <Compile Include="Views\PropertyPanel\AnnotPanel\TextAnnotProperty.xaml.cs">
  1017. <DependentUpon>TextAnnotProperty.xaml</DependentUpon>
  1018. </Compile>
  1019. <Compile Include="CustomControl\CompositeControl\SlidContent.xaml.cs">
  1020. <DependentUpon>SlidContent.xaml</DependentUpon>
  1021. </Compile>
  1022. <Compile Include="Views\PropertyPanel\PDFEdit\ImageEditProperty.xaml.cs">
  1023. <DependentUpon>ImageEditProperty.xaml</DependentUpon>
  1024. </Compile>
  1025. <Compile Include="Views\PropertyPanel\PDFEdit\ImageTextEditProperty.xaml.cs">
  1026. <DependentUpon>ImageTextEditProperty.xaml</DependentUpon>
  1027. </Compile>
  1028. <Compile Include="Views\PropertyPanel\PDFEdit\TextEditProperty.xaml.cs">
  1029. <DependentUpon>TextEditProperty.xaml</DependentUpon>
  1030. </Compile>
  1031. <Compile Include="Views\PropertyPanel\PropertyPanelContent.xaml.cs">
  1032. <DependentUpon>PropertyPanelContent.xaml</DependentUpon>
  1033. </Compile>
  1034. <Compile Include="Views\PropertyPanel\Scan\ScanPropertyPanel.xaml.cs">
  1035. <DependentUpon>ScanPropertyPanel.xaml</DependentUpon>
  1036. </Compile>
  1037. <Compile Include="Views\PropertyPanel\ViewModular\ReadModeContent.xaml.cs">
  1038. <DependentUpon>ReadModeContent.xaml</DependentUpon>
  1039. </Compile>
  1040. <Compile Include="Views\PropertyPanel\ViewModular\ReadViewContent.xaml.cs">
  1041. <DependentUpon>ReadViewContent.xaml</DependentUpon>
  1042. </Compile>
  1043. <Compile Include="Views\PropertyPanel\ViewModular\SplitScreenContent.xaml.cs">
  1044. <DependentUpon>SplitScreenContent.xaml</DependentUpon>
  1045. </Compile>
  1046. <Compile Include="Views\PropertyPanel\ViewModular\PageContent.xaml.cs">
  1047. <DependentUpon>PageContent.xaml</DependentUpon>
  1048. </Compile>
  1049. <Compile Include="Views\PropertyPanel\ViewModular\ThemesContent.xaml.cs">
  1050. <DependentUpon>ThemesContent.xaml</DependentUpon>
  1051. </Compile>
  1052. <Compile Include="Views\PropertyPanel\ViewModular\ViewModularContent.xaml.cs">
  1053. <DependentUpon>ViewModularContent.xaml</DependentUpon>
  1054. </Compile>
  1055. <Compile Include="Views\Scan\Redress.xaml.cs">
  1056. <DependentUpon>Redress.xaml</DependentUpon>
  1057. </Compile>
  1058. <Compile Include="Views\Scan\ScanViwer.xaml.cs">
  1059. <DependentUpon>ScanViwer.xaml</DependentUpon>
  1060. </Compile>
  1061. <Compile Include="Views\TipContent\LinkAnnotTip.xaml.cs">
  1062. <DependentUpon>LinkAnnotTip.xaml</DependentUpon>
  1063. </Compile>
  1064. <Compile Include="Views\Tools\AnnotToolContent.xaml.cs">
  1065. <DependentUpon>AnnotToolContent.xaml</DependentUpon>
  1066. </Compile>
  1067. <Compile Include="Views\Tools\ConverterBarContent.xaml.cs">
  1068. <DependentUpon>ConverterBarContent.xaml</DependentUpon>
  1069. </Compile>
  1070. <Compile Include="Views\Tools\ScanContent.xaml.cs">
  1071. <DependentUpon>ScanContent.xaml</DependentUpon>
  1072. </Compile>
  1073. <Compile Include="Views\Tools\TextEditToolContent.xaml.cs">
  1074. <DependentUpon>TextEditToolContent.xaml</DependentUpon>
  1075. </Compile>
  1076. <Compile Include="Views\Tools\ToolsBarContent.xaml.cs">
  1077. <DependentUpon>ToolsBarContent.xaml</DependentUpon>
  1078. </Compile>
  1079. <Compile Include="Views\ViewContent.xaml.cs">
  1080. <DependentUpon>ViewContent.xaml</DependentUpon>
  1081. </Compile>
  1082. <Page Include="CustomControl\AlertsMessage.xaml">
  1083. <Generator>MSBuild:Compile</Generator>
  1084. <SubType>Designer</SubType>
  1085. </Page>
  1086. <Page Include="CustomControl\BatchStatus.xaml">
  1087. <SubType>Designer</SubType>
  1088. <Generator>MSBuild:Compile</Generator>
  1089. </Page>
  1090. <Page Include="CustomControl\ColorDropBox.xaml">
  1091. <Generator>MSBuild:Compile</Generator>
  1092. <SubType>Designer</SubType>
  1093. </Page>
  1094. <Page Include="CustomControl\ColorDropBoxPop.xaml">
  1095. <Generator>MSBuild:Compile</Generator>
  1096. <SubType>Designer</SubType>
  1097. </Page>
  1098. <Page Include="CustomControl\CommonWritableComboBox.xaml">
  1099. <Generator>MSBuild:Compile</Generator>
  1100. <SubType>Designer</SubType>
  1101. </Page>
  1102. <Page Include="CustomControl\CompositeControl\ColorSubContent.xaml">
  1103. <Generator>MSBuild:Compile</Generator>
  1104. <SubType>Designer</SubType>
  1105. </Page>
  1106. <Page Include="CustomControl\CompositeControl\CustomComboControl.xaml">
  1107. <Generator>MSBuild:Compile</Generator>
  1108. <SubType>Designer</SubType>
  1109. </Page>
  1110. <Page Include="CustomControl\CompositeControl\SlidComboControl.xaml">
  1111. <Generator>MSBuild:Compile</Generator>
  1112. <SubType>Designer</SubType>
  1113. </Page>
  1114. <Page Include="CustomControl\Form\FormFieldCombox.xaml">
  1115. <SubType>Designer</SubType>
  1116. <Generator>MSBuild:Compile</Generator>
  1117. </Page>
  1118. <Page Include="CustomControl\Form\LayoutAglinContent.xaml">
  1119. <SubType>Designer</SubType>
  1120. <Generator>MSBuild:Compile</Generator>
  1121. </Page>
  1122. <Page Include="CustomControl\LoadingControl.xaml">
  1123. <SubType>Designer</SubType>
  1124. <Generator>MSBuild:Compile</Generator>
  1125. </Page>
  1126. <Page Include="CustomControl\NumericUpDown.xaml">
  1127. <SubType>Designer</SubType>
  1128. <Generator>MSBuild:Compile</Generator>
  1129. </Page>
  1130. <Page Include="CustomControl\PageControl.xaml">
  1131. <SubType>Designer</SubType>
  1132. <Generator>MSBuild:Compile</Generator>
  1133. </Page>
  1134. <Page Include="CustomControl\PageTurningPreview.xaml">
  1135. <SubType>Designer</SubType>
  1136. <Generator>MSBuild:Compile</Generator>
  1137. </Page>
  1138. <Page Include="CustomControl\PaginationControl.xaml">
  1139. <SubType>Designer</SubType>
  1140. <Generator>MSBuild:Compile</Generator>
  1141. </Page>
  1142. <Page Include="CustomControl\TextBoxWithTip.xaml">
  1143. <SubType>Designer</SubType>
  1144. <Generator>MSBuild:Compile</Generator>
  1145. </Page>
  1146. <Page Include="CustomControl\ToastControl.xaml">
  1147. <Generator>MSBuild:Compile</Generator>
  1148. <SubType>Designer</SubType>
  1149. </Page>
  1150. <Page Include="CustomControl\WritableComboBox.xaml">
  1151. <SubType>Designer</SubType>
  1152. <Generator>MSBuild:Compile</Generator>
  1153. </Page>
  1154. <Page Include="Styles\ButtonStyle.xaml">
  1155. <SubType>Designer</SubType>
  1156. <Generator>MSBuild:Compile</Generator>
  1157. </Page>
  1158. <Page Include="Styles\CheckBoxStyle.xaml">
  1159. <SubType>Designer</SubType>
  1160. <Generator>MSBuild:Compile</Generator>
  1161. </Page>
  1162. <Page Include="Styles\ComboxStyle.xaml">
  1163. <SubType>Designer</SubType>
  1164. <Generator>MSBuild:Compile</Generator>
  1165. </Page>
  1166. <Page Include="Styles\ContainerStyles\ComboxStyle\ComboxItemStyle.xaml">
  1167. <SubType>Designer</SubType>
  1168. <Generator>MSBuild:Compile</Generator>
  1169. </Page>
  1170. <Page Include="Styles\ContextMenuFormStyle.xaml">
  1171. <SubType>Designer</SubType>
  1172. <Generator>MSBuild:Compile</Generator>
  1173. </Page>
  1174. <Page Include="Styles\ContextMenuStyle.xaml">
  1175. <Generator>MSBuild:Compile</Generator>
  1176. <SubType>Designer</SubType>
  1177. </Page>
  1178. <Page Include="Styles\ContextMenuTextEditStyle.xaml">
  1179. <SubType>Designer</SubType>
  1180. <Generator>MSBuild:Compile</Generator>
  1181. </Page>
  1182. <Page Include="Styles\CustomBtnStyle.xaml">
  1183. <Generator>MSBuild:Compile</Generator>
  1184. <SubType>Designer</SubType>
  1185. </Page>
  1186. <Page Include="Styles\CustomListItemStyle.xaml">
  1187. <SubType>Designer</SubType>
  1188. <Generator>MSBuild:Compile</Generator>
  1189. </Page>
  1190. <Page Include="Styles\ExpanderStyle.xaml">
  1191. <Generator>MSBuild:Compile</Generator>
  1192. <SubType>Designer</SubType>
  1193. </Page>
  1194. <Page Include="Styles\ImageButtonStyle.xaml">
  1195. <SubType>Designer</SubType>
  1196. <Generator>MSBuild:Compile</Generator>
  1197. </Page>
  1198. <Page Include="Styles\ImageRadioButtonDictionary.xaml">
  1199. <SubType>Designer</SubType>
  1200. <Generator>MSBuild:Compile</Generator>
  1201. </Page>
  1202. <Page Include="Styles\ListBoxStyle.xaml">
  1203. <Generator>MSBuild:Compile</Generator>
  1204. <SubType>Designer</SubType>
  1205. </Page>
  1206. <Page Include="Styles\ListViewStyle.xaml">
  1207. <Generator>MSBuild:Compile</Generator>
  1208. <SubType>Designer</SubType>
  1209. </Page>
  1210. <Page Include="Styles\MenuStyle.xaml">
  1211. <SubType>Designer</SubType>
  1212. <Generator>MSBuild:Compile</Generator>
  1213. </Page>
  1214. <Page Include="Styles\OutLineItemStyle.xaml">
  1215. <SubType>Designer</SubType>
  1216. <Generator>MSBuild:Compile</Generator>
  1217. </Page>
  1218. <Page Include="Styles\PathButtonStyle.xaml">
  1219. <SubType>Designer</SubType>
  1220. <Generator>MSBuild:Compile</Generator>
  1221. </Page>
  1222. <Page Include="Styles\PathRadioButtonDictionary.xaml">
  1223. <SubType>Designer</SubType>
  1224. <Generator>MSBuild:Compile</Generator>
  1225. </Page>
  1226. <Page Include="Styles\RadioButtonStyle.xaml">
  1227. <SubType>Designer</SubType>
  1228. <Generator>MSBuild:Compile</Generator>
  1229. </Page>
  1230. <Page Include="Styles\SeparatorStyle.xaml">
  1231. <Generator>MSBuild:Compile</Generator>
  1232. <SubType>Designer</SubType>
  1233. </Page>
  1234. <Page Include="Styles\SliderStyle.xaml">
  1235. <Generator>MSBuild:Compile</Generator>
  1236. <SubType>Designer</SubType>
  1237. </Page>
  1238. <Page Include="Styles\TabControlStyle.xaml">
  1239. <SubType>Designer</SubType>
  1240. <Generator>MSBuild:Compile</Generator>
  1241. </Page>
  1242. <Page Include="Styles\TextBoxStyle.xaml">
  1243. <SubType>Designer</SubType>
  1244. <Generator>MSBuild:Compile</Generator>
  1245. </Page>
  1246. <Page Include="Styles\ToggleButton.xaml">
  1247. <SubType>Designer</SubType>
  1248. <Generator>MSBuild:Compile</Generator>
  1249. </Page>
  1250. <Page Include="Styles\WindowsStyle.xaml">
  1251. <Generator>MSBuild:Compile</Generator>
  1252. <SubType>Designer</SubType>
  1253. </Page>
  1254. <Page Include="Themes\Alias_Light.xaml">
  1255. <SubType>Designer</SubType>
  1256. <Generator>MSBuild:Compile</Generator>
  1257. </Page>
  1258. <Page Include="Themes\Generic.xaml">
  1259. <Generator>MSBuild:Compile</Generator>
  1260. <SubType>Designer</SubType>
  1261. </Page>
  1262. <Page Include="Themes\Global.xaml">
  1263. <SubType>Designer</SubType>
  1264. <Generator>XamlIntelliSenseFileGenerator</Generator>
  1265. </Page>
  1266. <Page Include="Views\BOTA\AnnotationContent.xaml">
  1267. <SubType>Designer</SubType>
  1268. <Generator>MSBuild:Compile</Generator>
  1269. </Page>
  1270. <Page Include="Views\BOTA\AnnotationListItem.xaml">
  1271. <SubType>Designer</SubType>
  1272. <Generator>MSBuild:Compile</Generator>
  1273. </Page>
  1274. <Page Include="Views\BOTA\BookmarkContent.xaml">
  1275. <SubType>Designer</SubType>
  1276. <Generator>MSBuild:Compile</Generator>
  1277. </Page>
  1278. <Page Include="Views\BOTA\BOTAContent.xaml">
  1279. <SubType>Designer</SubType>
  1280. <Generator>MSBuild:Compile</Generator>
  1281. </Page>
  1282. <Page Include="Views\BOTA\OutLineControl.xaml">
  1283. <SubType>Designer</SubType>
  1284. <Generator>MSBuild:Compile</Generator>
  1285. </Page>
  1286. <Page Include="Views\BOTA\SearchContent.xaml">
  1287. <Generator>MSBuild:Compile</Generator>
  1288. <SubType>Designer</SubType>
  1289. </Page>
  1290. <Page Include="Views\BottomToolContent.xaml">
  1291. <SubType>Designer</SubType>
  1292. <Generator>MSBuild:Compile</Generator>
  1293. </Page>
  1294. <Page Include="Views\Dialog\BOTA\AddAnnotationDialog.xaml">
  1295. <SubType>Designer</SubType>
  1296. <Generator>MSBuild:Compile</Generator>
  1297. </Page>
  1298. <Page Include="Views\Dialog\BOTA\ScreenAnnotationDialog.xaml">
  1299. <SubType>Designer</SubType>
  1300. <Generator>MSBuild:Compile</Generator>
  1301. </Page>
  1302. <Page Include="Views\Dialog\ConverterDialogs\ConverterCSVDialog.xaml">
  1303. <SubType>Designer</SubType>
  1304. <Generator>MSBuild:Compile</Generator>
  1305. </Page>
  1306. <Page Include="Views\Dialog\BOTA\AddBookmarkDialog.xaml">
  1307. <SubType>Designer</SubType>
  1308. <Generator>MSBuild:Compile</Generator>
  1309. </Page>
  1310. <Page Include="Views\Dialog\BOTA\BookmarkInfoDialog.xaml">
  1311. <SubType>Designer</SubType>
  1312. <Generator>MSBuild:Compile</Generator>
  1313. </Page>
  1314. <Page Include="Views\Dialog\FullScreenWindow.xaml">
  1315. <SubType>Designer</SubType>
  1316. <Generator>MSBuild:Compile</Generator>
  1317. </Page>
  1318. <Page Include="Views\Dialog\ConverterDialogs\ConverterExcelDialog.xaml">
  1319. <SubType>Designer</SubType>
  1320. <Generator>MSBuild:Compile</Generator>
  1321. </Page>
  1322. <Page Include="Views\Dialog\ConverterDialogs\ConverterHTMLDialog.xaml">
  1323. <SubType>Designer</SubType>
  1324. <Generator>MSBuild:Compile</Generator>
  1325. </Page>
  1326. <Page Include="Views\Dialog\ConverterDialogs\ConverterImgDialog.xaml">
  1327. <SubType>Designer</SubType>
  1328. <Generator>MSBuild:Compile</Generator>
  1329. </Page>
  1330. <Page Include="Views\Dialog\ConverterDialogs\ConverterPPTDialog.xaml">
  1331. <SubType>Designer</SubType>
  1332. <Generator>MSBuild:Compile</Generator>
  1333. </Page>
  1334. <Page Include="Views\Dialog\ConverterDialogs\ConverterProgressBarDialog.xaml">
  1335. <SubType>Designer</SubType>
  1336. <Generator>MSBuild:Compile</Generator>
  1337. </Page>
  1338. <Page Include="Views\Dialog\ConverterDialogs\ConverterRTFDialog.xaml">
  1339. <SubType>Designer</SubType>
  1340. <Generator>MSBuild:Compile</Generator>
  1341. </Page>
  1342. <Page Include="Views\Dialog\ConverterDialogs\ConverterTextDialog.xaml">
  1343. <SubType>Designer</SubType>
  1344. <Generator>MSBuild:Compile</Generator>
  1345. </Page>
  1346. <Page Include="Views\Dialog\ConverterDialogs\ConverterWordDialog.xaml">
  1347. <SubType>Designer</SubType>
  1348. <Generator>MSBuild:Compile</Generator>
  1349. </Page>
  1350. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBackground\HomePageBackgroundCreateBaseContent.xaml">
  1351. <SubType>Designer</SubType>
  1352. <Generator>MSBuild:Compile</Generator>
  1353. </Page>
  1354. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBackground\HomePageBackgroundCreateColorContent.xaml">
  1355. <SubType>Designer</SubType>
  1356. <Generator>MSBuild:Compile</Generator>
  1357. </Page>
  1358. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBackground\HomePageBackgroundCreateFileContent.xaml">
  1359. <SubType>Designer</SubType>
  1360. <Generator>MSBuild:Compile</Generator>
  1361. </Page>
  1362. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBackground\HomePageBackgroundDialog.xaml">
  1363. <SubType>Designer</SubType>
  1364. <Generator>MSBuild:Compile</Generator>
  1365. </Page>
  1366. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBackground\HomePageBackgroundTemplateListBaseContent.xaml">
  1367. <SubType>Designer</SubType>
  1368. <Generator>MSBuild:Compile</Generator>
  1369. </Page>
  1370. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBackground\HomePageBackgroundTemplateListColorContent.xaml">
  1371. <SubType>Designer</SubType>
  1372. <Generator>MSBuild:Compile</Generator>
  1373. </Page>
  1374. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBackground\HomePageBackgroundTemplateListFileContent.xaml">
  1375. <SubType>Designer</SubType>
  1376. <Generator>MSBuild:Compile</Generator>
  1377. </Page>
  1378. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBates\HomePageBatesCreateContent.xaml">
  1379. <SubType>Designer</SubType>
  1380. <Generator>MSBuild:Compile</Generator>
  1381. </Page>
  1382. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBates\HomePageBatesTemplateListContent.xaml">
  1383. <SubType>Designer</SubType>
  1384. <Generator>MSBuild:Compile</Generator>
  1385. </Page>
  1386. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageHeaderFooter\HomePageHeaderFooterCreateContent.xaml">
  1387. <SubType>Designer</SubType>
  1388. <Generator>MSBuild:Compile</Generator>
  1389. </Page>
  1390. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageHeaderFooter\HomePageHeaderFooterTemplateListContent.xaml">
  1391. <SubType>Designer</SubType>
  1392. <Generator>MSBuild:Compile</Generator>
  1393. </Page>
  1394. <Page Include="Views\Dialog\HomePageToolsDialogs\CreateFromHtmlDialog.xaml">
  1395. <SubType>Designer</SubType>
  1396. <Generator>MSBuild:Compile</Generator>
  1397. </Page>
  1398. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBatchProcessingDialog.xaml">
  1399. <SubType>Designer</SubType>
  1400. <Generator>MSBuild:Compile</Generator>
  1401. </Page>
  1402. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBates\HomePageBatesDialog.xaml">
  1403. <SubType>Designer</SubType>
  1404. <Generator>MSBuild:Compile</Generator>
  1405. </Page>
  1406. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageHeaderFooter\HomePageHeaderFooterDialog.xaml">
  1407. <SubType>Designer</SubType>
  1408. <Generator>MSBuild:Compile</Generator>
  1409. </Page>
  1410. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageRemoveDialog.xaml">
  1411. <Generator>MSBuild:Compile</Generator>
  1412. <SubType>Designer</SubType>
  1413. </Page>
  1414. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageWatermark\HomePageWatermarkCreateBaseContent.xaml">
  1415. <SubType>Designer</SubType>
  1416. <Generator>MSBuild:Compile</Generator>
  1417. </Page>
  1418. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageWatermark\HomePageWatermarkCreateFileContent.xaml">
  1419. <SubType>Designer</SubType>
  1420. <Generator>MSBuild:Compile</Generator>
  1421. </Page>
  1422. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageWatermark\HomePageWatermarkCreateTextContent.xaml">
  1423. <SubType>Designer</SubType>
  1424. <Generator>MSBuild:Compile</Generator>
  1425. </Page>
  1426. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageWatermark\HomePageWatermarkDialog.xaml">
  1427. <SubType>Designer</SubType>
  1428. <Generator>MSBuild:Compile</Generator>
  1429. </Page>
  1430. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageWatermark\HomePageWatermarkTemplateListBaseContent.xaml">
  1431. <SubType>Designer</SubType>
  1432. <Generator>MSBuild:Compile</Generator>
  1433. </Page>
  1434. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageWatermark\HomePageWatermarkTemplateListFileContent.xaml">
  1435. <SubType>Designer</SubType>
  1436. <Generator>MSBuild:Compile</Generator>
  1437. </Page>
  1438. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageWatermark\HomePageWatermarkTemplateListTextContent.xaml">
  1439. <SubType>Designer</SubType>
  1440. <Generator>MSBuild:Compile</Generator>
  1441. </Page>
  1442. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterDocumentContent.xaml">
  1443. <SubType>Designer</SubType>
  1444. <Generator>MSBuild:Compile</Generator>
  1445. </Page>
  1446. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterPaperSettingsDialog.xaml">
  1447. <SubType>Designer</SubType>
  1448. <Generator>MSBuild:Compile</Generator>
  1449. </Page>
  1450. <Page Include="Views\Dialog\PageEditDialogs\SplitDialog.xaml">
  1451. <SubType>Designer</SubType>
  1452. <Generator>MSBuild:Compile</Generator>
  1453. </Page>
  1454. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageCompressDialog.xaml">
  1455. <SubType>Designer</SubType>
  1456. <Generator>MSBuild:Compile</Generator>
  1457. </Page>
  1458. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterCSV.xaml">
  1459. <SubType>Designer</SubType>
  1460. <Generator>MSBuild:Compile</Generator>
  1461. </Page>
  1462. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterDialog.xaml">
  1463. <SubType>Designer</SubType>
  1464. <Generator>MSBuild:Compile</Generator>
  1465. </Page>
  1466. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterExcel.xaml">
  1467. <SubType>Designer</SubType>
  1468. <Generator>MSBuild:Compile</Generator>
  1469. </Page>
  1470. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterImg.xaml">
  1471. <SubType>Designer</SubType>
  1472. <Generator>MSBuild:Compile</Generator>
  1473. </Page>
  1474. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterWord.xaml">
  1475. <SubType>Designer</SubType>
  1476. <Generator>MSBuild:Compile</Generator>
  1477. </Page>
  1478. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageSetPasswordDialog.xaml">
  1479. <SubType>Designer</SubType>
  1480. <Generator>MSBuild:Compile</Generator>
  1481. </Page>
  1482. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageExtractDialog.xaml">
  1483. <SubType>Designer</SubType>
  1484. <Generator>MSBuild:Compile</Generator>
  1485. </Page>
  1486. <Page Include="Views\Dialog\PropertiesDialog.xaml">
  1487. <Generator>MSBuild:Compile</Generator>
  1488. <SubType>Designer</SubType>
  1489. </Page>
  1490. <Page Include="Views\Dialog\Redaction\MarkSettingDialog.xaml">
  1491. <Generator>MSBuild:Compile</Generator>
  1492. <SubType>Designer</SubType>
  1493. </Page>
  1494. <Page Include="Views\Dialog\Redaction\PageMarkDialog.xaml">
  1495. <Generator>MSBuild:Compile</Generator>
  1496. <SubType>Designer</SubType>
  1497. </Page>
  1498. <Page Include="Views\Dialog\Redaction\RepeatMarkDialog.xaml">
  1499. <Generator>MSBuild:Compile</Generator>
  1500. <SubType>Designer</SubType>
  1501. </Page>
  1502. <Page Include="Views\Dialog\SettingsDialog.xaml">
  1503. <Generator>MSBuild:Compile</Generator>
  1504. <SubType>Designer</SubType>
  1505. </Page>
  1506. <Page Include="Views\Dialog\ToolsDialogs\MergeDialog.xaml">
  1507. <Generator>MSBuild:Compile</Generator>
  1508. <SubType>Designer</SubType>
  1509. </Page>
  1510. <Page Include="Views\EditTools\Bates\BatesContent.xaml">
  1511. <SubType>Designer</SubType>
  1512. <Generator>MSBuild:Compile</Generator>
  1513. </Page>
  1514. <Page Include="Views\EditTools\Bates\BatesCreateContent.xaml">
  1515. <SubType>Designer</SubType>
  1516. <Generator>MSBuild:Compile</Generator>
  1517. </Page>
  1518. <Page Include="Views\EditTools\Bates\BatesDocumentContent.xaml">
  1519. <SubType>Designer</SubType>
  1520. <Generator>MSBuild:Compile</Generator>
  1521. </Page>
  1522. <Page Include="Views\EditTools\Bates\BatesTemplateListContent.xaml">
  1523. <SubType>Designer</SubType>
  1524. <Generator>MSBuild:Compile</Generator>
  1525. </Page>
  1526. <Page Include="Views\EditTools\HeaderFooter\HeaderFooterContent.xaml">
  1527. <SubType>Designer</SubType>
  1528. <Generator>MSBuild:Compile</Generator>
  1529. </Page>
  1530. <Page Include="Views\EditTools\HeaderFooter\HeaderFooterCreateContent.xaml">
  1531. <SubType>Designer</SubType>
  1532. <Generator>MSBuild:Compile</Generator>
  1533. </Page>
  1534. <Page Include="Views\EditTools\HeaderFooter\HeaderFooterDocumentContent.xaml">
  1535. <SubType>Designer</SubType>
  1536. <Generator>MSBuild:Compile</Generator>
  1537. </Page>
  1538. <Page Include="Views\EditTools\HeaderFooter\HeaderFooterTemplateListContent.xaml">
  1539. <SubType>Designer</SubType>
  1540. <Generator>MSBuild:Compile</Generator>
  1541. </Page>
  1542. <Page Include="Views\EditTools\Redaction\RedactionContent.xaml">
  1543. <SubType>Designer</SubType>
  1544. <Generator>MSBuild:Compile</Generator>
  1545. </Page>
  1546. <Page Include="Views\FillAndSign\FillAndSignContent.xaml">
  1547. <SubType>Designer</SubType>
  1548. <Generator>MSBuild:Compile</Generator>
  1549. </Page>
  1550. <Page Include="Views\FillAndSign\PropertyPanel\DateFillProperty.xaml">
  1551. <SubType>Designer</SubType>
  1552. <Generator>MSBuild:Compile</Generator>
  1553. </Page>
  1554. <Page Include="Views\FillAndSign\PropertyPanel\ShapFillProperty.xaml">
  1555. <SubType>Designer</SubType>
  1556. <Generator>MSBuild:Compile</Generator>
  1557. </Page>
  1558. <Page Include="Views\FillAndSign\PropertyPanel\TextFillProperty.xaml">
  1559. <SubType>Designer</SubType>
  1560. <Generator>MSBuild:Compile</Generator>
  1561. </Page>
  1562. <Page Include="Views\Form\ButtonProperty.xaml">
  1563. <SubType>Designer</SubType>
  1564. <Generator>MSBuild:Compile</Generator>
  1565. </Page>
  1566. <Page Include="Views\Form\CheckBoxProperty.xaml">
  1567. <SubType>Designer</SubType>
  1568. <Generator>MSBuild:Compile</Generator>
  1569. </Page>
  1570. <Page Include="Views\Form\ComboxProperty.xaml">
  1571. <SubType>Designer</SubType>
  1572. <Generator>MSBuild:Compile</Generator>
  1573. </Page>
  1574. <Page Include="Views\Form\EditPresetColorsDialog.xaml">
  1575. <Generator>MSBuild:Compile</Generator>
  1576. <SubType>Designer</SubType>
  1577. </Page>
  1578. <Page Include="Views\Form\EmptyFormProperty.xaml">
  1579. <Generator>MSBuild:Compile</Generator>
  1580. <SubType>Designer</SubType>
  1581. </Page>
  1582. <Page Include="Views\Form\FormsToolContent.xaml">
  1583. <SubType>Designer</SubType>
  1584. <Generator>XamlIntelliSenseFileGenerator</Generator>
  1585. </Page>
  1586. <Page Include="Views\Form\ListBoxProperty.xaml">
  1587. <SubType>Designer</SubType>
  1588. <Generator>MSBuild:Compile</Generator>
  1589. </Page>
  1590. <Page Include="Views\Form\RadioButtonProperty.xaml">
  1591. <SubType>Designer</SubType>
  1592. <Generator>MSBuild:Compile</Generator>
  1593. </Page>
  1594. <Page Include="Views\Form\SignProperty.xaml">
  1595. <SubType>Designer</SubType>
  1596. <Generator>MSBuild:Compile</Generator>
  1597. </Page>
  1598. <Page Include="Views\Form\TextFieldProperty.xaml">
  1599. <SubType>Designer</SubType>
  1600. <Generator>MSBuild:Compile</Generator>
  1601. </Page>
  1602. <Page Include="Views\HomeContent.xaml">
  1603. <SubType>Designer</SubType>
  1604. <Generator>MSBuild:Compile</Generator>
  1605. </Page>
  1606. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageInsertDialog.xaml">
  1607. <SubType>Designer</SubType>
  1608. <Generator>MSBuild:Compile</Generator>
  1609. </Page>
  1610. <Page Include="Views\HomePanel\CloudDrive\CloudDriveContent.xaml">
  1611. <SubType>Designer</SubType>
  1612. <Generator>MSBuild:Compile</Generator>
  1613. </Page>
  1614. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePagePictureToPDFDialog.xaml">
  1615. <SubType>Designer</SubType>
  1616. <Generator>MSBuild:Compile</Generator>
  1617. </Page>
  1618. <Page Include="Views\HomePanel\CloudDrive\CloudFilesContent.xaml">
  1619. <SubType>Designer</SubType>
  1620. <Generator>MSBuild:Compile</Generator>
  1621. </Page>
  1622. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterModBookletContent.xaml">
  1623. <SubType>Designer</SubType>
  1624. <Generator>MSBuild:Compile</Generator>
  1625. </Page>
  1626. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterModMultipleContent.xaml">
  1627. <SubType>Designer</SubType>
  1628. <Generator>MSBuild:Compile</Generator>
  1629. </Page>
  1630. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterModPosterContent.xaml">
  1631. <SubType>Designer</SubType>
  1632. <Generator>MSBuild:Compile</Generator>
  1633. </Page>
  1634. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterModSizeContent.xaml">
  1635. <SubType>Designer</SubType>
  1636. <Generator>MSBuild:Compile</Generator>
  1637. </Page>
  1638. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageSplitDialog.xaml">
  1639. <SubType>Designer</SubType>
  1640. <Generator>MSBuild:Compile</Generator>
  1641. </Page>
  1642. <Page Include="Views\Dialog\PageEditDialogs\ExtractDialog.xaml">
  1643. <Generator>MSBuild:Compile</Generator>
  1644. <SubType>Designer</SubType>
  1645. </Page>
  1646. <Page Include="Views\Dialog\PageEditDialogs\InsertDialog.xaml">
  1647. <Generator>MSBuild:Compile</Generator>
  1648. <SubType>Designer</SubType>
  1649. </Page>
  1650. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterDialog.xaml">
  1651. <SubType>Designer</SubType>
  1652. </Page>
  1653. <Page Include="CustomControl\CompositeControl\ColorContent.xaml">
  1654. <SubType>Designer</SubType>
  1655. <Generator>MSBuild:Compile</Generator>
  1656. </Page>
  1657. <Page Include="Views\Dialog\ToolsDialogs\CompressDialogs\CompressDialog.xaml">
  1658. <SubType>Designer</SubType>
  1659. <Generator>MSBuild:Compile</Generator>
  1660. </Page>
  1661. <Page Include="Views\Dialog\ToolsDialogs\CompressDialogs\CompressProgressBarDialog.xaml">
  1662. <SubType>Designer</SubType>
  1663. <Generator>MSBuild:Compile</Generator>
  1664. </Page>
  1665. <Page Include="Views\Dialog\ToolsDialogs\SaftyDialogs\CheckPasswordDialog.xaml">
  1666. <SubType>Designer</SubType>
  1667. <Generator>MSBuild:Compile</Generator>
  1668. </Page>
  1669. <Page Include="CustomControl\CompositeControl\SlidContentPop.xaml">
  1670. <Generator>MSBuild:Compile</Generator>
  1671. <SubType>Designer</SubType>
  1672. </Page>
  1673. <Page Include="Views\HomePanel\PDFTools\PDFToolExpendItem.xaml">
  1674. <SubType>Designer</SubType>
  1675. <Generator>MSBuild:Compile</Generator>
  1676. </Page>
  1677. <Page Include="Views\Dialog\CustomCreateDialog.xaml">
  1678. <SubType>Designer</SubType>
  1679. <Generator>MSBuild:Compile</Generator>
  1680. </Page>
  1681. <Page Include="Views\Dialog\DynamicPropertyDialog.xaml">
  1682. <SubType>Designer</SubType>
  1683. <Generator>MSBuild:Compile</Generator>
  1684. </Page>
  1685. <Page Include="Views\PropertyPanel\AnnotPanel\FreehandAnnotProperty.xaml">
  1686. <SubType>Designer</SubType>
  1687. <Generator>MSBuild:Compile</Generator>
  1688. </Page>
  1689. <Page Include="Views\Dialog\ToolsDialogs\SaftyDialogs\DeleteSafetySettingsDialog.xaml">
  1690. <SubType>Designer</SubType>
  1691. <Generator>MSBuild:Compile</Generator>
  1692. </Page>
  1693. <Page Include="Views\PropertyPanel\AnnotPanel\FreetextAnnotProperty.xaml">
  1694. <SubType>Designer</SubType>
  1695. <Generator>MSBuild:Compile</Generator>
  1696. </Page>
  1697. <Page Include="Views\Dialog\ToolsDialogs\SaftyDialogs\SetPasswordDialog.xaml">
  1698. <SubType>Designer</SubType>
  1699. <Generator>MSBuild:Compile</Generator>
  1700. </Page>
  1701. <Page Include="Views\Dialog\VerifyPassWordDialog.xaml">
  1702. <SubType>Designer</SubType>
  1703. <Generator>MSBuild:Compile</Generator>
  1704. </Page>
  1705. <Page Include="Views\PropertyPanel\AnnotPanel\ImageAnnotProperty.xaml">
  1706. <SubType>Designer</SubType>
  1707. <Generator>MSBuild:Compile</Generator>
  1708. </Page>
  1709. <Page Include="Views\PropertyPanel\AnnotPanel\LinkAnnotProperty.xaml">
  1710. <SubType>Designer</SubType>
  1711. <Generator>MSBuild:Compile</Generator>
  1712. </Page>
  1713. <Page Include="Views\EditTools\Background\BackgroundContent.xaml">
  1714. <SubType>Designer</SubType>
  1715. <Generator>MSBuild:Compile</Generator>
  1716. </Page>
  1717. <Page Include="Views\EditTools\Background\BackgroundDocumentContent.xaml">
  1718. <SubType>Designer</SubType>
  1719. <Generator>MSBuild:Compile</Generator>
  1720. </Page>
  1721. <Page Include="Views\PropertyPanel\AnnotPanel\SharpsAnnotProperty.xaml">
  1722. <SubType>Designer</SubType>
  1723. <Generator>MSBuild:Compile</Generator>
  1724. </Page>
  1725. <Page Include="Views\EditTools\Watermark\WatermarkContent.xaml">
  1726. <SubType>Designer</SubType>
  1727. <Generator>MSBuild:Compile</Generator>
  1728. </Page>
  1729. <Page Include="Views\PropertyPanel\AnnotPanel\SignatureAnnotProperty.xaml">
  1730. <SubType>Designer</SubType>
  1731. <Generator>MSBuild:Compile</Generator>
  1732. </Page>
  1733. <Page Include="Views\PropertyPanel\AnnotPanel\SignatureCreateDialog.xaml">
  1734. <SubType>Designer</SubType>
  1735. <Generator>MSBuild:Compile</Generator>
  1736. </Page>
  1737. <Page Include="Views\PropertyPanel\AnnotPanel\SnapshotEditMenu.xaml">
  1738. <SubType>Designer</SubType>
  1739. <Generator>MSBuild:Compile</Generator>
  1740. </Page>
  1741. <Page Include="Views\PropertyPanel\AnnotPanel\StampAnnotProperty.xaml">
  1742. <SubType>Designer</SubType>
  1743. <Generator>MSBuild:Compile</Generator>
  1744. </Page>
  1745. <Page Include="Views\EditTools\Watermark\WatermarkCreateBaseContent.xaml">
  1746. <SubType>Designer</SubType>
  1747. <Generator>MSBuild:Compile</Generator>
  1748. </Page>
  1749. <Page Include="Views\EditTools\Watermark\WatermarkCreateFileContent.xaml">
  1750. <SubType>Designer</SubType>
  1751. <Generator>MSBuild:Compile</Generator>
  1752. </Page>
  1753. <Page Include="Views\PropertyPanel\AnnotPanel\StickyNoteProperty.xaml">
  1754. <SubType>Designer</SubType>
  1755. <Generator>MSBuild:Compile</Generator>
  1756. </Page>
  1757. <Page Include="Views\PropertyPanel\AnnotPanel\TextAnnotProperty.xaml">
  1758. <SubType>Designer</SubType>
  1759. <Generator>MSBuild:Compile</Generator>
  1760. </Page>
  1761. <Page Include="Views\EditTools\Watermark\WatermarkCreateTextContent.xaml">
  1762. <SubType>Designer</SubType>
  1763. <Generator>MSBuild:Compile</Generator>
  1764. </Page>
  1765. <Page Include="Views\EditTools\Watermark\WatermarkDocumentContent.xaml">
  1766. <SubType>Designer</SubType>
  1767. <Generator>MSBuild:Compile</Generator>
  1768. </Page>
  1769. <Page Include="Views\EditTools\Watermark\WatermarkTemplateListBaseContent.xaml">
  1770. <SubType>Designer</SubType>
  1771. <Generator>MSBuild:Compile</Generator>
  1772. </Page>
  1773. <Page Include="CustomControl\CompositeControl\SlidContent.xaml">
  1774. <Generator>MSBuild:Compile</Generator>
  1775. </Page>
  1776. <Page Include="Views\EditTools\Watermark\WatermarkTemplateListFileContent.xaml">
  1777. <SubType>Designer</SubType>
  1778. <Generator>MSBuild:Compile</Generator>
  1779. </Page>
  1780. <Page Include="Views\EditTools\Watermark\WatermarkTemplateListTextContent.xaml">
  1781. <SubType>Designer</SubType>
  1782. <Generator>MSBuild:Compile</Generator>
  1783. </Page>
  1784. <Page Include="Views\EditTools\Background\BackgroundCreateBaseContent.xaml">
  1785. <SubType>Designer</SubType>
  1786. </Page>
  1787. <Page Include="Views\PropertyPanel\PDFEdit\ImageEditProperty.xaml">
  1788. <Generator>MSBuild:Compile</Generator>
  1789. <SubType>Designer</SubType>
  1790. </Page>
  1791. <Page Include="Views\PropertyPanel\PDFEdit\ImageTextEditProperty.xaml">
  1792. <Generator>MSBuild:Compile</Generator>
  1793. <SubType>Designer</SubType>
  1794. </Page>
  1795. <Page Include="Views\PropertyPanel\PDFEdit\TextEditProperty.xaml">
  1796. <Generator>MSBuild:Compile</Generator>
  1797. <SubType>Designer</SubType>
  1798. </Page>
  1799. <Page Include="Views\PropertyPanel\PropertyPanelContent.xaml">
  1800. <SubType>Designer</SubType>
  1801. <Generator>MSBuild:Compile</Generator>
  1802. </Page>
  1803. <Page Include="Views\PropertyPanel\Scan\ScanPropertyPanel.xaml">
  1804. <SubType>Designer</SubType>
  1805. <Generator>MSBuild:Compile</Generator>
  1806. </Page>
  1807. <Page Include="Views\PropertyPanel\ViewModular\ReadModeContent.xaml">
  1808. <SubType>Designer</SubType>
  1809. <Generator>MSBuild:Compile</Generator>
  1810. </Page>
  1811. <Page Include="Views\PropertyPanel\ViewModular\ReadViewContent.xaml">
  1812. <SubType>Designer</SubType>
  1813. <Generator>MSBuild:Compile</Generator>
  1814. </Page>
  1815. <Page Include="Views\PropertyPanel\ViewModular\SplitScreenContent.xaml">
  1816. <SubType>Designer</SubType>
  1817. <Generator>MSBuild:Compile</Generator>
  1818. </Page>
  1819. <Page Include="Views\EditTools\Background\BackgroundCreateColorContent.xaml">
  1820. <SubType>Designer</SubType>
  1821. <Generator>MSBuild:Compile</Generator>
  1822. </Page>
  1823. <Page Include="Views\EditTools\Background\BackgroundCreateFileContent.xaml">
  1824. <SubType>Designer</SubType>
  1825. <Generator>MSBuild:Compile</Generator>
  1826. </Page>
  1827. <Page Include="Views\PropertyPanel\ViewModular\PageContent.xaml">
  1828. <SubType>Designer</SubType>
  1829. <Generator>MSBuild:Compile</Generator>
  1830. </Page>
  1831. <Page Include="Views\PropertyPanel\ViewModular\ThemesContent.xaml">
  1832. <SubType>Designer</SubType>
  1833. <Generator>MSBuild:Compile</Generator>
  1834. </Page>
  1835. <Page Include="Views\PropertyPanel\ViewModular\ViewModularContent.xaml">
  1836. <SubType>Designer</SubType>
  1837. <Generator>MSBuild:Compile</Generator>
  1838. </Page>
  1839. <Page Include="Views\EditTools\Background\BackgroundTemplateListBaseContent.xaml">
  1840. <SubType>Designer</SubType>
  1841. <Generator>MSBuild:Compile</Generator>
  1842. </Page>
  1843. <Page Include="Views\EditTools\Background\BackgroundTemplateListColorContent.xaml">
  1844. <SubType>Designer</SubType>
  1845. <Generator>MSBuild:Compile</Generator>
  1846. </Page>
  1847. <Page Include="Views\EditTools\Background\BackgroundTemplateListFileContent.xaml">
  1848. <SubType>Designer</SubType>
  1849. <Generator>MSBuild:Compile</Generator>
  1850. </Page>
  1851. <Page Include="Views\HomePanel\HomeCloudContent.xaml">
  1852. <SubType>Designer</SubType>
  1853. <Generator>MSBuild:Compile</Generator>
  1854. </Page>
  1855. <Page Include="Views\HomePanel\HomeGuidContent.xaml">
  1856. <SubType>Designer</SubType>
  1857. <Generator>MSBuild:Compile</Generator>
  1858. </Page>
  1859. <Page Include="Views\HomePanel\PDFTools\PDFToolItem.xaml">
  1860. <Generator>MSBuild:Compile</Generator>
  1861. <SubType>Designer</SubType>
  1862. </Page>
  1863. <Page Include="Views\HomePanel\HomeToolsContent.xaml">
  1864. <SubType>Designer</SubType>
  1865. <Generator>MSBuild:Compile</Generator>
  1866. </Page>
  1867. <Page Include="Views\HomePanel\PDFTools\PDFToolsContent.xaml">
  1868. <Generator>MSBuild:Compile</Generator>
  1869. <SubType>Designer</SubType>
  1870. </Page>
  1871. <Page Include="Views\HomePanel\PDFTools\QuickToolsContent.xaml">
  1872. <SubType>Designer</SubType>
  1873. <Generator>MSBuild:Compile</Generator>
  1874. </Page>
  1875. <Page Include="Views\HomePanel\PromotionContent.xaml">
  1876. <Generator>MSBuild:Compile</Generator>
  1877. <SubType>Designer</SubType>
  1878. </Page>
  1879. <Page Include="Views\HomePanel\RecentFiles\DocItemControl.xaml">
  1880. <Generator>MSBuild:Compile</Generator>
  1881. <SubType>Designer</SubType>
  1882. </Page>
  1883. <Page Include="Views\HomePanel\RecentFiles\DocItemListViewControl.xaml">
  1884. <Generator>MSBuild:Compile</Generator>
  1885. <SubType>Designer</SubType>
  1886. </Page>
  1887. <Page Include="Views\HomePanel\RecentFiles\RecentFilesContent.xaml">
  1888. <Generator>MSBuild:Compile</Generator>
  1889. <SubType>Designer</SubType>
  1890. </Page>
  1891. <Page Include="Views\MainContent.xaml">
  1892. <SubType>Designer</SubType>
  1893. <Generator>MSBuild:Compile</Generator>
  1894. </Page>
  1895. <Page Include="Views\MainWindow.xaml">
  1896. <Generator>MSBuild:Compile</Generator>
  1897. <SubType>Designer</SubType>
  1898. </Page>
  1899. <Compile Include="App.xaml.cs">
  1900. <DependentUpon>App.xaml</DependentUpon>
  1901. <SubType>Code</SubType>
  1902. </Compile>
  1903. <Compile Include="ViewModels\HomeContentViewModel.cs" />
  1904. <Compile Include="ViewModels\MainWindowViewModel.cs" />
  1905. <Compile Include="ViewModels\ViewContentViewModel.cs" />
  1906. <Compile Include="Views\HomeContent.xaml.cs">
  1907. <DependentUpon>HomeContent.xaml</DependentUpon>
  1908. </Compile>
  1909. <Compile Include="Views\MainWindow.xaml.cs">
  1910. <DependentUpon>MainWindow.xaml</DependentUpon>
  1911. <SubType>Code</SubType>
  1912. </Compile>
  1913. <Page Include="Views\PageEdit\PageEditContent.xaml">
  1914. <Generator>MSBuild:Compile</Generator>
  1915. <SubType>Designer</SubType>
  1916. </Page>
  1917. <Page Include="Views\Scan\Redress.xaml">
  1918. <SubType>Designer</SubType>
  1919. <Generator>MSBuild:Compile</Generator>
  1920. </Page>
  1921. <Page Include="Views\Scan\ScanViwer.xaml">
  1922. <SubType>Designer</SubType>
  1923. <Generator>MSBuild:Compile</Generator>
  1924. </Page>
  1925. <Page Include="Views\TipContent\LinkAnnotTip.xaml">
  1926. <Generator>MSBuild:Compile</Generator>
  1927. <SubType>Designer</SubType>
  1928. </Page>
  1929. <Page Include="Views\Tools\AnnotToolContent.xaml">
  1930. <SubType>Designer</SubType>
  1931. <Generator>MSBuild:Compile</Generator>
  1932. </Page>
  1933. <Page Include="Views\Tools\ConverterBarContent.xaml">
  1934. <SubType>Designer</SubType>
  1935. <Generator>MSBuild:Compile</Generator>
  1936. </Page>
  1937. <Page Include="Views\Tools\ScanContent.xaml">
  1938. <SubType>Designer</SubType>
  1939. <Generator>MSBuild:Compile</Generator>
  1940. </Page>
  1941. <Page Include="Views\Tools\TextEditToolContent.xaml">
  1942. <Generator>MSBuild:Compile</Generator>
  1943. <SubType>Designer</SubType>
  1944. </Page>
  1945. <Page Include="Views\Tools\ToolsBarContent.xaml">
  1946. <SubType>Designer</SubType>
  1947. <Generator>MSBuild:Compile</Generator>
  1948. </Page>
  1949. <Page Include="Views\ViewContent.xaml">
  1950. <SubType>Designer</SubType>
  1951. <Generator>MSBuild:Compile</Generator>
  1952. </Page>
  1953. </ItemGroup>
  1954. <ItemGroup>
  1955. <Compile Include="Properties\AssemblyInfo.cs">
  1956. <SubType>Code</SubType>
  1957. </Compile>
  1958. <Compile Include="Properties\Settings.Designer.cs">
  1959. <AutoGen>True</AutoGen>
  1960. <DependentUpon>Settings.settings</DependentUpon>
  1961. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  1962. </Compile>
  1963. <None Include="credentials.json">
  1964. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1965. </None>
  1966. <None Include="packages.config" />
  1967. <None Include="Properties\Settings.settings">
  1968. <Generator>SettingsSingleFileGenerator</Generator>
  1969. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  1970. </None>
  1971. <Content Include="ComDocumentAIKit.dll">
  1972. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1973. </Content>
  1974. <Resource Include="Resources\ToolBarIcon\Scan\enhance.png">
  1975. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1976. </Resource>
  1977. <Resource Include="Resources\ToolBarIcon\Scan\ocr.png">
  1978. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1979. </Resource>
  1980. <Resource Include="Resources\ToolBarIcon\Scan\batch.png">
  1981. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1982. </Resource>
  1983. <Resource Include="Resources\BOTA\no_outline.png" />
  1984. <Resource Include="Resources\PropertyPanel\nosign.png" />
  1985. <Resource Include="Resources\Dialog\password.png" />
  1986. <Content Include="source\AnalysisWord\Res\word\_rels\document.xml.rels">
  1987. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1988. </Content>
  1989. <Content Include="x64\models\DA_image_enhance_magic_color_1.0.0.model">
  1990. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1991. </Content>
  1992. <Content Include="x64\models\DA_Ocr_Classification_1.0.0.model">
  1993. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1994. </Content>
  1995. <Content Include="x64\models\DA_Ocr_Detection_chinese_1.0.0.model">
  1996. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1997. </Content>
  1998. <Content Include="x64\models\DA_Ocr_Detection_english_1.0.0.model">
  1999. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2000. </Content>
  2001. <Content Include="x64\models\DA_Ocr_Recognition_chinese_1.0.0.model">
  2002. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2003. </Content>
  2004. <Content Include="x64\models\DA_Ocr_Recognition_chinese_cht_1.0.0.model">
  2005. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2006. </Content>
  2007. <Content Include="x64\models\DA_Ocr_Recognition_english_1.0.0.model">
  2008. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2009. </Content>
  2010. <Content Include="x64\models\DA_Ocr_Recognition_japan_1.0.0.model">
  2011. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2012. </Content>
  2013. <Content Include="x64\models\DA_Ocr_Recognition_korean_1.0.0.model">
  2014. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2015. </Content>
  2016. <Resource Include="Resources\BOTA\Annotation\Arrow.png" />
  2017. <Resource Include="Resources\BOTA\Annotation\Bookmark.png" />
  2018. <Resource Include="Resources\BOTA\Annotation\Circle.png" />
  2019. <Resource Include="Resources\BOTA\Annotation\Freehande.png" />
  2020. <Resource Include="Resources\BOTA\Annotation\Freehande2.png" />
  2021. <Resource Include="Resources\BOTA\Annotation\Hand.png" />
  2022. <Resource Include="Resources\BOTA\Annotation\Highlight.png" />
  2023. <Resource Include="Resources\BOTA\Annotation\Hyperlink.png" />
  2024. <Resource Include="Resources\BOTA\Annotation\Image.png" />
  2025. <Resource Include="Resources\BOTA\Annotation\Line.png" />
  2026. <Resource Include="Resources\BOTA\Annotation\Note.png" />
  2027. <Resource Include="Resources\BOTA\Annotation\Point.png" />
  2028. <Resource Include="Resources\BOTA\Annotation\Rectangle.png" />
  2029. <Resource Include="Resources\BOTA\Annotation\Selecttool.png" />
  2030. <Resource Include="Resources\BOTA\Annotation\Stamp.png" />
  2031. <Resource Include="Resources\BOTA\Annotation\Textbox.png" />
  2032. <Resource Include="Resources\BOTA\Annotation\wavyline2.png" />
  2033. <Resource Include="Resources\BOTA\empty_annotation.png" />
  2034. <Resource Include="Resources\HomeIcon\PDFTools\background.png" />
  2035. <Resource Include="Resources\HomeIcon\PDFTools\batch-remove.png" />
  2036. <Resource Include="Resources\HomeIcon\PDFTools\batch.png" />
  2037. <Resource Include="Resources\HomeIcon\PDFTools\batesnumbers.png" />
  2038. <Resource Include="Resources\HomeIcon\PDFTools\compare.png" />
  2039. <Resource Include="Resources\HomeIcon\PDFTools\compress.png" />
  2040. <Resource Include="Resources\HomeIcon\PDFTools\convert.png" />
  2041. <Resource Include="Resources\HomeIcon\PDFTools\extract.png" />
  2042. <Resource Include="Resources\HomeIcon\PDFTools\form-filed-recognition.png" />
  2043. <Resource Include="Resources\HomeIcon\PDFTools\header&amp;footer.png" />
  2044. <Resource Include="Resources\HomeIcon\PDFTools\image.png" />
  2045. <Resource Include="Resources\HomeIcon\PDFTools\insert.png" />
  2046. <Resource Include="Resources\HomeIcon\PDFTools\merge.png" />
  2047. <Resource Include="Resources\HomeIcon\PDFTools\ocr.png" />
  2048. <Resource Include="Resources\HomeIcon\PDFTools\page-edit.png" />
  2049. <Resource Include="Resources\HomeIcon\PDFTools\pdf-to-excel.png" />
  2050. <Resource Include="Resources\HomeIcon\PDFTools\pdf-to-image.png" />
  2051. <Resource Include="Resources\HomeIcon\PDFTools\pdf-to-ppt.png" />
  2052. <Resource Include="Resources\HomeIcon\PDFTools\pdf-to-word.png" />
  2053. <Resource Include="Resources\HomeIcon\PDFTools\print.png" />
  2054. <Resource Include="Resources\HomeIcon\PDFTools\reduct.png" />
  2055. <Resource Include="Resources\HomeIcon\PDFTools\security.png" />
  2056. <Resource Include="Resources\HomeIcon\PDFTools\split.png" />
  2057. <Resource Include="Resources\HomeIcon\PDFTools\watermark.png" />
  2058. <Resource Include="Resources\StampIcons\Accepted.png" />
  2059. <Resource Include="Resources\StampIcons\Approved.png" />
  2060. <Resource Include="Resources\StampIcons\Completed.png" />
  2061. <Resource Include="Resources\StampIcons\Confidential.png" />
  2062. <Resource Include="Resources\StampIcons\Draft.png" />
  2063. <Resource Include="Resources\StampIcons\Empty_stamp.png" />
  2064. <Resource Include="Resources\StampIcons\Final.png" />
  2065. <Resource Include="Resources\StampIcons\ForComment.png" />
  2066. <Resource Include="Resources\StampIcons\ForPublicRelease.png" />
  2067. <Resource Include="Resources\StampIcons\InformationOnly.png" />
  2068. <Resource Include="Resources\StampIcons\InitialHere.png" />
  2069. <Resource Include="Resources\StampIcons\NotApproved.png" />
  2070. <Resource Include="Resources\StampIcons\NotForPublicRelease.png" />
  2071. <Resource Include="Resources\StampIcons\PreliminaryResults.png" />
  2072. <Resource Include="Resources\StampIcons\PrivateMark1.png" />
  2073. <Resource Include="Resources\StampIcons\PrivateMark2.png" />
  2074. <Resource Include="Resources\StampIcons\PrivateMark3.png" />
  2075. <Resource Include="Resources\StampIcons\Rejected.png" />
  2076. <Resource Include="Resources\StampIcons\revised.png" />
  2077. <Resource Include="Resources\StampIcons\SignHere.png" />
  2078. <Resource Include="Resources\StampIcons\Void.png" />
  2079. <Resource Include="Resources\StampIcons\Witness.png" />
  2080. <Resource Include="Resources\Dialog\AddImage.png">
  2081. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2082. </Resource>
  2083. <Resource Include="Resources\Dialog\AddImageSuspend.png">
  2084. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2085. </Resource>
  2086. <Resource Include="Resources\Dialog\help.png" />
  2087. <Content Include="Resources\PageEdit\GridLine.jpg">
  2088. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2089. </Content>
  2090. <Content Include="Resources\PageEdit\HorizontalLine.jpg">
  2091. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2092. </Content>
  2093. <Content Include="Resources\PageEdit\Staff.jpg">
  2094. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2095. </Content>
  2096. <Resource Include="Resources\EditTools\watermark_bg.png" />
  2097. <Resource Include="Resources\PropertyPanel\EmptyAnnot.png" />
  2098. <Resource Include="Resources\PropertyPanel\nostamp.png" />
  2099. <Content Include="source\AnalysisWord\Res\_rels\.rels">
  2100. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2101. </Content>
  2102. </ItemGroup>
  2103. <ItemGroup>
  2104. <None Include="App.config" />
  2105. </ItemGroup>
  2106. <ItemGroup>
  2107. <Folder Include="Views\Edit\" />
  2108. <Folder Include="x64\DocumentAILib\" />
  2109. </ItemGroup>
  2110. <ItemGroup>
  2111. <Content Include="ComOCRKit.Desk.dll">
  2112. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2113. </Content>
  2114. <Content Include="ComPDFKit.Desk.dll">
  2115. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2116. </Content>
  2117. <Content Include="ComPDFKit.Viewer.dll">
  2118. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2119. </Content>
  2120. <Content Include="ComPDFKit_Conversion.dll">
  2121. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2122. </Content>
  2123. <Content Include="DotNetSpeech.dll">
  2124. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2125. </Content>
  2126. <Content Include="Dragablz.dll">
  2127. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2128. </Content>
  2129. <Resource Include="StyleAndTemplateList.txt" />
  2130. <Resource Include="Resources\QuickToolIcon\Batch.png" />
  2131. <Resource Include="Resources\HomeIcon\file_addition.png" />
  2132. <Resource Include="Resources\HomeIcon\folderOpen.png" />
  2133. <Resource Include="Resources\PromotionIcon\Android.png" />
  2134. <Resource Include="Resources\PromotionIcon\ComPDFKit.png" />
  2135. <Resource Include="Resources\PromotionIcon\ComVideoKit.png" />
  2136. <Resource Include="Resources\PromotionIcon\FilmageEditor.png" />
  2137. <Resource Include="Resources\PromotionIcon\FilmageScreen.png" />
  2138. <Resource Include="Resources\PromotionIcon\FreePDFTemplates.png" />
  2139. <Resource Include="Resources\PromotionIcon\IPhoneiPad.png" />
  2140. <Resource Include="Resources\PromotionIcon\SignFlow.png" />
  2141. <Resource Include="Resources\PromotionIcon\Windows.png" />
  2142. <Resource Include="Resources\FilesType\ic_propertybar_file_pdf_lock.png" />
  2143. <Resource Include="Resources\FilesType\ic_propertybar_file_png_Large.png" />
  2144. <Resource Include="SDKLisence.xml" />
  2145. <Content Include="index.html">
  2146. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2147. </Content>
  2148. <Resource Include="Resources\ToolBarIcon\MyTools\Arrow.png" />
  2149. <Resource Include="Resources\ToolBarIcon\MyTools\Bookmark.png" />
  2150. <Resource Include="Resources\ToolBarIcon\MyTools\Circle.png" />
  2151. <Resource Include="Resources\ToolBarIcon\MyTools\Freehande.png" />
  2152. <Resource Include="Resources\ToolBarIcon\MyTools\Freehande2.png" />
  2153. <Resource Include="Resources\ToolBarIcon\MyTools\Hand.png" />
  2154. <Resource Include="Resources\ToolBarIcon\MyTools\Highlight.png" />
  2155. <Resource Include="Resources\ToolBarIcon\MyTools\Hyperlink.png" />
  2156. <Resource Include="Resources\ToolBarIcon\MyTools\Image.png" />
  2157. <Resource Include="Resources\ToolBarIcon\MyTools\Line.png" />
  2158. <Resource Include="Resources\ToolBarIcon\MyTools\Note.png" />
  2159. <Resource Include="Resources\ToolBarIcon\MyTools\Point.png" />
  2160. <Resource Include="Resources\ToolBarIcon\MyTools\Rectangle.png" />
  2161. <Resource Include="Resources\ToolBarIcon\MyTools\Selecttool.png" />
  2162. <Resource Include="Resources\ToolBarIcon\MyTools\Stamp.png" />
  2163. <Resource Include="Resources\ToolBarIcon\MyTools\Textbox.png" />
  2164. <Resource Include="Resources\ToolBarIcon\MyTools\wavyline2.png" />
  2165. <Content Include="source\AnalysisPPT\Res\slideLayouts\slideLayout1.xml">
  2166. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2167. </Content>
  2168. <Content Include="source\AnalysisPPT\Res\slideLayouts\slideLayout10.xml">
  2169. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2170. </Content>
  2171. <Content Include="source\AnalysisPPT\Res\slideLayouts\slideLayout11.xml">
  2172. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2173. </Content>
  2174. <Content Include="source\AnalysisPPT\Res\slideLayouts\slideLayout2.xml">
  2175. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2176. </Content>
  2177. <Content Include="source\AnalysisPPT\Res\slideLayouts\slideLayout3.xml">
  2178. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2179. </Content>
  2180. <Content Include="source\AnalysisPPT\Res\slideLayouts\slideLayout4.xml">
  2181. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2182. </Content>
  2183. <Content Include="source\AnalysisPPT\Res\slideLayouts\slideLayout5.xml">
  2184. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2185. </Content>
  2186. <Content Include="source\AnalysisPPT\Res\slideLayouts\slideLayout6.xml">
  2187. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2188. </Content>
  2189. <Content Include="source\AnalysisPPT\Res\slideLayouts\slideLayout7.xml">
  2190. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2191. </Content>
  2192. <Content Include="source\AnalysisPPT\Res\slideLayouts\slideLayout8.xml">
  2193. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2194. </Content>
  2195. <Content Include="source\AnalysisPPT\Res\slideLayouts\slideLayout9.xml">
  2196. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2197. </Content>
  2198. <Content Include="source\AnalysisPPT\Res\slideMaster1.xml">
  2199. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2200. </Content>
  2201. <Content Include="source\AnalysisPPT\Res\theme1.xml">
  2202. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2203. </Content>
  2204. <Content Include="source\AnalysisPPT\Res\thumbnail.jpeg">
  2205. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2206. </Content>
  2207. <Content Include="source\AnalysisWord\Res\docProps\app.xml">
  2208. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2209. </Content>
  2210. <Content Include="source\AnalysisWord\Res\docProps\core.xml">
  2211. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2212. </Content>
  2213. <Content Include="source\AnalysisWord\Res\word\document.xml">
  2214. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2215. </Content>
  2216. <Content Include="source\AnalysisWord\Res\word\document0.xml">
  2217. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2218. </Content>
  2219. <Content Include="source\AnalysisWord\Res\word\endnotes.xml">
  2220. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2221. </Content>
  2222. <Content Include="source\AnalysisWord\Res\word\footnotes.xml">
  2223. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2224. </Content>
  2225. <Content Include="source\AnalysisWord\Res\word\settings.xml">
  2226. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2227. </Content>
  2228. <Content Include="source\AnalysisWord\Res\word\theme\theme1.xml">
  2229. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2230. </Content>
  2231. <Content Include="source\AnalysisWord\Res\[Content_Types].xml">
  2232. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2233. </Content>
  2234. <Resource Include="Resources\BOTA\empty_bookmark.png" />
  2235. <Resource Include="Resources\PropertyPanel\colorIcon.png" />
  2236. <Content Include="SystemService\PreviewHandler.dll">
  2237. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2238. </Content>
  2239. <Content Include="SystemService\PreviewHandlerx86.dll">
  2240. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2241. </Content>
  2242. <Content Include="SystemService\TechPDFKitBase.dll">
  2243. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2244. </Content>
  2245. <Content Include="SystemService\ThumbnailProvider.dll">
  2246. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2247. </Content>
  2248. <Content Include="SystemService\ThumbnailProviderx86.dll">
  2249. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2250. </Content>
  2251. <Content Include="x64\ComPDFKit.dll">
  2252. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2253. </Content>
  2254. <Content Include="x64\CPDFConverterNative.dll">
  2255. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2256. </Content>
  2257. <Content Include="x64\ComDocumentAINative.dll">
  2258. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2259. </Content>
  2260. <Content Include="x64\DocumentAI.dll">
  2261. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2262. </Content>
  2263. <Content Include="x64\libiomp5md.dll">
  2264. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2265. </Content>
  2266. <Content Include="x64\mkldnn.dll">
  2267. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2268. </Content>
  2269. <Content Include="x64\mklml.dll">
  2270. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2271. </Content>
  2272. <Content Include="x64\onnxruntime.dll">
  2273. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2274. </Content>
  2275. <Content Include="x64\opencv_world420.dll">
  2276. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2277. </Content>
  2278. <Content Include="x64\opencv_world420d.dll">
  2279. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2280. </Content>
  2281. <Content Include="x64\paddle2onnx.dll">
  2282. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2283. </Content>
  2284. <Content Include="x64\paddle_inference.dll">
  2285. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2286. </Content>
  2287. <Content Include="x64\libhpdf.dll">
  2288. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2289. </Content>
  2290. <Content Include="x64\libpng16.dll">
  2291. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2292. </Content>
  2293. <Content Include="x64\TechPDFKit.dll">
  2294. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2295. </Content>
  2296. <Content Include="x64\TechPdfToOffice.dll">
  2297. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2298. </Content>
  2299. <Content Include="x64\vcruntime140.dll">
  2300. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2301. </Content>
  2302. <Content Include="x64\zlib1.dll">
  2303. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2304. </Content>
  2305. <Content Include="x86\ComPDFKit.dll">
  2306. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2307. </Content>
  2308. <Content Include="x86\CPDFConverterNative.dll">
  2309. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2310. </Content>
  2311. <Content Include="x86\libhpdf.dll">
  2312. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2313. </Content>
  2314. <Content Include="x86\libpng16.dll">
  2315. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2316. </Content>
  2317. <Content Include="x86\TechPDFKit.dll">
  2318. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2319. </Content>
  2320. <Content Include="x86\TechPDFToOffice.dll">
  2321. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2322. </Content>
  2323. <Content Include="x86\vcruntime140.dll">
  2324. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2325. </Content>
  2326. <Content Include="x86\zlib1.dll">
  2327. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  2328. </Content>
  2329. </ItemGroup>
  2330. <ItemGroup>
  2331. <ProjectReference Include="..\PDFSettings\PDFSettings.csproj">
  2332. <Project>{bee73aae-9a2c-446b-b64d-3a8f042c985d}</Project>
  2333. <Name>PDFSettings</Name>
  2334. </ProjectReference>
  2335. </ItemGroup>
  2336. <ItemGroup>
  2337. <EmbeddedResource Include="Properties\Resources.resx">
  2338. <Generator>ResXFileCodeGenerator</Generator>
  2339. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  2340. </EmbeddedResource>
  2341. </ItemGroup>
  2342. <ItemGroup>
  2343. <BootstrapperPackage Include=".NETFramework,Version=v4.6.2">
  2344. <Visible>False</Visible>
  2345. <ProductName>Microsoft .NET Framework 4.6.2 %28x86 和 x64%29</ProductName>
  2346. <Install>true</Install>
  2347. </BootstrapperPackage>
  2348. <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
  2349. <Visible>False</Visible>
  2350. <ProductName>.NET Framework 3.5 SP1</ProductName>
  2351. <Install>false</Install>
  2352. </BootstrapperPackage>
  2353. </ItemGroup>
  2354. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  2355. <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
  2356. <PropertyGroup>
  2357. <ErrorText>这台计算机上缺少此项目引用的 NuGet 程序包。使用“NuGet 程序包还原”可下载这些程序包。有关更多信息,请参见 http://go.microsoft.com/fwlink/?LinkID=322105。缺少的文件是 {0}。</ErrorText>
  2358. </PropertyGroup>
  2359. <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'))" />
  2360. <Error Condition="!Exists('packages\Magick.NET-Q16-AnyCPU.12.2.2\build\netstandard20\Magick.NET-Q16-AnyCPU.targets')" Text="$([System.String]::Format('$(ErrorText)', 'packages\Magick.NET-Q16-AnyCPU.12.2.2\build\netstandard20\Magick.NET-Q16-AnyCPU.targets'))" />
  2361. </Target>
  2362. <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')" />
  2363. <Import Project="packages\Magick.NET-Q16-AnyCPU.12.2.2\build\netstandard20\Magick.NET-Q16-AnyCPU.targets" Condition="Exists('packages\Magick.NET-Q16-AnyCPU.12.2.2\build\netstandard20\Magick.NET-Q16-AnyCPU.targets')" />
  2364. </Project>