PDF Master.csproj 149 KB

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