PDF Master.csproj 138 KB

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