PDF Master.csproj 149 KB

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