PDF Office.csproj 134 KB

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