PDF Master.csproj 139 KB

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