PDF Office.csproj 93 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="packages\Xamarin.Forms.5.0.0.2012\build\Xamarin.Forms.props" Condition="Exists('packages\Xamarin.Forms.5.0.0.2012\build\Xamarin.Forms.props')" />
  4. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  5. <PropertyGroup>
  6. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  7. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  8. <ProjectGuid>{F3A2111D-9EAF-4ECE-9A92-B7F21D429DCD}</ProjectGuid>
  9. <OutputType>WinExe</OutputType>
  10. <RootNamespace>PDF_Office</RootNamespace>
  11. <AssemblyName>PDF Office</AssemblyName>
  12. <TargetFrameworkVersion>v4.6.2</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  15. <WarningLevel>4</WarningLevel>
  16. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  17. <Deterministic>true</Deterministic>
  18. <NuGetPackageImportStamp>
  19. </NuGetPackageImportStamp>
  20. </PropertyGroup>
  21. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  22. <PlatformTarget>AnyCPU</PlatformTarget>
  23. <DebugSymbols>true</DebugSymbols>
  24. <DebugType>embedded</DebugType>
  25. <Optimize>false</Optimize>
  26. <OutputPath>bin\Debug\</OutputPath>
  27. <DefineConstants>DEBUG;TRACE</DefineConstants>
  28. <ErrorReport>prompt</ErrorReport>
  29. <WarningLevel>4</WarningLevel>
  30. <Prefer32Bit>false</Prefer32Bit>
  31. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  32. </PropertyGroup>
  33. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  34. <PlatformTarget>AnyCPU</PlatformTarget>
  35. <DebugType>pdbonly</DebugType>
  36. <Optimize>true</Optimize>
  37. <OutputPath>bin\Release\</OutputPath>
  38. <DefineConstants>TRACE</DefineConstants>
  39. <ErrorReport>prompt</ErrorReport>
  40. <WarningLevel>4</WarningLevel>
  41. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  42. </PropertyGroup>
  43. <ItemGroup>
  44. <Reference Include="ComOCRKit.Desk, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
  45. <SpecificVersion>False</SpecificVersion>
  46. <HintPath>.\ComOCRKit.Desk.dll</HintPath>
  47. </Reference>
  48. <Reference Include="ComPDFKit.Desk, Version=1.7.0.0, Culture=neutral, processorArchitecture=MSIL">
  49. <SpecificVersion>False</SpecificVersion>
  50. <HintPath>.\ComPDFKit.Desk.dll</HintPath>
  51. </Reference>
  52. <Reference Include="ComPDFKit.Viewer, Version=1.7.0.0, Culture=neutral, processorArchitecture=MSIL">
  53. <SpecificVersion>False</SpecificVersion>
  54. <HintPath>.\ComPDFKit.Viewer.dll</HintPath>
  55. </Reference>
  56. <Reference Include="ComPDFKit_Conversion, Version=1.3.0.0, Culture=neutral, processorArchitecture=MSIL">
  57. <SpecificVersion>False</SpecificVersion>
  58. <HintPath>.\ComPDFKit_Conversion.dll</HintPath>
  59. </Reference>
  60. <Reference Include="DotNetSpeech, Version=5.1.0.0, Culture=neutral, processorArchitecture=MSIL">
  61. <SpecificVersion>False</SpecificVersion>
  62. <EmbedInteropTypes>True</EmbedInteropTypes>
  63. <HintPath>.\DotNetSpeech.dll</HintPath>
  64. </Reference>
  65. <Reference Include="Dragablz, Version=0.0.4.0, Culture=neutral, processorArchitecture=MSIL">
  66. <SpecificVersion>False</SpecificVersion>
  67. <HintPath>.\Dragablz.dll</HintPath>
  68. </Reference>
  69. <Reference Include="Dropbox.Api, Version=6.33.0.0, Culture=neutral, PublicKeyToken=310f0e82fbb45d01, processorArchitecture=MSIL">
  70. <HintPath>packages\Dropbox.Api.6.33.0\lib\netstandard2.0\Dropbox.Api.dll</HintPath>
  71. </Reference>
  72. <Reference Include="DryIoc, Version=4.7.7.0, Culture=neutral, PublicKeyToken=dfbf2bd50fcf7768, processorArchitecture=MSIL">
  73. <HintPath>packages\DryIoc.dll.4.7.7\lib\net45\DryIoc.dll</HintPath>
  74. </Reference>
  75. <Reference Include="Google.Apis, Version=1.57.0.0, Culture=neutral, PublicKeyToken=4b01fa6e34db77ab, processorArchitecture=MSIL">
  76. <HintPath>packages\Google.Apis.1.57.0\lib\net45\Google.Apis.dll</HintPath>
  77. </Reference>
  78. <Reference Include="Google.Apis.Auth, Version=1.57.0.0, Culture=neutral, PublicKeyToken=4b01fa6e34db77ab, processorArchitecture=MSIL">
  79. <HintPath>packages\Google.Apis.Auth.1.57.0\lib\net461\Google.Apis.Auth.dll</HintPath>
  80. </Reference>
  81. <Reference Include="Google.Apis.Auth.PlatformServices, Version=1.57.0.0, Culture=neutral, PublicKeyToken=4b01fa6e34db77ab, processorArchitecture=MSIL">
  82. <HintPath>packages\Google.Apis.Auth.1.57.0\lib\net461\Google.Apis.Auth.PlatformServices.dll</HintPath>
  83. </Reference>
  84. <Reference Include="Google.Apis.Core, Version=1.57.0.0, Culture=neutral, PublicKeyToken=4b01fa6e34db77ab, processorArchitecture=MSIL">
  85. <HintPath>packages\Google.Apis.Core.1.57.0\lib\net45\Google.Apis.Core.dll</HintPath>
  86. </Reference>
  87. <Reference Include="Google.Apis.Drive.v3, Version=1.57.0.2859, Culture=neutral, PublicKeyToken=4b01fa6e34db77ab, processorArchitecture=MSIL">
  88. <HintPath>packages\Google.Apis.Drive.v3.1.57.0.2859\lib\net45\Google.Apis.Drive.v3.dll</HintPath>
  89. </Reference>
  90. <Reference Include="Google.Apis.PlatformServices, Version=1.57.0.0, Culture=neutral, PublicKeyToken=4b01fa6e34db77ab, processorArchitecture=MSIL">
  91. <HintPath>packages\Google.Apis.1.57.0\lib\net45\Google.Apis.PlatformServices.dll</HintPath>
  92. </Reference>
  93. <Reference Include="Microsoft.AppCenter, Version=0.0.0.0, Culture=neutral, PublicKeyToken=8a600e2fee7ba272, processorArchitecture=MSIL">
  94. <HintPath>packages\Microsoft.AppCenter.4.5.0\lib\net461\Microsoft.AppCenter.dll</HintPath>
  95. </Reference>
  96. <Reference Include="Microsoft.AppCenter.Analytics, Version=0.0.0.0, Culture=neutral, PublicKeyToken=8a600e2fee7ba272, processorArchitecture=MSIL">
  97. <HintPath>packages\Microsoft.AppCenter.Analytics.4.5.0\lib\net461\Microsoft.AppCenter.Analytics.dll</HintPath>
  98. </Reference>
  99. <Reference Include="Microsoft.AppCenter.Crashes, Version=0.0.0.0, Culture=neutral, PublicKeyToken=8a600e2fee7ba272, processorArchitecture=MSIL">
  100. <HintPath>packages\Microsoft.AppCenter.Crashes.4.5.0\lib\net461\Microsoft.AppCenter.Crashes.dll</HintPath>
  101. </Reference>
  102. <Reference Include="Microsoft.Office.Interop.Excel, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c, processorArchitecture=MSIL">
  103. <HintPath>packages\Microsoft.Office.Interop.Excel.15.0.4795.1001\lib\net20\Microsoft.Office.Interop.Excel.dll</HintPath>
  104. <EmbedInteropTypes>True</EmbedInteropTypes>
  105. </Reference>
  106. <Reference Include="Microsoft.Office.Interop.PowerPoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c, processorArchitecture=MSIL">
  107. <HintPath>packages\Microsoft.Office.Interop.PowerPoint.15.0.4420.1018\lib\net20\Microsoft.Office.Interop.PowerPoint.dll</HintPath>
  108. <EmbedInteropTypes>True</EmbedInteropTypes>
  109. </Reference>
  110. <Reference Include="Microsoft.Office.Interop.Word, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c, processorArchitecture=MSIL">
  111. <HintPath>packages\Microsoft.Office.Interop.Word.15.0.4797.1004\lib\net20\Microsoft.Office.Interop.Word.dll</HintPath>
  112. <EmbedInteropTypes>True</EmbedInteropTypes>
  113. </Reference>
  114. <Reference Include="Microsoft.Xaml.Behaviors, Version=1.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  115. <HintPath>packages\Microsoft.Xaml.Behaviors.Wpf.1.1.31\lib\net45\Microsoft.Xaml.Behaviors.dll</HintPath>
  116. </Reference>
  117. <Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
  118. <HintPath>packages\Newtonsoft.Json.13.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
  119. </Reference>
  120. <Reference Include="office, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c">
  121. <EmbedInteropTypes>True</EmbedInteropTypes>
  122. </Reference>
  123. <Reference Include="Prism, Version=8.1.97.5141, Culture=neutral, PublicKeyToken=40ee6c3a2184dc59, processorArchitecture=MSIL">
  124. <HintPath>packages\Prism.Core.8.1.97\lib\net461\Prism.dll</HintPath>
  125. </Reference>
  126. <Reference Include="Prism.DryIoc.Wpf, Version=8.1.97.5141, Culture=neutral, PublicKeyToken=40ee6c3a2184dc59, processorArchitecture=MSIL">
  127. <HintPath>packages\Prism.DryIoc.8.1.97\lib\net461\Prism.DryIoc.Wpf.dll</HintPath>
  128. </Reference>
  129. <Reference Include="Prism.Wpf, Version=8.1.97.5141, Culture=neutral, PublicKeyToken=40ee6c3a2184dc59, processorArchitecture=MSIL">
  130. <HintPath>packages\Prism.Wpf.8.1.97\lib\net461\Prism.Wpf.dll</HintPath>
  131. </Reference>
  132. <Reference Include="SQLitePCLRaw.batteries_v2, Version=2.0.2.669, Culture=neutral, PublicKeyToken=8226ea5df37bcae9, processorArchitecture=MSIL">
  133. <HintPath>packages\SQLitePCLRaw.bundle_green.2.0.2\lib\net461\SQLitePCLRaw.batteries_v2.dll</HintPath>
  134. </Reference>
  135. <Reference Include="SQLitePCLRaw.core, Version=2.0.2.669, Culture=neutral, PublicKeyToken=1488e028ca7ab535, processorArchitecture=MSIL">
  136. <HintPath>packages\SQLitePCLRaw.core.2.0.2\lib\netstandard2.0\SQLitePCLRaw.core.dll</HintPath>
  137. </Reference>
  138. <Reference Include="SQLitePCLRaw.nativelibrary, Version=2.0.2.669, Culture=neutral, PublicKeyToken=502ed628492ab262, processorArchitecture=MSIL">
  139. <HintPath>packages\SQLitePCLRaw.bundle_green.2.0.2\lib\net461\SQLitePCLRaw.nativelibrary.dll</HintPath>
  140. </Reference>
  141. <Reference Include="SQLitePCLRaw.provider.dynamic_cdecl, Version=2.0.2.669, Culture=neutral, PublicKeyToken=b68184102cba0b3b, processorArchitecture=MSIL">
  142. <HintPath>packages\SQLitePCLRaw.provider.dynamic_cdecl.2.0.2\lib\netstandard2.0\SQLitePCLRaw.provider.dynamic_cdecl.dll</HintPath>
  143. </Reference>
  144. <Reference Include="System" />
  145. <Reference Include="System.Buffers, Version=4.0.2.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
  146. <HintPath>packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll</HintPath>
  147. </Reference>
  148. <Reference Include="System.Configuration" />
  149. <Reference Include="System.Data" />
  150. <Reference Include="System.Deployment" />
  151. <Reference Include="System.Drawing" />
  152. <Reference Include="System.Management" />
  153. <Reference Include="System.Memory, Version=4.0.1.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
  154. <HintPath>packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll</HintPath>
  155. </Reference>
  156. <Reference Include="System.Numerics" />
  157. <Reference Include="System.Numerics.Vectors, Version=4.1.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  158. <HintPath>packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll</HintPath>
  159. </Reference>
  160. <Reference Include="System.Runtime.CompilerServices.Unsafe, Version=4.0.4.1, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  161. <HintPath>packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll</HintPath>
  162. </Reference>
  163. <Reference Include="System.ValueTuple, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
  164. <HintPath>packages\System.ValueTuple.4.5.0\lib\net461\System.ValueTuple.dll</HintPath>
  165. </Reference>
  166. <Reference Include="System.Windows.Forms" />
  167. <Reference Include="System.Xml" />
  168. <Reference Include="Microsoft.CSharp" />
  169. <Reference Include="System.Core" />
  170. <Reference Include="System.Xml.Linq" />
  171. <Reference Include="System.Data.DataSetExtensions" />
  172. <Reference Include="System.Net.Http" />
  173. <Reference Include="System.Xaml">
  174. <RequiredTargetFramework>4.0</RequiredTargetFramework>
  175. </Reference>
  176. <Reference Include="VirtualizingWrapPanel, Version=1.5.7.0, Culture=neutral, processorArchitecture=MSIL">
  177. <SpecificVersion>False</SpecificVersion>
  178. <HintPath>packages\VirtualizingWrapPanel.1.5.7\lib\net452\VirtualizingWrapPanel.dll</HintPath>
  179. </Reference>
  180. <Reference Include="WindowsBase" />
  181. <Reference Include="PresentationCore" />
  182. <Reference Include="PresentationFramework" />
  183. </ItemGroup>
  184. <ItemGroup>
  185. <ApplicationDefinition Include="App.xaml">
  186. <Generator>MSBuild:Compile</Generator>
  187. <SubType>Designer</SubType>
  188. </ApplicationDefinition>
  189. <Compile Include="CustomControl\AlertsMessage.xaml.cs">
  190. <DependentUpon>AlertsMessage.xaml</DependentUpon>
  191. </Compile>
  192. <Compile Include="CustomControl\ColorDropBox.xaml.cs">
  193. <DependentUpon>ColorDropBox.xaml</DependentUpon>
  194. </Compile>
  195. <Compile Include="CustomControl\ColorDropBoxPop.xaml.cs">
  196. <DependentUpon>ColorDropBoxPop.xaml</DependentUpon>
  197. </Compile>
  198. <Compile Include="CustomControl\CommonWritableComboBox.xaml.cs">
  199. <DependentUpon>CommonWritableComboBox.xaml</DependentUpon>
  200. </Compile>
  201. <Compile Include="CustomControl\CompositeControl\ColorSubContent.xaml.cs">
  202. <DependentUpon>ColorSubContent.xaml</DependentUpon>
  203. </Compile>
  204. <Compile Include="CustomControl\CompositeControl\SlidComboControl.xaml.cs">
  205. <DependentUpon>SlidComboControl.xaml</DependentUpon>
  206. </Compile>
  207. <Compile Include="CustomControl\CustomIconToggleBtn.cs" />
  208. <Compile Include="CustomControl\CustomImageControl.cs" />
  209. <Compile Include="CustomControl\DialogContent.cs" />
  210. <Compile Include="CustomControl\IconAndTextTabItem.cs" />
  211. <Compile Include="CustomControl\ListBoxItemToolBar.cs" />
  212. <Compile Include="CustomControl\MessageBoxEx.cs" />
  213. <Compile Include="CustomControl\NumericUpDown.xaml.cs">
  214. <DependentUpon>NumericUpDown.xaml</DependentUpon>
  215. </Compile>
  216. <Compile Include="CustomControl\PageControl.xaml.cs">
  217. <DependentUpon>PageControl.xaml</DependentUpon>
  218. </Compile>
  219. <Compile Include="CustomControl\PageTurningPreview.xaml.cs">
  220. <DependentUpon>PageTurningPreview.xaml</DependentUpon>
  221. </Compile>
  222. <Compile Include="CustomControl\PathButton.cs" />
  223. <Compile Include="CustomControl\SystemControl\CustomCommandAction .cs" />
  224. <Compile Include="CustomControl\SystemControl\RoutedEventTrigger.cs" />
  225. <Compile Include="CustomControl\TextBoxEx.cs" />
  226. <Compile Include="CustomControl\TextBoxWithClear.xaml.cs">
  227. <DependentUpon>TextBoxWithClear.xaml</DependentUpon>
  228. </Compile>
  229. <Compile Include="CustomControl\ToastControl.xaml.cs">
  230. <DependentUpon>ToastControl.xaml</DependentUpon>
  231. </Compile>
  232. <Compile Include="CustomControl\WritableComboBox.xaml.cs">
  233. <DependentUpon>WritableComboBox.xaml</DependentUpon>
  234. </Compile>
  235. <Compile Include="DataConvert\AnnotateFontSizeConverter.cs" />
  236. <Compile Include="DataConvert\BoolToTextWrapConvert.cs" />
  237. <Compile Include="DataConvert\CreateTimeToDate.cs" />
  238. <Compile Include="DataConvert\FileFormatToIconConvert.cs" />
  239. <Compile Include="DataConvert\GroupHeaderConverter.cs" />
  240. <Compile Include="DataConvert\IntToBooleanConvert.cs" />
  241. <Compile Include="DataConvert\FileToImageSourceConvert.cs" />
  242. <Compile Include="DataConvert\IntAndTagToBoolMultiBinding.cs" />
  243. <Compile Include="DataConvert\InvertBoolConvert.cs" />
  244. <Compile Include="DataConvert\ObjectConvert.cs" />
  245. <Compile Include="DataConvert\PropertyPanelVisible.cs" />
  246. <Compile Include="DataConvert\StringToDateConvert.cs" />
  247. <Compile Include="DataConvert\StringToVisibleConvert.cs" />
  248. <Compile Include="DataConvert\UnVisivleConvert.cs" />
  249. <Compile Include="DataConvert\WidthConvert.cs" />
  250. <Compile Include="EventAggregators\EditToolsEvent.cs" />
  251. <Compile Include="EventAggregators\PageEditNotifyEvent.cs" />
  252. <Compile Include="EventAggregators\PageEditRefreshEvent.cs" />
  253. <Compile Include="Helper\CacheFilePath.cs" />
  254. <Compile Include="Helper\ConverterHelper.cs" />
  255. <Compile Include="Helper\DpiHelpers.cs" />
  256. <Compile Include="Helper\EditToolsHelper.cs" />
  257. <Compile Include="Helper\AdvancedInvokeCommandAction.cs" />
  258. <Compile Include="Helper\ArrowHelper.cs" />
  259. <Compile Include="Helper\DragDropHelper.cs" />
  260. <Compile Include="Helper\HomePageEditHelper.cs" />
  261. <Compile Include="Helper\ObservableDictionary.cs" />
  262. <Compile Include="Helper\PasswordBoxHelper.cs" />
  263. <Compile Include="Helper\RichTextBoxHelper.cs" />
  264. <Compile Include="Helper\SDKLisenceHelper.cs" />
  265. <Compile Include="Helper\PictureConverter.cs" />
  266. <Compile Include="Helper\SetterAction.cs" />
  267. <Compile Include="Helper\SettingHelper.cs" />
  268. <Compile Include="Helper\ToolMethod.cs" />
  269. <Compile Include="Model\BOTA\AnnotationHandlerEventArgs.cs" />
  270. <Compile Include="Model\AnnotPanel\Stamp.cs" />
  271. <Compile Include="Model\BOTA\OutlineNode.cs" />
  272. <Compile Include="Model\CloudDrive\CloudDriveItem.cs" />
  273. <Compile Include="Model\CloudDrive\CloudFiles.cs" />
  274. <Compile Include="Model\DialogNames.cs" />
  275. <Compile Include="CustomControl\SystemControl\InterTabClient.cs" />
  276. <Compile Include="CustomControl\LoadingControl.xaml.cs">
  277. <DependentUpon>LoadingControl.xaml</DependentUpon>
  278. </Compile>
  279. <Compile Include="Model\Dialog\ConverterDialogs\ConverterCSVDialogModel.cs" />
  280. <Compile Include="Model\Dialog\ConverterDialogs\ConverterDialogsModel.cs" />
  281. <Compile Include="Model\Dialog\ConverterDialogs\ConverterExcelDialogModel.cs" />
  282. <Compile Include="Model\Dialog\ConverterDialogs\ConverterHTMLDialogModel.cs" />
  283. <Compile Include="Model\Dialog\ConverterDialogs\ConverterImgDialogModel.cs" />
  284. <Compile Include="Model\Dialog\ConverterDialogs\ConverterPPTDialogModel.cs" />
  285. <Compile Include="Model\Dialog\ConverterDialogs\ConverterRTFDialogModel.cs" />
  286. <Compile Include="Model\Dialog\ConverterDialogs\ConverterTextDialogModel.cs" />
  287. <Compile Include="Model\Dialog\ConverterDialogs\ConverterWordDialogModel.cs" />
  288. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBatchProcessingDialogModel.cs" />
  289. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageCompressDialogModel.cs" />
  290. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterCSVModel.cs" />
  291. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterDialogModel.cs" />
  292. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterExcelModel.cs" />
  293. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterHTMLModel.cs" />
  294. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterImgModel.cs" />
  295. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterPPTModel.cs" />
  296. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterRTFModel.cs" />
  297. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterTextModel.cs" />
  298. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterWordModel.cs" />
  299. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageSetPasswordDialogModel.cs" />
  300. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePagePictureToPDFDialogModel.cs" />
  301. <Compile Include="Model\Dialog\ToolsDialogs\CompressDialogModel\CompressDialogModel.cs" />
  302. <Compile Include="Model\Dialog\ToolsDialogs\SaftyDialogs\CheckPasswordDialogModel.cs" />
  303. <Compile Include="Model\Dialog\ToolsDialogs\SaftyDialogs\DeleteSafetySettintgsModel.cs" />
  304. <Compile Include="Model\Dialog\ToolsDialogs\SaftyDialogs\SetPasswordDialogModel.cs" />
  305. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageExtractDialogModel.cs" />
  306. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageInsertDialogModel.cs" />
  307. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterDialogModel.cs" />
  308. <Compile Include="Model\Dialog\HomePageToolsDialogs\HomePageSplitDialogModel.cs" />
  309. <Compile Include="Model\EditTools\Background\BackgroundCreateModel.cs" />
  310. <Compile Include="Model\EditTools\Background\BackgroundTemplateListModel.cs" />
  311. <Compile Include="Model\EditTools\Watermark\WatermarkCreateModel.cs" />
  312. <Compile Include="Model\EditTools\Watermark\WatermarkTemplateListModel.cs" />
  313. <Compile Include="Model\PageEdit\CustomInsertModel.cs" />
  314. <Compile Include="Model\PageEdit\CustomPageItem.cs" />
  315. <Compile Include="Model\PageEdit\ExtractModel.cs" />
  316. <Compile Include="Model\PageEdit\PageEditHistory.cs" />
  317. <Compile Include="Model\PageEdit\PageEditItem.cs" />
  318. <Compile Include="Model\PageEdit\PageItemUnits.cs" />
  319. <Compile Include="Model\ParameterNames.cs" />
  320. <Compile Include="Model\PDFTool\ToolItem.cs" />
  321. <Compile Include="Model\PropertyPanel\AnnotPanel\FontStyleItem.cs" />
  322. <Compile Include="Model\RegionNames.cs" />
  323. <Compile Include="CustomControl\SystemControl\TabablzRegionBehavior.cs" />
  324. <Compile Include="DataConvert\BoolToVisible.cs" />
  325. <Compile Include="DataConvert\VisibleToBoolConvert.cs" />
  326. <Compile Include="EventAggregators\DragablzWindowEvent.cs" />
  327. <Compile Include="EventAggregators\OpenFileEvent.cs" />
  328. <Compile Include="Helper\CommomEvent.cs" />
  329. <Compile Include="Helper\CommonHelper.cs" />
  330. <Compile Include="Properties\Resources.Designer.cs">
  331. <DependentUpon>Resources.resx</DependentUpon>
  332. <DesignTime>True</DesignTime>
  333. <AutoGen>True</AutoGen>
  334. </Compile>
  335. <Compile Include="ViewModels\EditTools\Bates\BatesContentViewModel.cs" />
  336. <Compile Include="ViewModels\EditTools\Bates\BatesCreateContentViewModel.cs" />
  337. <Compile Include="ViewModels\EditTools\Bates\BatesDocumentContentViewModel.cs" />
  338. <Compile Include="ViewModels\EditTools\Bates\BatesTemplateListContentViewModel.cs" />
  339. <Compile Include="ViewModels\BOTA\AnnotationContentViewModel.cs" />
  340. <Compile Include="ViewModels\BOTA\AnnotationListItemViewModel.cs" />
  341. <Compile Include="ViewModels\BOTA\BookmarkContentViewModel.cs" />
  342. <Compile Include="ViewModels\Dialog\BOTA\AddAnnotationDialogViewModel.cs" />
  343. <Compile Include="ViewModels\BOTA\OutLineControlViewModel.cs" />
  344. <Compile Include="ViewModels\BOTA\SearchContentViewModel.cs" />
  345. <Compile Include="ViewModels\Dialog\BOTA\AddBookmarkDialogViewModel.cs" />
  346. <Compile Include="ViewModels\Dialog\BOTA\BookmarkInfoDialogViewModel.cs" />
  347. <Compile Include="ViewModels\Dialog\BOTA\ScreenAnnotationDialogViewModel.cs" />
  348. <Compile Include="ViewModels\EditTools\Background\BackgroundContentViewModel.cs" />
  349. <Compile Include="ViewModels\BOTA\BOTAContentViewModel.cs" />
  350. <Compile Include="ViewModels\BottomToolContentViewModel.cs" />
  351. <Compile Include="ViewModels\Dialog\ConverterDialogs\ConverterProgressBarDialogViewModel.cs" />
  352. <Compile Include="ViewModels\Dialog\ConverterDialogs\ConverterCSVDialogViewModel.cs" />
  353. <Compile Include="ViewModels\Dialog\ConverterDialogs\ConverterExcelDialogViewModel.cs" />
  354. <Compile Include="ViewModels\Dialog\ConverterDialogs\ConverterHTMLDialogViewModel.cs" />
  355. <Compile Include="ViewModels\Dialog\ConverterDialogs\ConverterImgDialogViewModel.cs" />
  356. <Compile Include="ViewModels\Dialog\ConverterDialogs\ConverterPPTDialogViewModel.cs" />
  357. <Compile Include="ViewModels\Dialog\ConverterDialogs\ConverterRTFDialogViewModel.cs" />
  358. <Compile Include="ViewModels\Dialog\ConverterDialogs\ConverterTextDialogViewModel.cs" />
  359. <Compile Include="ViewModels\Dialog\ConverterDialogs\ConverterWordDialogViewModel.cs" />
  360. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterDialogViewModel.cs" />
  361. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterCSVViewModel.cs" />
  362. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterExcelViewModel.cs" />
  363. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterImgViewModel.cs" />
  364. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterWordViewModel.cs" />
  365. <Compile Include="ViewModels\EditTools\Background\BackgroundCreateBaseContentViewModel.cs" />
  366. <Compile Include="ViewModels\EditTools\Background\BackgroundCreateColorContentViewModel.cs" />
  367. <Compile Include="ViewModels\EditTools\Background\BackgroundCreateFileContentViewModel.cs" />
  368. <Compile Include="ViewModels\EditTools\Background\BackgroundDocumentContentViewModel.cs" />
  369. <Compile Include="ViewModels\EditTools\Background\BackgroundTemplateListBaseContentViewModel.cs" />
  370. <Compile Include="ViewModels\EditTools\Background\BackgroundTemplateListColorContentViewModel.cs" />
  371. <Compile Include="ViewModels\EditTools\Background\BackgroundTemplateListFileContentViewModel.cs" />
  372. <Compile Include="ViewModels\EditTools\HeaderFooter\HeaderFooterContentViewModel.cs" />
  373. <Compile Include="ViewModels\EditTools\HeaderFooter\HeaderFooterCreateContentViewModel.cs" />
  374. <Compile Include="ViewModels\EditTools\HeaderFooter\HeaderFooterDocumentContentViewModel.cs" />
  375. <Compile Include="ViewModels\EditTools\HeaderFooter\HeaderFooterTemplateListContentViewModel.cs" />
  376. <Compile Include="ViewModels\EditTools\Redaction\RedactionContentViewModel.cs" />
  377. <Compile Include="ViewModels\EditTools\Redaction\RedactionDocumentContentViewModel.cs" />
  378. <Compile Include="ViewModels\Form\FormsToolContentViewModel.cs" />
  379. <Compile Include="ViewModels\HomePanel\PDFTools\PDFToolsContentViewModel.cs" />
  380. <Compile Include="ViewModels\HomePanel\PDFTools\QuickToolsContentViewModel.cs" />
  381. <Compile Include="ViewModels\PropertyPanel\ViewModular\ReadViewContentViewModel.cs" />
  382. <Compile Include="ViewModels\HomePanel\RecentFiles\RecentFilesContentViewModel.cs" />
  383. <Compile Include="ViewModels\PropertyPanel\AnnotPanel\CustomCreateDialogViewModel.cs" />
  384. <Compile Include="ViewModels\PropertyPanel\AnnotPanel\DynamicPropertyDialogViewModel.cs" />
  385. <Compile Include="ViewModels\PropertyPanel\TextEditPropertyViewModel.cs" />
  386. <Compile Include="ViewModels\Tools\ConverterBarContentViewModel.cs" />
  387. <Compile Include="ViewModels\Dialog\ExtractDialogViewModel.cs" />
  388. <Compile Include="ViewModels\Dialog\FullScreenWindowViewModel.cs" />
  389. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBatchProcessingDialogViewModel.cs" />
  390. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageCompressDialogViewModel.cs" />
  391. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageSetPasswordDialogViewModel.cs" />
  392. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterModBookletContentViewModel.cs" />
  393. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterModMultipleContentViewModel.cs" />
  394. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterModPosterContentViewModel.cs" />
  395. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterModSizeContentViewModel.cs" />
  396. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterPageSetDialogViewModel.cs" />
  397. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePagePrinter\ModInfoSendEvent.cs" />
  398. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageSplitDialogViewModel.cs" />
  399. <Compile Include="ViewModels\Dialog\PageEditDialogs\ExtractDialogViewModel.cs" />
  400. <Compile Include="ViewModels\Dialog\PageEditDialogs\InsertDialogViewModel.cs" />
  401. <Compile Include="ViewModels\Dialog\PageEditDialogs\SplitDialogViewModel.cs" />
  402. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterDialogViewModel.cs" />
  403. <Compile Include="ViewModels\Dialog\ToolsDialogs\CompressDialogs\CompressDialogViewModel.cs" />
  404. <Compile Include="ViewModels\Dialog\ToolsDialogs\CompressDialogs\CompressProgressBarDialogViewModel.cs" />
  405. <Compile Include="ViewModels\Dialog\ToolsDialogs\SaftyDialogs\DeleteSafetySettingsDialogViewModel.cs" />
  406. <Compile Include="ViewModels\Dialog\ToolsDialogs\SaftyDialogs\CheckPasswordDialogViewModel.cs" />
  407. <Compile Include="ViewModels\Dialog\ToolsDialogs\SaftyDialogs\SetPasswordDialogViewModel.cs" />
  408. <Compile Include="ViewModels\Dialog\VerifyPassWordDialogViewModel.cs" />
  409. <Compile Include="ViewModels\FillAndSign\FillAndSignContentViewModel.cs" />
  410. <Compile Include="ViewModels\FillAndSign\PropertyPanel\DateFillPropertyViewModel.cs" />
  411. <Compile Include="ViewModels\FillAndSign\PropertyPanel\ShapFillPropertyViewModel.cs" />
  412. <Compile Include="ViewModels\FillAndSign\PropertyPanel\TextFillPropertyViewModel.cs" />
  413. <Compile Include="ViewModels\HomePanel\CloudDrive\CloudDriveContentViewModel.cs" />
  414. <Compile Include="ViewModels\HomePanel\CloudDrive\CloudDriveManager.cs" />
  415. <Compile Include="ViewModels\HomePanel\CloudDrive\CloudFilesContentViewModel.cs" />
  416. <Compile Include="ViewModels\HomePanel\CloudDrive\CloudDriveType\DropbBoxManager.cs" />
  417. <Compile Include="ViewModels\HomePanel\CloudDrive\CloudDriveType\DropbBoxUserItem.cs" />
  418. <Compile Include="ViewModels\HomePanel\CloudDrive\CloudDriveType\GoogleDriveManager.cs" />
  419. <Compile Include="ViewModels\HomePanel\CloudDrive\CloudDriveType\GoogleDriveUserItem.cs" />
  420. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePagePictureToPDFDialogViewModel.cs" />
  421. <Compile Include="ViewModels\HomePanel\HomeCloudContentViewModel.cs" />
  422. <Compile Include="ViewModels\HomePanel\HomeGuidContentViewModel.cs" />
  423. <Compile Include="ViewModels\HomePanel\HomeToolsContentViewModel.cs" />
  424. <Compile Include="ViewModels\MainContentViewModel.cs" />
  425. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageExtractDialogViewModel.cs" />
  426. <Compile Include="ViewModels\Dialog\HomePageToolsDialogs\HomePageInsertDialogViewModel.cs" />
  427. <Compile Include="ViewModels\PageEdit\PageEditContentViewModel.cs" />
  428. <Compile Include="ViewModels\PropertyPanel\AnnotPanel\FreehandAnnotPropertyViewModel.cs" />
  429. <Compile Include="ViewModels\PropertyPanel\AnnotPanel\FreetextAnnotPropertyViewModel.cs" />
  430. <Compile Include="ViewModels\PropertyPanel\AnnotPanel\ImageAnnotPropertyViewModel.cs" />
  431. <Compile Include="ViewModels\PropertyPanel\AnnotPanel\LinkAnnotPropertyViewModel.cs" />
  432. <Compile Include="ViewModels\PropertyPanel\AnnotPanel\SharpsAnnotPropertyViewModel.cs" />
  433. <Compile Include="ViewModels\PropertyPanel\AnnotPanel\StampAnnotPropertyViewModel.cs" />
  434. <Compile Include="ViewModels\PropertyPanel\AnnotPanel\TextAnnotPropertyViewModel.cs" />
  435. <Compile Include="ViewModels\PropertyPanel\PropertyPanelContentViewModel.cs" />
  436. <Compile Include="ViewModels\PropertyPanel\ViewModular\ReadModeContentViewModel.cs" />
  437. <Compile Include="ViewModels\PropertyPanel\ViewModular\SplitScreenContentViewModel.cs" />
  438. <Compile Include="ViewModels\PropertyPanel\ViewModular\ThemesContentViewModel.cs" />
  439. <Compile Include="ViewModels\PropertyPanel\ViewModular\ViewModularContentViewModel.cs" />
  440. <Compile Include="ViewModels\Tools\AnnotToolContentViewModel.cs" />
  441. <Compile Include="ViewModels\Tools\AnnotToolContentViewModel.Function.cs" />
  442. <Compile Include="ViewModels\Tools\AnnotToolContentViewModel.Properties.cs" />
  443. <Compile Include="ViewModels\Tools\TextEditToolContentViewModel.cs" />
  444. <Compile Include="ViewModels\Tools\ToolsBarContentViewModel.cs" />
  445. <Compile Include="ViewModels\EditTools\Watermark\WatermarkContentViewModel.cs" />
  446. <Compile Include="ViewModels\EditTools\Watermark\WatermarkCreateBaseContentViewModel.cs" />
  447. <Compile Include="ViewModels\EditTools\Watermark\WatermarkCreateFileContentViewModel.cs" />
  448. <Compile Include="ViewModels\EditTools\Watermark\WatermarkCreateTextContentViewModel.cs" />
  449. <Compile Include="ViewModels\EditTools\Watermark\WatermarkTemplateListBaseContentViewModel.cs" />
  450. <Compile Include="ViewModels\EditTools\Watermark\WatermarkTemplateListFileContentViewModel.cs" />
  451. <Compile Include="ViewModels\EditTools\Watermark\WatermarkTemplateListTextContentViewModel.cs" />
  452. <Compile Include="Views\BOTA\AnnotationContent.xaml.cs">
  453. <DependentUpon>AnnotationContent.xaml</DependentUpon>
  454. </Compile>
  455. <Compile Include="Views\BOTA\AnnotationListItem.xaml.cs">
  456. <DependentUpon>AnnotationListItem.xaml</DependentUpon>
  457. </Compile>
  458. <Compile Include="Views\BOTA\BookmarkContent.xaml.cs">
  459. <DependentUpon>BookmarkContent.xaml</DependentUpon>
  460. </Compile>
  461. <Compile Include="ViewModels\EditTools\Watermark\WatermarkDocumentContentViewModel.cs" />
  462. <Compile Include="Views\BOTA\BOTAContent.xaml.cs">
  463. <DependentUpon>BOTAContent.xaml</DependentUpon>
  464. </Compile>
  465. <Compile Include="Views\BOTA\OutLineControl.xaml.cs">
  466. <DependentUpon>OutLineControl.xaml</DependentUpon>
  467. </Compile>
  468. <Compile Include="Views\BOTA\SearchContent.xaml.cs">
  469. <DependentUpon>SearchContent.xaml</DependentUpon>
  470. </Compile>
  471. <Compile Include="Views\BottomToolContent.xaml.cs">
  472. <DependentUpon>BottomToolContent.xaml</DependentUpon>
  473. </Compile>
  474. <Compile Include="Views\Dialog\BOTA\AddAnnotationDialog.xaml.cs">
  475. <DependentUpon>AddAnnotationDialog.xaml</DependentUpon>
  476. </Compile>
  477. <Compile Include="Views\Dialog\BOTA\ScreenAnnotationDialog.xaml.cs">
  478. <DependentUpon>ScreenAnnotationDialog.xaml</DependentUpon>
  479. </Compile>
  480. <Compile Include="Views\Dialog\ConverterDialogs\ConverterCSVDialog.xaml.cs">
  481. <DependentUpon>ConverterCSVDialog.xaml</DependentUpon>
  482. </Compile>
  483. <Compile Include="Views\Dialog\ConverterDialogs\ConverterExcelDialog.xaml.cs">
  484. <DependentUpon>ConverterExcelDialog.xaml</DependentUpon>
  485. </Compile>
  486. <Compile Include="Views\Dialog\ConverterDialogs\ConverterHTMLDialog.xaml.cs">
  487. <DependentUpon>ConverterHTMLDialog.xaml</DependentUpon>
  488. </Compile>
  489. <Compile Include="Views\Dialog\ConverterDialogs\ConverterImgDialog.xaml.cs">
  490. <DependentUpon>ConverterImgDialog.xaml</DependentUpon>
  491. </Compile>
  492. <Compile Include="Views\Dialog\ConverterDialogs\ConverterPPTDialog.xaml.cs">
  493. <DependentUpon>ConverterPPTDialog.xaml</DependentUpon>
  494. </Compile>
  495. <Compile Include="Views\Dialog\ConverterDialogs\ConverterProgressBarDialog.xaml.cs">
  496. <DependentUpon>ConverterProgressBarDialog.xaml</DependentUpon>
  497. </Compile>
  498. <Compile Include="Views\Dialog\ConverterDialogs\ConverterRTFDialog.xaml.cs">
  499. <DependentUpon>ConverterRTFDialog.xaml</DependentUpon>
  500. </Compile>
  501. <Compile Include="Views\Dialog\ConverterDialogs\ConverterTextDialog.xaml.cs">
  502. <DependentUpon>ConverterTextDialog.xaml</DependentUpon>
  503. </Compile>
  504. <Compile Include="Views\Dialog\ConverterDialogs\ConverterWordDialog.xaml.cs">
  505. <DependentUpon>ConverterWordDialog.xaml</DependentUpon>
  506. </Compile>
  507. <Compile Include="Views\Dialog\BOTA\AddBookmarkDialog.xaml.cs">
  508. <DependentUpon>AddBookmarkDialog.xaml</DependentUpon>
  509. </Compile>
  510. <Compile Include="Views\Dialog\BOTA\BookmarkInfoDialog.xaml.cs">
  511. <DependentUpon>BookmarkInfoDialog.xaml</DependentUpon>
  512. </Compile>
  513. <Compile Include="Views\Dialog\FullScreenWindow.xaml.cs">
  514. <DependentUpon>FullScreenWindow.xaml</DependentUpon>
  515. </Compile>
  516. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBatchProcessingDialog.xaml.cs">
  517. <DependentUpon>HomePageBatchProcessingDialog.xaml</DependentUpon>
  518. </Compile>
  519. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageCompressDialog.xaml.cs">
  520. <DependentUpon>HomePageCompressDialog.xaml</DependentUpon>
  521. </Compile>
  522. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterCSV.xaml.cs">
  523. <DependentUpon>HomePageConverterCSV.xaml</DependentUpon>
  524. </Compile>
  525. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterDialog.xaml.cs">
  526. <DependentUpon>HomePageConverterDialog.xaml</DependentUpon>
  527. </Compile>
  528. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterExcel.xaml.cs">
  529. <DependentUpon>HomePageConverterExcel.xaml</DependentUpon>
  530. </Compile>
  531. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterImg.xaml.cs">
  532. <DependentUpon>HomePageConverterImg.xaml</DependentUpon>
  533. </Compile>
  534. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterWord.xaml.cs">
  535. <DependentUpon>HomePageConverterWord.xaml</DependentUpon>
  536. </Compile>
  537. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageSetPasswordDialog.xaml.cs">
  538. <DependentUpon>HomePageSetPasswordDialog.xaml</DependentUpon>
  539. </Compile>
  540. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageExtractDialog.xaml.cs">
  541. <DependentUpon>HomePageExtractDialog.xaml</DependentUpon>
  542. </Compile>
  543. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageInsertDialog.xaml.cs">
  544. <DependentUpon>HomePageInsertDialog.xaml</DependentUpon>
  545. </Compile>
  546. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePagePictureToPDFDialog.xaml.cs">
  547. <DependentUpon>HomePagePictureToPDFDialog.xaml</DependentUpon>
  548. </Compile>
  549. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterModBookletContent.xaml.cs">
  550. <DependentUpon>HomePagePrinterModBookletContent.xaml</DependentUpon>
  551. </Compile>
  552. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterModMultipleContent.xaml.cs">
  553. <DependentUpon>HomePagePrinterModMultipleContent.xaml</DependentUpon>
  554. </Compile>
  555. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterModPosterContent.xaml.cs">
  556. <DependentUpon>HomePagePrinterModPosterContent.xaml</DependentUpon>
  557. </Compile>
  558. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterModSizeContent.xaml.cs">
  559. <DependentUpon>HomePagePrinterModSizeContent.xaml</DependentUpon>
  560. </Compile>
  561. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterPageSetDialog.xaml.cs">
  562. <DependentUpon>HomePagePrinterPageSetDialog.xaml</DependentUpon>
  563. </Compile>
  564. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePageSplitDialog.xaml.cs">
  565. <DependentUpon>HomePageSplitDialog.xaml</DependentUpon>
  566. </Compile>
  567. <Compile Include="Views\Dialog\PageEditDialogs\ExtractDialog.xaml.cs">
  568. <DependentUpon>ExtractDialog.xaml</DependentUpon>
  569. </Compile>
  570. <Compile Include="Views\Dialog\PageEditDialogs\InsertDialog.xaml.cs">
  571. <DependentUpon>InsertDialog.xaml</DependentUpon>
  572. </Compile>
  573. <Compile Include="Views\Dialog\PageEditDialogs\SplitDialog.xaml.cs">
  574. <DependentUpon>SplitDialog.xaml</DependentUpon>
  575. </Compile>
  576. <Compile Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterDialog.xaml.cs">
  577. <DependentUpon>HomePagePrinterDialog.xaml</DependentUpon>
  578. </Compile>
  579. <Compile Include="Views\Dialog\ToolsDialogs\CompressDialogs\CompressDialog.xaml.cs">
  580. <DependentUpon>CompressDialog.xaml</DependentUpon>
  581. </Compile>
  582. <Compile Include="Views\Dialog\ToolsDialogs\CompressDialogs\CompressProgressBarDialog.xaml.cs">
  583. <DependentUpon>CompressProgressBarDialog.xaml</DependentUpon>
  584. </Compile>
  585. <Compile Include="Views\Dialog\ToolsDialogs\SaftyDialogs\CheckPasswordDialog.xaml.cs">
  586. <DependentUpon>CheckPasswordDialog.xaml</DependentUpon>
  587. </Compile>
  588. <Compile Include="Views\Dialog\ToolsDialogs\SaftyDialogs\DeleteSafetySettingsDialog.xaml.cs">
  589. <DependentUpon>DeleteSafetySettingsDialog.xaml</DependentUpon>
  590. </Compile>
  591. <Compile Include="Views\Dialog\ToolsDialogs\SaftyDialogs\SetPasswordDialog.xaml.cs">
  592. <DependentUpon>SetPasswordDialog.xaml</DependentUpon>
  593. </Compile>
  594. <Compile Include="Views\Dialog\VerifyPassWordDialog.xaml.cs">
  595. <DependentUpon>VerifyPassWordDialog.xaml</DependentUpon>
  596. </Compile>
  597. <Compile Include="Views\EditTools\Redaction\RedactionContent.xaml.cs">
  598. <DependentUpon>RedactionContent.xaml</DependentUpon>
  599. </Compile>
  600. <Compile Include="Views\EditTools\Redaction\RedactionDocumentContent.xaml.cs">
  601. <DependentUpon>RedactionDocumentContent.xaml</DependentUpon>
  602. </Compile>
  603. <Compile Include="Views\EditTools\Bates\BatesContent.xaml.cs">
  604. <DependentUpon>BatesContent.xaml</DependentUpon>
  605. </Compile>
  606. <Compile Include="Views\EditTools\Bates\BatesCreateContent.xaml.cs">
  607. <DependentUpon>BatesCreateContent.xaml</DependentUpon>
  608. </Compile>
  609. <Compile Include="Views\EditTools\Bates\BatesDocumentContent.xaml.cs">
  610. <DependentUpon>BatesDocumentContent.xaml</DependentUpon>
  611. </Compile>
  612. <Compile Include="Views\EditTools\Bates\BatesTemplateListContent.xaml.cs">
  613. <DependentUpon>BatesTemplateListContent.xaml</DependentUpon>
  614. </Compile>
  615. <Compile Include="Views\EditTools\HeaderFooter\HeaderFooterContent.xaml.cs">
  616. <DependentUpon>HeaderFooterContent.xaml</DependentUpon>
  617. </Compile>
  618. <Compile Include="Views\EditTools\HeaderFooter\HeaderFooterCreateContent.xaml.cs">
  619. <DependentUpon>HeaderFooterCreateContent.xaml</DependentUpon>
  620. </Compile>
  621. <Compile Include="Views\EditTools\HeaderFooter\HeaderFooterDocumentContent.xaml.cs">
  622. <DependentUpon>HeaderFooterDocumentContent.xaml</DependentUpon>
  623. </Compile>
  624. <Compile Include="Views\EditTools\HeaderFooter\HeaderFooterTemplateListContent.xaml.cs">
  625. <DependentUpon>HeaderFooterTemplateListContent.xaml</DependentUpon>
  626. </Compile>
  627. <Compile Include="Views\FillAndSign\FillAndSignContent.xaml.cs">
  628. <DependentUpon>FillAndSignContent.xaml</DependentUpon>
  629. </Compile>
  630. <Compile Include="Views\FillAndSign\PropertyPanel\DateFillProperty.xaml.cs">
  631. <DependentUpon>DateFillProperty.xaml</DependentUpon>
  632. </Compile>
  633. <Compile Include="Views\FillAndSign\PropertyPanel\ShapFillProperty.xaml.cs">
  634. <DependentUpon>ShapFillProperty.xaml</DependentUpon>
  635. </Compile>
  636. <Compile Include="Views\FillAndSign\PropertyPanel\TextFillProperty.xaml.cs">
  637. <DependentUpon>TextFillProperty.xaml</DependentUpon>
  638. </Compile>
  639. <Compile Include="Views\Form\ButtonProperty.xaml.cs">
  640. <DependentUpon>ButtonProperty.xaml</DependentUpon>
  641. </Compile>
  642. <Compile Include="Views\Form\CheckBoxProperty.xaml.cs">
  643. <DependentUpon>CheckBoxProperty.xaml</DependentUpon>
  644. </Compile>
  645. <Compile Include="Views\Form\ComboxProperty.xaml.cs">
  646. <DependentUpon>ComboxProperty.xaml</DependentUpon>
  647. </Compile>
  648. <Compile Include="Views\Form\FormsToolContent.xaml.cs">
  649. <DependentUpon>FormsToolContent.xaml</DependentUpon>
  650. <SubType>Code</SubType>
  651. </Compile>
  652. <Compile Include="Views\Form\ListBoxProperty.xaml.cs">
  653. <DependentUpon>ListBoxProperty.xaml</DependentUpon>
  654. </Compile>
  655. <Compile Include="Views\Form\RadioButtonProperty.xaml.cs">
  656. <DependentUpon>RadioButtonProperty.xaml</DependentUpon>
  657. </Compile>
  658. <Compile Include="Views\Form\SignProperty.xaml.cs">
  659. <DependentUpon>SignProperty.xaml</DependentUpon>
  660. </Compile>
  661. <Compile Include="Views\Form\TextFieldProperty.xaml.cs">
  662. <DependentUpon>TextFieldProperty.xaml</DependentUpon>
  663. </Compile>
  664. <Compile Include="Views\HomePanel\CloudDrive\CloudDriveContent.xaml.cs">
  665. <DependentUpon>CloudDriveContent.xaml</DependentUpon>
  666. </Compile>
  667. <Compile Include="Views\EditTools\Background\BackgroundContent.xaml.cs">
  668. <DependentUpon>BackgroundContent.xaml</DependentUpon>
  669. </Compile>
  670. <Compile Include="Views\EditTools\Background\BackgroundDocumentContent.xaml.cs">
  671. <DependentUpon>BackgroundDocumentContent.xaml</DependentUpon>
  672. </Compile>
  673. <Compile Include="Views\EditTools\Watermark\WatermarkContent.xaml.cs">
  674. <DependentUpon>WatermarkContent.xaml</DependentUpon>
  675. </Compile>
  676. <Compile Include="Views\EditTools\Watermark\WatermarkCreateBaseContent.xaml.cs">
  677. <DependentUpon>WatermarkCreateBaseContent.xaml</DependentUpon>
  678. </Compile>
  679. <Compile Include="Views\EditTools\Watermark\WatermarkCreateFileContent.xaml.cs">
  680. <DependentUpon>WatermarkCreateFileContent.xaml</DependentUpon>
  681. </Compile>
  682. <Compile Include="Views\EditTools\Watermark\WatermarkCreateTextContent.xaml.cs">
  683. <DependentUpon>WatermarkCreateTextContent.xaml</DependentUpon>
  684. </Compile>
  685. <Compile Include="Views\EditTools\Watermark\WatermarkDocumentContent.xaml.cs">
  686. <DependentUpon>WatermarkDocumentContent.xaml</DependentUpon>
  687. </Compile>
  688. <Compile Include="Views\EditTools\Watermark\WatermarkTemplateListBaseContent.xaml.cs">
  689. <DependentUpon>WatermarkTemplateListBaseContent.xaml</DependentUpon>
  690. </Compile>
  691. <Compile Include="Views\EditTools\Watermark\WatermarkTemplateListFileContent.xaml.cs">
  692. <DependentUpon>WatermarkTemplateListFileContent.xaml</DependentUpon>
  693. </Compile>
  694. <Compile Include="Views\EditTools\Watermark\WatermarkTemplateListTextContent.xaml.cs">
  695. <DependentUpon>WatermarkTemplateListTextContent.xaml</DependentUpon>
  696. </Compile>
  697. <Compile Include="Views\EditTools\Background\BackgroundCreateBaseContent.xaml.cs">
  698. <DependentUpon>BackgroundCreateBaseContent.xaml</DependentUpon>
  699. </Compile>
  700. <Compile Include="Views\EditTools\Background\BackgroundCreateColorContent.xaml.cs">
  701. <DependentUpon>BackgroundCreateColorContent.xaml</DependentUpon>
  702. </Compile>
  703. <Compile Include="Views\EditTools\Background\BackgroundCreateFileContent.xaml.cs">
  704. <DependentUpon>BackgroundCreateFileContent.xaml</DependentUpon>
  705. </Compile>
  706. <Compile Include="Views\EditTools\Background\BackgroundTemplateListBaseContent.xaml.cs">
  707. <DependentUpon>BackgroundTemplateListBaseContent.xaml</DependentUpon>
  708. </Compile>
  709. <Compile Include="Views\EditTools\Background\BackgroundTemplateListColorContent.xaml.cs">
  710. <DependentUpon>BackgroundTemplateListColorContent.xaml</DependentUpon>
  711. </Compile>
  712. <Compile Include="Views\EditTools\Background\BackgroundTemplateListFileContent.xaml.cs">
  713. <DependentUpon>BackgroundTemplateListFileContent.xaml</DependentUpon>
  714. </Compile>
  715. <Compile Include="Views\HomePanel\CloudDrive\CloudFilesContent.xaml.cs">
  716. <DependentUpon>CloudFilesContent.xaml</DependentUpon>
  717. </Compile>
  718. <Compile Include="Views\HomePanel\HomeCloudContent.xaml.cs">
  719. <DependentUpon>HomeCloudContent.xaml</DependentUpon>
  720. </Compile>
  721. <Compile Include="Views\HomePanel\HomeGuidContent.xaml.cs">
  722. <DependentUpon>HomeGuidContent.xaml</DependentUpon>
  723. </Compile>
  724. <Compile Include="Views\HomePanel\PDFTools\PDFToolExpendItem.xaml.cs">
  725. <DependentUpon>PDFToolExpendItem.xaml</DependentUpon>
  726. </Compile>
  727. <Compile Include="Views\HomePanel\PDFTools\PDFToolItem.xaml.cs">
  728. <DependentUpon>PDFToolItem.xaml</DependentUpon>
  729. </Compile>
  730. <Compile Include="Views\HomePanel\HomeToolsContent.xaml.cs">
  731. <DependentUpon>HomeToolsContent.xaml</DependentUpon>
  732. </Compile>
  733. <Compile Include="Helper\PDFToolsHelper.cs" />
  734. <Compile Include="Views\HomePanel\PDFTools\PDFToolsContent.xaml.cs">
  735. <DependentUpon>PDFToolsContent.xaml</DependentUpon>
  736. </Compile>
  737. <Compile Include="Views\HomePanel\PDFTools\QuickToolsContent.xaml.cs">
  738. <DependentUpon>QuickToolsContent.xaml</DependentUpon>
  739. </Compile>
  740. <Compile Include="Views\HomePanel\PromotionContent.xaml.cs">
  741. <DependentUpon>PromotionContent.xaml</DependentUpon>
  742. </Compile>
  743. <Compile Include="Views\HomePanel\RecentFiles\DocItemControl.xaml.cs">
  744. <DependentUpon>DocItemControl.xaml</DependentUpon>
  745. </Compile>
  746. <Compile Include="Views\HomePanel\RecentFiles\DocItemListViewControl.xaml.cs">
  747. <DependentUpon>DocItemListViewControl.xaml</DependentUpon>
  748. </Compile>
  749. <Compile Include="Views\HomePanel\RecentFiles\RecentFilesContent.xaml.cs">
  750. <DependentUpon>RecentFilesContent.xaml</DependentUpon>
  751. </Compile>
  752. <Compile Include="Views\MainContent.xaml.cs">
  753. <DependentUpon>MainContent.xaml</DependentUpon>
  754. </Compile>
  755. <Compile Include="Views\PageEdit\PageEditContent.xaml.cs">
  756. <DependentUpon>PageEditContent.xaml</DependentUpon>
  757. </Compile>
  758. <Compile Include="CustomControl\CompositeControl\ColorContent.xaml.cs">
  759. <DependentUpon>ColorContent.xaml</DependentUpon>
  760. </Compile>
  761. <Compile Include="CustomControl\CompositeControl\SlidContentPop.xaml.cs">
  762. <DependentUpon>SlidContentPop.xaml</DependentUpon>
  763. </Compile>
  764. <Compile Include="Views\PropertyPanel\AnnotPanel\CustomCreateDialog.xaml.cs">
  765. <DependentUpon>CustomCreateDialog.xaml</DependentUpon>
  766. </Compile>
  767. <Compile Include="Views\PropertyPanel\AnnotPanel\DynamicPropertyDialog.xaml.cs">
  768. <DependentUpon>DynamicPropertyDialog.xaml</DependentUpon>
  769. </Compile>
  770. <Compile Include="Views\PropertyPanel\AnnotPanel\FreehandAnnotProperty.xaml.cs">
  771. <DependentUpon>FreehandAnnotProperty.xaml</DependentUpon>
  772. </Compile>
  773. <Compile Include="Views\PropertyPanel\AnnotPanel\FreetextAnnotProperty.xaml.cs">
  774. <DependentUpon>FreetextAnnotProperty.xaml</DependentUpon>
  775. </Compile>
  776. <Compile Include="Views\PropertyPanel\AnnotPanel\ImageAnnotProperty.xaml.cs">
  777. <DependentUpon>ImageAnnotProperty.xaml</DependentUpon>
  778. </Compile>
  779. <Compile Include="Views\PropertyPanel\AnnotPanel\LinkAnnotProperty.xaml.cs">
  780. <DependentUpon>LinkAnnotProperty.xaml</DependentUpon>
  781. </Compile>
  782. <Compile Include="Views\PropertyPanel\AnnotPanel\SharpsAnnotProperty.xaml.cs">
  783. <DependentUpon>SharpsAnnotProperty.xaml</DependentUpon>
  784. </Compile>
  785. <Compile Include="Views\PropertyPanel\AnnotPanel\StampAnnotProperty.xaml.cs">
  786. <DependentUpon>StampAnnotProperty.xaml</DependentUpon>
  787. </Compile>
  788. <Compile Include="Views\PropertyPanel\AnnotPanel\TextAnnotProperty.xaml.cs">
  789. <DependentUpon>TextAnnotProperty.xaml</DependentUpon>
  790. </Compile>
  791. <Compile Include="CustomControl\CompositeControl\SlidContent.xaml.cs">
  792. <DependentUpon>SlidContent.xaml</DependentUpon>
  793. </Compile>
  794. <Compile Include="Views\PropertyPanel\PropertyPanelContent.xaml.cs">
  795. <DependentUpon>PropertyPanelContent.xaml</DependentUpon>
  796. </Compile>
  797. <Compile Include="Views\PropertyPanel\TextEditProperty.xaml.cs">
  798. <DependentUpon>TextEditProperty.xaml</DependentUpon>
  799. </Compile>
  800. <Compile Include="Views\PropertyPanel\ViewModular\ReadModeContent.xaml.cs">
  801. <DependentUpon>ReadModeContent.xaml</DependentUpon>
  802. </Compile>
  803. <Compile Include="Views\PropertyPanel\ViewModular\ReadViewContent.xaml.cs">
  804. <DependentUpon>ReadViewContent.xaml</DependentUpon>
  805. </Compile>
  806. <Compile Include="Views\PropertyPanel\ViewModular\SplitScreenContent.xaml.cs">
  807. <DependentUpon>SplitScreenContent.xaml</DependentUpon>
  808. </Compile>
  809. <Compile Include="Views\PropertyPanel\ViewModular\ThemesContent.xaml.cs">
  810. <DependentUpon>ThemesContent.xaml</DependentUpon>
  811. </Compile>
  812. <Compile Include="Views\PropertyPanel\ViewModular\ViewModularContent.xaml.cs">
  813. <DependentUpon>ViewModularContent.xaml</DependentUpon>
  814. </Compile>
  815. <Compile Include="Views\Tools\AnnotToolContent.xaml.cs">
  816. <DependentUpon>AnnotToolContent.xaml</DependentUpon>
  817. </Compile>
  818. <Compile Include="Views\Tools\ConverterBarContent.xaml.cs">
  819. <DependentUpon>ConverterBarContent.xaml</DependentUpon>
  820. </Compile>
  821. <Compile Include="Views\Tools\TextEditToolContent.xaml.cs">
  822. <DependentUpon>TextEditToolContent.xaml</DependentUpon>
  823. </Compile>
  824. <Compile Include="Views\Tools\ToolsBarContent.xaml.cs">
  825. <DependentUpon>ToolsBarContent.xaml</DependentUpon>
  826. </Compile>
  827. <Compile Include="Views\ViewContent.xaml.cs">
  828. <DependentUpon>ViewContent.xaml</DependentUpon>
  829. </Compile>
  830. <Page Include="CustomControl\AlertsMessage.xaml">
  831. <Generator>MSBuild:Compile</Generator>
  832. <SubType>Designer</SubType>
  833. </Page>
  834. <Page Include="CustomControl\ColorDropBox.xaml">
  835. <Generator>MSBuild:Compile</Generator>
  836. <SubType>Designer</SubType>
  837. </Page>
  838. <Page Include="CustomControl\ColorDropBoxPop.xaml">
  839. <Generator>MSBuild:Compile</Generator>
  840. <SubType>Designer</SubType>
  841. </Page>
  842. <Page Include="CustomControl\CommonWritableComboBox.xaml">
  843. <Generator>MSBuild:Compile</Generator>
  844. <SubType>Designer</SubType>
  845. </Page>
  846. <Page Include="CustomControl\CompositeControl\ColorSubContent.xaml">
  847. <Generator>MSBuild:Compile</Generator>
  848. <SubType>Designer</SubType>
  849. </Page>
  850. <Page Include="CustomControl\CompositeControl\SlidComboControl.xaml">
  851. <Generator>MSBuild:Compile</Generator>
  852. <SubType>Designer</SubType>
  853. </Page>
  854. <Page Include="CustomControl\LoadingControl.xaml">
  855. <SubType>Designer</SubType>
  856. <Generator>MSBuild:Compile</Generator>
  857. </Page>
  858. <Page Include="CustomControl\NumericUpDown.xaml">
  859. <SubType>Designer</SubType>
  860. <Generator>MSBuild:Compile</Generator>
  861. </Page>
  862. <Page Include="CustomControl\PageControl.xaml">
  863. <SubType>Designer</SubType>
  864. <Generator>MSBuild:Compile</Generator>
  865. </Page>
  866. <Page Include="CustomControl\PageTurningPreview.xaml">
  867. <SubType>Designer</SubType>
  868. <Generator>MSBuild:Compile</Generator>
  869. </Page>
  870. <Page Include="CustomControl\TextBoxWithClear.xaml">
  871. <SubType>Designer</SubType>
  872. <Generator>MSBuild:Compile</Generator>
  873. </Page>
  874. <Page Include="CustomControl\ToastControl.xaml">
  875. <Generator>MSBuild:Compile</Generator>
  876. <SubType>Designer</SubType>
  877. </Page>
  878. <Page Include="CustomControl\WritableComboBox.xaml">
  879. <SubType>Designer</SubType>
  880. <Generator>MSBuild:Compile</Generator>
  881. </Page>
  882. <Page Include="Styles\ButtonStyle.xaml">
  883. <SubType>Designer</SubType>
  884. <Generator>MSBuild:Compile</Generator>
  885. </Page>
  886. <Page Include="Styles\CheckBoxStyle.xaml">
  887. <SubType>Designer</SubType>
  888. <Generator>MSBuild:Compile</Generator>
  889. </Page>
  890. <Page Include="Styles\ComboxStyle.xaml">
  891. <SubType>Designer</SubType>
  892. <Generator>MSBuild:Compile</Generator>
  893. </Page>
  894. <Page Include="Styles\ContainerStyles\ComboxStyle\ComboxItemStyle.xaml">
  895. <SubType>Designer</SubType>
  896. <Generator>MSBuild:Compile</Generator>
  897. </Page>
  898. <Page Include="Styles\ContextMenuStyle.xaml">
  899. <Generator>MSBuild:Compile</Generator>
  900. <SubType>Designer</SubType>
  901. </Page>
  902. <Page Include="Styles\ContextMenuTextEditStyle.xaml">
  903. <SubType>Designer</SubType>
  904. <Generator>MSBuild:Compile</Generator>
  905. </Page>
  906. <Page Include="Styles\CustomBtnStyle.xaml">
  907. <Generator>MSBuild:Compile</Generator>
  908. <SubType>Designer</SubType>
  909. </Page>
  910. <Page Include="Styles\CustomListItemStyle.xaml">
  911. <SubType>Designer</SubType>
  912. <Generator>MSBuild:Compile</Generator>
  913. </Page>
  914. <Page Include="Styles\ExpanderStyle.xaml">
  915. <Generator>MSBuild:Compile</Generator>
  916. <SubType>Designer</SubType>
  917. </Page>
  918. <Page Include="Styles\ListBoxStyle.xaml">
  919. <Generator>MSBuild:Compile</Generator>
  920. <SubType>Designer</SubType>
  921. </Page>
  922. <Page Include="Styles\ListViewStyle.xaml">
  923. <Generator>MSBuild:Compile</Generator>
  924. <SubType>Designer</SubType>
  925. </Page>
  926. <Page Include="Styles\MenuStyle.xaml">
  927. <SubType>Designer</SubType>
  928. <Generator>MSBuild:Compile</Generator>
  929. </Page>
  930. <Page Include="Styles\OutLineItemStyle.xaml">
  931. <SubType>Designer</SubType>
  932. <Generator>MSBuild:Compile</Generator>
  933. </Page>
  934. <Page Include="Styles\PathButtonStyle.xaml">
  935. <SubType>Designer</SubType>
  936. <Generator>MSBuild:Compile</Generator>
  937. </Page>
  938. <Page Include="Styles\RadioButtonStyle.xaml">
  939. <SubType>Designer</SubType>
  940. <Generator>MSBuild:Compile</Generator>
  941. </Page>
  942. <Page Include="Styles\SliderStyle.xaml">
  943. <Generator>MSBuild:Compile</Generator>
  944. <SubType>Designer</SubType>
  945. </Page>
  946. <Page Include="Styles\TabControlStyle.xaml">
  947. <SubType>Designer</SubType>
  948. <Generator>MSBuild:Compile</Generator>
  949. </Page>
  950. <Page Include="Styles\TextBoxStyle.xaml">
  951. <SubType>Designer</SubType>
  952. <Generator>MSBuild:Compile</Generator>
  953. </Page>
  954. <Page Include="Styles\WindowsStyle.xaml">
  955. <Generator>MSBuild:Compile</Generator>
  956. <SubType>Designer</SubType>
  957. </Page>
  958. <Page Include="Themes\Alias_Light.xaml">
  959. <SubType>Designer</SubType>
  960. <Generator>MSBuild:Compile</Generator>
  961. </Page>
  962. <Page Include="Themes\Generic.xaml">
  963. <Generator>MSBuild:Compile</Generator>
  964. <SubType>Designer</SubType>
  965. </Page>
  966. <Page Include="Themes\Global.xaml">
  967. <SubType>Designer</SubType>
  968. <Generator>XamlIntelliSenseFileGenerator</Generator>
  969. </Page>
  970. <Page Include="Views\BOTA\AnnotationContent.xaml">
  971. <SubType>Designer</SubType>
  972. <Generator>MSBuild:Compile</Generator>
  973. </Page>
  974. <Page Include="Views\BOTA\AnnotationListItem.xaml">
  975. <SubType>Designer</SubType>
  976. <Generator>MSBuild:Compile</Generator>
  977. </Page>
  978. <Page Include="Views\BOTA\BookmarkContent.xaml">
  979. <SubType>Designer</SubType>
  980. <Generator>MSBuild:Compile</Generator>
  981. </Page>
  982. <Page Include="Views\BOTA\BOTAContent.xaml">
  983. <SubType>Designer</SubType>
  984. <Generator>MSBuild:Compile</Generator>
  985. </Page>
  986. <Page Include="Views\BOTA\OutLineControl.xaml">
  987. <SubType>Designer</SubType>
  988. <Generator>MSBuild:Compile</Generator>
  989. </Page>
  990. <Page Include="Views\BOTA\SearchContent.xaml">
  991. <Generator>MSBuild:Compile</Generator>
  992. <SubType>Designer</SubType>
  993. </Page>
  994. <Page Include="Views\BottomToolContent.xaml">
  995. <SubType>Designer</SubType>
  996. <Generator>MSBuild:Compile</Generator>
  997. </Page>
  998. <Page Include="Views\Dialog\BOTA\AddAnnotationDialog.xaml">
  999. <SubType>Designer</SubType>
  1000. <Generator>MSBuild:Compile</Generator>
  1001. </Page>
  1002. <Page Include="Views\Dialog\BOTA\ScreenAnnotationDialog.xaml">
  1003. <SubType>Designer</SubType>
  1004. <Generator>MSBuild:Compile</Generator>
  1005. </Page>
  1006. <Page Include="Views\Dialog\ConverterDialogs\ConverterCSVDialog.xaml">
  1007. <SubType>Designer</SubType>
  1008. <Generator>MSBuild:Compile</Generator>
  1009. </Page>
  1010. <Page Include="Views\Dialog\BOTA\AddBookmarkDialog.xaml">
  1011. <SubType>Designer</SubType>
  1012. <Generator>MSBuild:Compile</Generator>
  1013. </Page>
  1014. <Page Include="Views\Dialog\BOTA\BookmarkInfoDialog.xaml">
  1015. <SubType>Designer</SubType>
  1016. <Generator>MSBuild:Compile</Generator>
  1017. </Page>
  1018. <Page Include="Views\Dialog\FullScreenWindow.xaml">
  1019. <SubType>Designer</SubType>
  1020. <Generator>MSBuild:Compile</Generator>
  1021. </Page>
  1022. <Page Include="Views\Dialog\ConverterDialogs\ConverterExcelDialog.xaml">
  1023. <SubType>Designer</SubType>
  1024. <Generator>MSBuild:Compile</Generator>
  1025. </Page>
  1026. <Page Include="Views\Dialog\ConverterDialogs\ConverterHTMLDialog.xaml">
  1027. <SubType>Designer</SubType>
  1028. <Generator>MSBuild:Compile</Generator>
  1029. </Page>
  1030. <Page Include="Views\Dialog\ConverterDialogs\ConverterImgDialog.xaml">
  1031. <SubType>Designer</SubType>
  1032. <Generator>MSBuild:Compile</Generator>
  1033. </Page>
  1034. <Page Include="Views\Dialog\ConverterDialogs\ConverterPPTDialog.xaml">
  1035. <SubType>Designer</SubType>
  1036. <Generator>MSBuild:Compile</Generator>
  1037. </Page>
  1038. <Page Include="Views\Dialog\ConverterDialogs\ConverterProgressBarDialog.xaml">
  1039. <SubType>Designer</SubType>
  1040. <Generator>MSBuild:Compile</Generator>
  1041. </Page>
  1042. <Page Include="Views\Dialog\ConverterDialogs\ConverterRTFDialog.xaml">
  1043. <SubType>Designer</SubType>
  1044. <Generator>MSBuild:Compile</Generator>
  1045. </Page>
  1046. <Page Include="Views\Dialog\ConverterDialogs\ConverterTextDialog.xaml">
  1047. <SubType>Designer</SubType>
  1048. <Generator>MSBuild:Compile</Generator>
  1049. </Page>
  1050. <Page Include="Views\Dialog\ConverterDialogs\ConverterWordDialog.xaml">
  1051. <SubType>Designer</SubType>
  1052. <Generator>MSBuild:Compile</Generator>
  1053. </Page>
  1054. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageBatchProcessingDialog.xaml">
  1055. <SubType>Designer</SubType>
  1056. <Generator>MSBuild:Compile</Generator>
  1057. </Page>
  1058. <Page Include="Views\Dialog\PageEditDialogs\SplitDialog.xaml">
  1059. <SubType>Designer</SubType>
  1060. <Generator>MSBuild:Compile</Generator>
  1061. </Page>
  1062. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageCompressDialog.xaml">
  1063. <SubType>Designer</SubType>
  1064. <Generator>MSBuild:Compile</Generator>
  1065. </Page>
  1066. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterCSV.xaml">
  1067. <SubType>Designer</SubType>
  1068. <Generator>MSBuild:Compile</Generator>
  1069. </Page>
  1070. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterDialog.xaml">
  1071. <SubType>Designer</SubType>
  1072. <Generator>MSBuild:Compile</Generator>
  1073. </Page>
  1074. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterExcel.xaml">
  1075. <SubType>Designer</SubType>
  1076. <Generator>MSBuild:Compile</Generator>
  1077. </Page>
  1078. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterImg.xaml">
  1079. <SubType>Designer</SubType>
  1080. <Generator>MSBuild:Compile</Generator>
  1081. </Page>
  1082. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageConverter\HomePageConverterWord.xaml">
  1083. <SubType>Designer</SubType>
  1084. <Generator>MSBuild:Compile</Generator>
  1085. </Page>
  1086. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageBatchProcessing\HomePageSetPasswordDialog.xaml">
  1087. <SubType>Designer</SubType>
  1088. <Generator>MSBuild:Compile</Generator>
  1089. </Page>
  1090. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageExtractDialog.xaml">
  1091. <SubType>Designer</SubType>
  1092. <Generator>MSBuild:Compile</Generator>
  1093. </Page>
  1094. <Page Include="Views\EditTools\Bates\BatesContent.xaml">
  1095. <SubType>Designer</SubType>
  1096. <Generator>MSBuild:Compile</Generator>
  1097. </Page>
  1098. <Page Include="Views\EditTools\Bates\BatesCreateContent.xaml">
  1099. <SubType>Designer</SubType>
  1100. <Generator>MSBuild:Compile</Generator>
  1101. </Page>
  1102. <Page Include="Views\EditTools\Bates\BatesDocumentContent.xaml">
  1103. <SubType>Designer</SubType>
  1104. <Generator>MSBuild:Compile</Generator>
  1105. </Page>
  1106. <Page Include="Views\EditTools\Bates\BatesTemplateListContent.xaml">
  1107. <SubType>Designer</SubType>
  1108. <Generator>MSBuild:Compile</Generator>
  1109. </Page>
  1110. <Page Include="Views\EditTools\HeaderFooter\HeaderFooterContent.xaml">
  1111. <SubType>Designer</SubType>
  1112. <Generator>MSBuild:Compile</Generator>
  1113. </Page>
  1114. <Page Include="Views\EditTools\HeaderFooter\HeaderFooterCreateContent.xaml">
  1115. <SubType>Designer</SubType>
  1116. <Generator>MSBuild:Compile</Generator>
  1117. </Page>
  1118. <Page Include="Views\EditTools\HeaderFooter\HeaderFooterDocumentContent.xaml">
  1119. <SubType>Designer</SubType>
  1120. <Generator>MSBuild:Compile</Generator>
  1121. </Page>
  1122. <Page Include="Views\EditTools\HeaderFooter\HeaderFooterTemplateListContent.xaml">
  1123. <SubType>Designer</SubType>
  1124. <Generator>MSBuild:Compile</Generator>
  1125. </Page>
  1126. <Page Include="Views\EditTools\Redaction\RedactionContent.xaml">
  1127. <SubType>Designer</SubType>
  1128. <Generator>MSBuild:Compile</Generator>
  1129. </Page>
  1130. <Page Include="Views\EditTools\Redaction\RedactionDocumentContent.xaml">
  1131. <SubType>Designer</SubType>
  1132. <Generator>MSBuild:Compile</Generator>
  1133. </Page>
  1134. <Page Include="Views\FillAndSign\FillAndSignContent.xaml">
  1135. <SubType>Designer</SubType>
  1136. <Generator>MSBuild:Compile</Generator>
  1137. </Page>
  1138. <Page Include="Views\FillAndSign\PropertyPanel\DateFillProperty.xaml">
  1139. <SubType>Designer</SubType>
  1140. <Generator>MSBuild:Compile</Generator>
  1141. </Page>
  1142. <Page Include="Views\FillAndSign\PropertyPanel\ShapFillProperty.xaml">
  1143. <SubType>Designer</SubType>
  1144. <Generator>MSBuild:Compile</Generator>
  1145. </Page>
  1146. <Page Include="Views\FillAndSign\PropertyPanel\TextFillProperty.xaml">
  1147. <SubType>Designer</SubType>
  1148. <Generator>MSBuild:Compile</Generator>
  1149. </Page>
  1150. <Page Include="Views\Form\ButtonProperty.xaml">
  1151. <SubType>Designer</SubType>
  1152. <Generator>MSBuild:Compile</Generator>
  1153. </Page>
  1154. <Page Include="Views\Form\CheckBoxProperty.xaml">
  1155. <SubType>Designer</SubType>
  1156. <Generator>MSBuild:Compile</Generator>
  1157. </Page>
  1158. <Page Include="Views\Form\ComboxProperty.xaml">
  1159. <SubType>Designer</SubType>
  1160. <Generator>MSBuild:Compile</Generator>
  1161. </Page>
  1162. <Page Include="Views\Form\FormsToolContent.xaml">
  1163. <SubType>Designer</SubType>
  1164. <Generator>XamlIntelliSenseFileGenerator</Generator>
  1165. </Page>
  1166. <Page Include="Views\Form\ListBoxProperty.xaml">
  1167. <SubType>Designer</SubType>
  1168. <Generator>MSBuild:Compile</Generator>
  1169. </Page>
  1170. <Page Include="Views\Form\RadioButtonProperty.xaml">
  1171. <SubType>Designer</SubType>
  1172. <Generator>MSBuild:Compile</Generator>
  1173. </Page>
  1174. <Page Include="Views\Form\SignProperty.xaml">
  1175. <SubType>Designer</SubType>
  1176. <Generator>MSBuild:Compile</Generator>
  1177. </Page>
  1178. <Page Include="Views\Form\TextFieldProperty.xaml">
  1179. <SubType>Designer</SubType>
  1180. <Generator>MSBuild:Compile</Generator>
  1181. </Page>
  1182. <Page Include="Views\HomeContent.xaml">
  1183. <SubType>Designer</SubType>
  1184. <Generator>MSBuild:Compile</Generator>
  1185. </Page>
  1186. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageInsertDialog.xaml">
  1187. <SubType>Designer</SubType>
  1188. <Generator>MSBuild:Compile</Generator>
  1189. </Page>
  1190. <Page Include="Views\HomePanel\CloudDrive\CloudDriveContent.xaml">
  1191. <SubType>Designer</SubType>
  1192. <Generator>MSBuild:Compile</Generator>
  1193. </Page>
  1194. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePagePictureToPDFDialog.xaml">
  1195. <SubType>Designer</SubType>
  1196. <Generator>MSBuild:Compile</Generator>
  1197. </Page>
  1198. <Page Include="Views\HomePanel\CloudDrive\CloudFilesContent.xaml">
  1199. <SubType>Designer</SubType>
  1200. <Generator>MSBuild:Compile</Generator>
  1201. </Page>
  1202. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterModBookletContent.xaml">
  1203. <SubType>Designer</SubType>
  1204. <Generator>MSBuild:Compile</Generator>
  1205. </Page>
  1206. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterModMultipleContent.xaml">
  1207. <SubType>Designer</SubType>
  1208. <Generator>MSBuild:Compile</Generator>
  1209. </Page>
  1210. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterModPosterContent.xaml">
  1211. <SubType>Designer</SubType>
  1212. <Generator>MSBuild:Compile</Generator>
  1213. </Page>
  1214. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterModSizeContent.xaml">
  1215. <SubType>Designer</SubType>
  1216. <Generator>MSBuild:Compile</Generator>
  1217. </Page>
  1218. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterPageSetDialog.xaml">
  1219. <SubType>Designer</SubType>
  1220. <Generator>MSBuild:Compile</Generator>
  1221. </Page>
  1222. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePageSplitDialog.xaml">
  1223. <SubType>Designer</SubType>
  1224. <Generator>MSBuild:Compile</Generator>
  1225. </Page>
  1226. <Page Include="Views\Dialog\PageEditDialogs\ExtractDialog.xaml">
  1227. <Generator>MSBuild:Compile</Generator>
  1228. <SubType>Designer</SubType>
  1229. </Page>
  1230. <Page Include="Views\Dialog\PageEditDialogs\InsertDialog.xaml">
  1231. <Generator>MSBuild:Compile</Generator>
  1232. <SubType>Designer</SubType>
  1233. </Page>
  1234. <Page Include="Views\Dialog\HomePageToolsDialogs\HomePagePrinter\HomePagePrinterDialog.xaml">
  1235. <SubType>Designer</SubType>
  1236. </Page>
  1237. <Page Include="CustomControl\CompositeControl\ColorContent.xaml">
  1238. <SubType>Designer</SubType>
  1239. <Generator>MSBuild:Compile</Generator>
  1240. </Page>
  1241. <Page Include="Views\Dialog\ToolsDialogs\CompressDialogs\CompressDialog.xaml">
  1242. <SubType>Designer</SubType>
  1243. <Generator>MSBuild:Compile</Generator>
  1244. </Page>
  1245. <Page Include="Views\Dialog\ToolsDialogs\CompressDialogs\CompressProgressBarDialog.xaml">
  1246. <SubType>Designer</SubType>
  1247. <Generator>MSBuild:Compile</Generator>
  1248. </Page>
  1249. <Page Include="Views\Dialog\ToolsDialogs\SaftyDialogs\CheckPasswordDialog.xaml">
  1250. <SubType>Designer</SubType>
  1251. <Generator>MSBuild:Compile</Generator>
  1252. </Page>
  1253. <Page Include="CustomControl\CompositeControl\SlidContentPop.xaml">
  1254. <Generator>MSBuild:Compile</Generator>
  1255. <SubType>Designer</SubType>
  1256. </Page>
  1257. <Page Include="Views\HomePanel\PDFTools\PDFToolExpendItem.xaml">
  1258. <SubType>Designer</SubType>
  1259. <Generator>MSBuild:Compile</Generator>
  1260. </Page>
  1261. <Page Include="Views\PropertyPanel\AnnotPanel\CustomCreateDialog.xaml">
  1262. <SubType>Designer</SubType>
  1263. <Generator>MSBuild:Compile</Generator>
  1264. </Page>
  1265. <Page Include="Views\PropertyPanel\AnnotPanel\DynamicPropertyDialog.xaml">
  1266. <SubType>Designer</SubType>
  1267. <Generator>MSBuild:Compile</Generator>
  1268. </Page>
  1269. <Page Include="Views\PropertyPanel\AnnotPanel\FreehandAnnotProperty.xaml">
  1270. <SubType>Designer</SubType>
  1271. <Generator>MSBuild:Compile</Generator>
  1272. </Page>
  1273. <Page Include="Views\Dialog\ToolsDialogs\SaftyDialogs\DeleteSafetySettingsDialog.xaml">
  1274. <SubType>Designer</SubType>
  1275. <Generator>MSBuild:Compile</Generator>
  1276. </Page>
  1277. <Page Include="Views\PropertyPanel\AnnotPanel\FreetextAnnotProperty.xaml">
  1278. <SubType>Designer</SubType>
  1279. <Generator>MSBuild:Compile</Generator>
  1280. </Page>
  1281. <Page Include="Views\Dialog\ToolsDialogs\SaftyDialogs\SetPasswordDialog.xaml">
  1282. <SubType>Designer</SubType>
  1283. <Generator>MSBuild:Compile</Generator>
  1284. </Page>
  1285. <Page Include="Views\Dialog\VerifyPassWordDialog.xaml">
  1286. <SubType>Designer</SubType>
  1287. <Generator>MSBuild:Compile</Generator>
  1288. </Page>
  1289. <Page Include="Views\PropertyPanel\AnnotPanel\ImageAnnotProperty.xaml">
  1290. <SubType>Designer</SubType>
  1291. <Generator>MSBuild:Compile</Generator>
  1292. </Page>
  1293. <Page Include="Views\PropertyPanel\AnnotPanel\LinkAnnotProperty.xaml">
  1294. <SubType>Designer</SubType>
  1295. <Generator>MSBuild:Compile</Generator>
  1296. </Page>
  1297. <Page Include="Views\EditTools\Background\BackgroundContent.xaml">
  1298. <SubType>Designer</SubType>
  1299. <Generator>MSBuild:Compile</Generator>
  1300. </Page>
  1301. <Page Include="Views\EditTools\Background\BackgroundDocumentContent.xaml">
  1302. <SubType>Designer</SubType>
  1303. <Generator>MSBuild:Compile</Generator>
  1304. </Page>
  1305. <Page Include="Views\PropertyPanel\AnnotPanel\SharpsAnnotProperty.xaml">
  1306. <SubType>Designer</SubType>
  1307. <Generator>MSBuild:Compile</Generator>
  1308. </Page>
  1309. <Page Include="Views\EditTools\Watermark\WatermarkContent.xaml">
  1310. <SubType>Designer</SubType>
  1311. <Generator>MSBuild:Compile</Generator>
  1312. </Page>
  1313. <Page Include="Views\PropertyPanel\AnnotPanel\StampAnnotProperty.xaml">
  1314. <SubType>Designer</SubType>
  1315. <Generator>MSBuild:Compile</Generator>
  1316. </Page>
  1317. <Page Include="Views\EditTools\Watermark\WatermarkCreateBaseContent.xaml">
  1318. <SubType>Designer</SubType>
  1319. <Generator>MSBuild:Compile</Generator>
  1320. </Page>
  1321. <Page Include="Views\EditTools\Watermark\WatermarkCreateFileContent.xaml">
  1322. <SubType>Designer</SubType>
  1323. <Generator>MSBuild:Compile</Generator>
  1324. </Page>
  1325. <Page Include="Views\PropertyPanel\AnnotPanel\TextAnnotProperty.xaml">
  1326. <SubType>Designer</SubType>
  1327. <Generator>MSBuild:Compile</Generator>
  1328. </Page>
  1329. <Page Include="Views\EditTools\Watermark\WatermarkCreateTextContent.xaml">
  1330. <SubType>Designer</SubType>
  1331. <Generator>MSBuild:Compile</Generator>
  1332. </Page>
  1333. <Page Include="Views\EditTools\Watermark\WatermarkDocumentContent.xaml">
  1334. <SubType>Designer</SubType>
  1335. <Generator>MSBuild:Compile</Generator>
  1336. </Page>
  1337. <Page Include="Views\EditTools\Watermark\WatermarkTemplateListBaseContent.xaml">
  1338. <SubType>Designer</SubType>
  1339. <Generator>MSBuild:Compile</Generator>
  1340. </Page>
  1341. <Page Include="CustomControl\CompositeControl\SlidContent.xaml">
  1342. <Generator>MSBuild:Compile</Generator>
  1343. </Page>
  1344. <Page Include="Views\EditTools\Watermark\WatermarkTemplateListFileContent.xaml">
  1345. <SubType>Designer</SubType>
  1346. <Generator>MSBuild:Compile</Generator>
  1347. </Page>
  1348. <Page Include="Views\EditTools\Watermark\WatermarkTemplateListTextContent.xaml">
  1349. <SubType>Designer</SubType>
  1350. <Generator>MSBuild:Compile</Generator>
  1351. </Page>
  1352. <Page Include="Views\EditTools\Background\BackgroundCreateBaseContent.xaml">
  1353. <SubType>Designer</SubType>
  1354. </Page>
  1355. <Page Include="Views\PropertyPanel\PropertyPanelContent.xaml">
  1356. <SubType>Designer</SubType>
  1357. <Generator>MSBuild:Compile</Generator>
  1358. </Page>
  1359. <Page Include="Views\PropertyPanel\TextEditProperty.xaml">
  1360. <Generator>MSBuild:Compile</Generator>
  1361. <SubType>Designer</SubType>
  1362. </Page>
  1363. <Page Include="Views\PropertyPanel\ViewModular\ReadModeContent.xaml">
  1364. <SubType>Designer</SubType>
  1365. <Generator>MSBuild:Compile</Generator>
  1366. </Page>
  1367. <Page Include="Views\PropertyPanel\ViewModular\ReadViewContent.xaml">
  1368. <SubType>Designer</SubType>
  1369. <Generator>MSBuild:Compile</Generator>
  1370. </Page>
  1371. <Page Include="Views\PropertyPanel\ViewModular\SplitScreenContent.xaml">
  1372. <SubType>Designer</SubType>
  1373. <Generator>MSBuild:Compile</Generator>
  1374. </Page>
  1375. <Page Include="Views\EditTools\Background\BackgroundCreateColorContent.xaml">
  1376. <SubType>Designer</SubType>
  1377. <Generator>MSBuild:Compile</Generator>
  1378. </Page>
  1379. <Page Include="Views\EditTools\Background\BackgroundCreateFileContent.xaml">
  1380. <SubType>Designer</SubType>
  1381. <Generator>MSBuild:Compile</Generator>
  1382. </Page>
  1383. <Page Include="Views\PropertyPanel\ViewModular\ThemesContent.xaml">
  1384. <SubType>Designer</SubType>
  1385. <Generator>MSBuild:Compile</Generator>
  1386. </Page>
  1387. <Page Include="Views\PropertyPanel\ViewModular\ViewModularContent.xaml">
  1388. <SubType>Designer</SubType>
  1389. <Generator>MSBuild:Compile</Generator>
  1390. </Page>
  1391. <Page Include="Views\EditTools\Background\BackgroundTemplateListBaseContent.xaml">
  1392. <SubType>Designer</SubType>
  1393. <Generator>MSBuild:Compile</Generator>
  1394. </Page>
  1395. <Page Include="Views\EditTools\Background\BackgroundTemplateListColorContent.xaml">
  1396. <SubType>Designer</SubType>
  1397. <Generator>MSBuild:Compile</Generator>
  1398. </Page>
  1399. <Page Include="Views\EditTools\Background\BackgroundTemplateListFileContent.xaml">
  1400. <SubType>Designer</SubType>
  1401. <Generator>MSBuild:Compile</Generator>
  1402. </Page>
  1403. <Page Include="Views\HomePanel\HomeCloudContent.xaml">
  1404. <SubType>Designer</SubType>
  1405. <Generator>MSBuild:Compile</Generator>
  1406. </Page>
  1407. <Page Include="Views\HomePanel\HomeGuidContent.xaml">
  1408. <SubType>Designer</SubType>
  1409. <Generator>MSBuild:Compile</Generator>
  1410. </Page>
  1411. <Page Include="Views\HomePanel\PDFTools\PDFToolItem.xaml">
  1412. <Generator>MSBuild:Compile</Generator>
  1413. <SubType>Designer</SubType>
  1414. </Page>
  1415. <Page Include="Views\HomePanel\HomeToolsContent.xaml">
  1416. <SubType>Designer</SubType>
  1417. <Generator>MSBuild:Compile</Generator>
  1418. </Page>
  1419. <Page Include="Views\HomePanel\PDFTools\PDFToolsContent.xaml">
  1420. <Generator>MSBuild:Compile</Generator>
  1421. <SubType>Designer</SubType>
  1422. </Page>
  1423. <Page Include="Views\HomePanel\PDFTools\QuickToolsContent.xaml">
  1424. <SubType>Designer</SubType>
  1425. <Generator>MSBuild:Compile</Generator>
  1426. </Page>
  1427. <Page Include="Views\HomePanel\PromotionContent.xaml">
  1428. <Generator>MSBuild:Compile</Generator>
  1429. <SubType>Designer</SubType>
  1430. </Page>
  1431. <Page Include="Views\HomePanel\RecentFiles\DocItemControl.xaml">
  1432. <Generator>MSBuild:Compile</Generator>
  1433. <SubType>Designer</SubType>
  1434. </Page>
  1435. <Page Include="Views\HomePanel\RecentFiles\DocItemListViewControl.xaml">
  1436. <Generator>MSBuild:Compile</Generator>
  1437. <SubType>Designer</SubType>
  1438. </Page>
  1439. <Page Include="Views\HomePanel\RecentFiles\RecentFilesContent.xaml">
  1440. <Generator>MSBuild:Compile</Generator>
  1441. <SubType>Designer</SubType>
  1442. </Page>
  1443. <Page Include="Views\MainContent.xaml">
  1444. <SubType>Designer</SubType>
  1445. <Generator>MSBuild:Compile</Generator>
  1446. </Page>
  1447. <Page Include="Views\MainWindow.xaml">
  1448. <Generator>MSBuild:Compile</Generator>
  1449. <SubType>Designer</SubType>
  1450. </Page>
  1451. <Compile Include="App.xaml.cs">
  1452. <DependentUpon>App.xaml</DependentUpon>
  1453. <SubType>Code</SubType>
  1454. </Compile>
  1455. <Compile Include="ViewModels\HomeContentViewModel.cs" />
  1456. <Compile Include="ViewModels\MainWindowViewModel.cs" />
  1457. <Compile Include="ViewModels\ViewContentViewModel.cs" />
  1458. <Compile Include="Views\HomeContent.xaml.cs">
  1459. <DependentUpon>HomeContent.xaml</DependentUpon>
  1460. </Compile>
  1461. <Compile Include="Views\MainWindow.xaml.cs">
  1462. <DependentUpon>MainWindow.xaml</DependentUpon>
  1463. <SubType>Code</SubType>
  1464. </Compile>
  1465. <Page Include="Views\PageEdit\PageEditContent.xaml">
  1466. <Generator>MSBuild:Compile</Generator>
  1467. <SubType>Designer</SubType>
  1468. </Page>
  1469. <Page Include="Views\Tools\AnnotToolContent.xaml">
  1470. <SubType>Designer</SubType>
  1471. <Generator>MSBuild:Compile</Generator>
  1472. </Page>
  1473. <Page Include="Views\Tools\ConverterBarContent.xaml">
  1474. <SubType>Designer</SubType>
  1475. <Generator>MSBuild:Compile</Generator>
  1476. </Page>
  1477. <Page Include="Views\Tools\TextEditToolContent.xaml">
  1478. <Generator>MSBuild:Compile</Generator>
  1479. <SubType>Designer</SubType>
  1480. </Page>
  1481. <Page Include="Views\Tools\ToolsBarContent.xaml">
  1482. <SubType>Designer</SubType>
  1483. <Generator>MSBuild:Compile</Generator>
  1484. </Page>
  1485. <Page Include="Views\ViewContent.xaml">
  1486. <SubType>Designer</SubType>
  1487. <Generator>MSBuild:Compile</Generator>
  1488. </Page>
  1489. </ItemGroup>
  1490. <ItemGroup>
  1491. <Compile Include="Properties\AssemblyInfo.cs">
  1492. <SubType>Code</SubType>
  1493. </Compile>
  1494. <Compile Include="Properties\Settings.Designer.cs">
  1495. <AutoGen>True</AutoGen>
  1496. <DependentUpon>Settings.settings</DependentUpon>
  1497. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  1498. </Compile>
  1499. <None Include="credentials.json">
  1500. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1501. </None>
  1502. <None Include="packages.config" />
  1503. <None Include="Properties\Settings.settings">
  1504. <Generator>SettingsSingleFileGenerator</Generator>
  1505. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  1506. </None>
  1507. <None Include="source\AnalysisWord\Res\word\_rels\document.xml.rels" />
  1508. <Resource Include="Resources\BOTA\Annotation\Arrow.png" />
  1509. <Resource Include="Resources\BOTA\Annotation\Bookmark.png" />
  1510. <Resource Include="Resources\BOTA\Annotation\Circle.png" />
  1511. <Resource Include="Resources\BOTA\Annotation\Freehande.png" />
  1512. <Resource Include="Resources\BOTA\Annotation\Freehande2.png" />
  1513. <Resource Include="Resources\BOTA\Annotation\Hand.png" />
  1514. <Resource Include="Resources\BOTA\Annotation\Highlight.png" />
  1515. <Resource Include="Resources\BOTA\Annotation\Hyperlink.png" />
  1516. <Resource Include="Resources\BOTA\Annotation\Image.png" />
  1517. <Resource Include="Resources\BOTA\Annotation\Line.png" />
  1518. <Resource Include="Resources\BOTA\Annotation\Note.png" />
  1519. <Resource Include="Resources\BOTA\Annotation\Point.png" />
  1520. <Resource Include="Resources\BOTA\Annotation\Rectangle.png" />
  1521. <Resource Include="Resources\BOTA\Annotation\Selecttool.png" />
  1522. <Resource Include="Resources\BOTA\Annotation\Stamp.png" />
  1523. <Resource Include="Resources\BOTA\Annotation\Textbox.png" />
  1524. <Resource Include="Resources\BOTA\Annotation\wavyline2.png" />
  1525. <Resource Include="Resources\BOTA\empty_annotation.png" />
  1526. <Resource Include="Resources\HomeIcon\PDFTools\background.png" />
  1527. <Resource Include="Resources\HomeIcon\PDFTools\batch-remove.png" />
  1528. <Resource Include="Resources\HomeIcon\PDFTools\batch.png" />
  1529. <Resource Include="Resources\HomeIcon\PDFTools\batesnumbers.png" />
  1530. <Resource Include="Resources\HomeIcon\PDFTools\compare.png" />
  1531. <Resource Include="Resources\HomeIcon\PDFTools\compress.png" />
  1532. <Resource Include="Resources\HomeIcon\PDFTools\convert.png" />
  1533. <Resource Include="Resources\HomeIcon\PDFTools\extract.png" />
  1534. <Resource Include="Resources\HomeIcon\PDFTools\form-filed-recognition.png" />
  1535. <Resource Include="Resources\HomeIcon\PDFTools\header&amp;footer.png" />
  1536. <Resource Include="Resources\HomeIcon\PDFTools\image.png" />
  1537. <Resource Include="Resources\HomeIcon\PDFTools\insert.png" />
  1538. <Resource Include="Resources\HomeIcon\PDFTools\merge.png" />
  1539. <Resource Include="Resources\HomeIcon\PDFTools\ocr.png" />
  1540. <Resource Include="Resources\HomeIcon\PDFTools\page-edit.png" />
  1541. <Resource Include="Resources\HomeIcon\PDFTools\pdf-to-excel.png" />
  1542. <Resource Include="Resources\HomeIcon\PDFTools\pdf-to-image.png" />
  1543. <Resource Include="Resources\HomeIcon\PDFTools\pdf-to-ppt.png" />
  1544. <Resource Include="Resources\HomeIcon\PDFTools\pdf-to-word.png" />
  1545. <Resource Include="Resources\HomeIcon\PDFTools\print.png" />
  1546. <Resource Include="Resources\HomeIcon\PDFTools\reduct.png" />
  1547. <Resource Include="Resources\HomeIcon\PDFTools\security.png" />
  1548. <Resource Include="Resources\HomeIcon\PDFTools\split.png" />
  1549. <Resource Include="Resources\HomeIcon\PDFTools\watermark.png" />
  1550. <Resource Include="Resources\StampIcons\Accepted.png" />
  1551. <Resource Include="Resources\StampIcons\Approved.png" />
  1552. <Resource Include="Resources\StampIcons\Completed.png" />
  1553. <Resource Include="Resources\StampIcons\Confidential.png" />
  1554. <Resource Include="Resources\StampIcons\Draft.png" />
  1555. <Resource Include="Resources\StampIcons\Empty_stamp.png" />
  1556. <Resource Include="Resources\StampIcons\Final.png" />
  1557. <Resource Include="Resources\StampIcons\ForComment.png" />
  1558. <Resource Include="Resources\StampIcons\ForPublicRelease.png" />
  1559. <Resource Include="Resources\StampIcons\InformationOnly.png" />
  1560. <Resource Include="Resources\StampIcons\InitialHere.png" />
  1561. <Resource Include="Resources\StampIcons\NotApproved.png" />
  1562. <Resource Include="Resources\StampIcons\NotForPublicRelease.png" />
  1563. <Resource Include="Resources\StampIcons\PreliminaryResults.png" />
  1564. <Resource Include="Resources\StampIcons\PrivateMark1.png" />
  1565. <Resource Include="Resources\StampIcons\PrivateMark2.png" />
  1566. <Resource Include="Resources\StampIcons\PrivateMark3.png" />
  1567. <Resource Include="Resources\StampIcons\Rejected.png" />
  1568. <Resource Include="Resources\StampIcons\revised.png" />
  1569. <Resource Include="Resources\StampIcons\SignHere.png" />
  1570. <Resource Include="Resources\StampIcons\Void.png" />
  1571. <Resource Include="Resources\StampIcons\Witness.png" />
  1572. <Content Include="Resources\PageEdit\GridLine.jpg">
  1573. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1574. </Content>
  1575. <Content Include="Resources\PageEdit\HorizontalLine.jpg">
  1576. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1577. </Content>
  1578. <Content Include="Resources\PageEdit\Staff.jpg">
  1579. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1580. </Content>
  1581. <Resource Include="Resources\EditTools\watermark_bg.png" />
  1582. <Content Include="source\AnalysisWord\Res\_rels\.rels">
  1583. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1584. </Content>
  1585. </ItemGroup>
  1586. <ItemGroup>
  1587. <None Include="App.config" />
  1588. </ItemGroup>
  1589. <ItemGroup>
  1590. <Folder Include="Views\Edit\" />
  1591. <Folder Include="Views\Scan\" />
  1592. </ItemGroup>
  1593. <ItemGroup>
  1594. <Content Include="ComOCRKit.Desk.dll">
  1595. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1596. </Content>
  1597. <Content Include="ComPDFKit.Desk.dll">
  1598. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1599. </Content>
  1600. <Content Include="ComPDFKit.Viewer.dll">
  1601. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1602. </Content>
  1603. <Content Include="ComPDFKit_Conversion.dll">
  1604. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1605. </Content>
  1606. <Content Include="DotNetSpeech.dll">
  1607. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1608. </Content>
  1609. <Content Include="Dragablz.dll">
  1610. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1611. </Content>
  1612. <Resource Include="StyleAndTemplateList.txt" />
  1613. <Resource Include="Resources\QuickToolIcon\Batch.png" />
  1614. <Resource Include="Resources\HomeIcon\file_addition.png" />
  1615. <Resource Include="Resources\HomeIcon\folderOpen.png" />
  1616. <Resource Include="Resources\PromotionIcon\Android.png" />
  1617. <Resource Include="Resources\PromotionIcon\ComPDFKit.png" />
  1618. <Resource Include="Resources\PromotionIcon\ComVideoKit.png" />
  1619. <Resource Include="Resources\PromotionIcon\FilmageEditor.png" />
  1620. <Resource Include="Resources\PromotionIcon\FilmageScreen.png" />
  1621. <Resource Include="Resources\PromotionIcon\FreePDFTemplates.png" />
  1622. <Resource Include="Resources\PromotionIcon\IPhoneiPad.png" />
  1623. <Resource Include="Resources\PromotionIcon\SignFlow.png" />
  1624. <Resource Include="Resources\PromotionIcon\Windows.png" />
  1625. <Resource Include="Resources\FilesType\ic_propertybar_file_pdf_lock.png" />
  1626. <Resource Include="Resources\FilesType\ic_propertybar_file_png_Large.png" />
  1627. <Resource Include="SDKLisence.xml" />
  1628. <Content Include="index.html">
  1629. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1630. </Content>
  1631. <Resource Include="Resources\ToolBarIcon\MyTools\Arrow.png" />
  1632. <Resource Include="Resources\ToolBarIcon\MyTools\Bookmark.png" />
  1633. <Resource Include="Resources\ToolBarIcon\MyTools\Circle.png" />
  1634. <Resource Include="Resources\ToolBarIcon\MyTools\Freehande.png" />
  1635. <Resource Include="Resources\ToolBarIcon\MyTools\Freehande2.png" />
  1636. <Resource Include="Resources\ToolBarIcon\MyTools\Hand.png" />
  1637. <Resource Include="Resources\ToolBarIcon\MyTools\Highlight.png" />
  1638. <Resource Include="Resources\ToolBarIcon\MyTools\Hyperlink.png" />
  1639. <Resource Include="Resources\ToolBarIcon\MyTools\Image.png" />
  1640. <Resource Include="Resources\ToolBarIcon\MyTools\Line.png" />
  1641. <Resource Include="Resources\ToolBarIcon\MyTools\Note.png" />
  1642. <Resource Include="Resources\ToolBarIcon\MyTools\Point.png" />
  1643. <Resource Include="Resources\ToolBarIcon\MyTools\Rectangle.png" />
  1644. <Resource Include="Resources\ToolBarIcon\MyTools\Selecttool.png" />
  1645. <Resource Include="Resources\ToolBarIcon\MyTools\Stamp.png" />
  1646. <Resource Include="Resources\ToolBarIcon\MyTools\Textbox.png" />
  1647. <Resource Include="Resources\ToolBarIcon\MyTools\wavyline2.png" />
  1648. <Content Include="source\AnalysisPPT\Res\slideLayouts\slideLayout1.xml">
  1649. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1650. </Content>
  1651. <Content Include="source\AnalysisPPT\Res\slideLayouts\slideLayout10.xml">
  1652. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1653. </Content>
  1654. <Content Include="source\AnalysisPPT\Res\slideLayouts\slideLayout11.xml">
  1655. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1656. </Content>
  1657. <Content Include="source\AnalysisPPT\Res\slideLayouts\slideLayout2.xml">
  1658. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1659. </Content>
  1660. <Content Include="source\AnalysisPPT\Res\slideLayouts\slideLayout3.xml">
  1661. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1662. </Content>
  1663. <Content Include="source\AnalysisPPT\Res\slideLayouts\slideLayout4.xml">
  1664. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1665. </Content>
  1666. <Content Include="source\AnalysisPPT\Res\slideLayouts\slideLayout5.xml">
  1667. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1668. </Content>
  1669. <Content Include="source\AnalysisPPT\Res\slideLayouts\slideLayout6.xml">
  1670. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1671. </Content>
  1672. <Content Include="source\AnalysisPPT\Res\slideLayouts\slideLayout7.xml">
  1673. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1674. </Content>
  1675. <Content Include="source\AnalysisPPT\Res\slideLayouts\slideLayout8.xml">
  1676. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1677. </Content>
  1678. <Content Include="source\AnalysisPPT\Res\slideLayouts\slideLayout9.xml">
  1679. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1680. </Content>
  1681. <Content Include="source\AnalysisPPT\Res\slideMaster1.xml">
  1682. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1683. </Content>
  1684. <Content Include="source\AnalysisPPT\Res\theme1.xml">
  1685. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1686. </Content>
  1687. <Content Include="source\AnalysisPPT\Res\thumbnail.jpeg">
  1688. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1689. </Content>
  1690. <Content Include="source\AnalysisWord\Res\docProps\app.xml">
  1691. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1692. </Content>
  1693. <Content Include="source\AnalysisWord\Res\docProps\core.xml">
  1694. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1695. </Content>
  1696. <Resource Include="source\AnalysisWord\Res\word\document.xml" />
  1697. <Resource Include="source\AnalysisWord\Res\word\document0.xml" />
  1698. <Resource Include="source\AnalysisWord\Res\word\endnotes.xml" />
  1699. <Resource Include="source\AnalysisWord\Res\word\footnotes.xml" />
  1700. <Resource Include="source\AnalysisWord\Res\word\settings.xml" />
  1701. <Resource Include="source\AnalysisWord\Res\word\theme\theme1.xml" />
  1702. <Content Include="source\AnalysisWord\Res\[Content_Types].xml">
  1703. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1704. </Content>
  1705. <Resource Include="Resources\BOTA\empty_bookmark.png" />
  1706. <Resource Include="Resources\PropertyPanel\colorIcon.png" />
  1707. <Content Include="SystemService\PreviewHandler.dll">
  1708. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1709. </Content>
  1710. <Content Include="SystemService\PreviewHandlerx86.dll">
  1711. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1712. </Content>
  1713. <Content Include="SystemService\TechPDFKitBase.dll">
  1714. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1715. </Content>
  1716. <Content Include="SystemService\ThumbnailProvider.dll">
  1717. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1718. </Content>
  1719. <Content Include="SystemService\ThumbnailProviderx86.dll">
  1720. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1721. </Content>
  1722. <Content Include="x64\ComPDFKit.dll">
  1723. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1724. </Content>
  1725. <Content Include="x64\CPDFConverterNative.dll">
  1726. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1727. </Content>
  1728. <Content Include="x64\libhpdf.dll">
  1729. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1730. </Content>
  1731. <Content Include="x64\libpng16.dll">
  1732. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1733. </Content>
  1734. <Content Include="x64\TechPDFKit.dll">
  1735. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1736. </Content>
  1737. <Content Include="x64\TechPdfToOffice.dll">
  1738. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1739. </Content>
  1740. <Content Include="x64\vcruntime140.dll">
  1741. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1742. </Content>
  1743. <Content Include="x64\zlib1.dll">
  1744. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1745. </Content>
  1746. <Content Include="x86\ComPDFKit.dll">
  1747. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1748. </Content>
  1749. <Content Include="x86\CPDFConverterNative.dll">
  1750. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1751. </Content>
  1752. <Content Include="x86\libhpdf.dll">
  1753. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1754. </Content>
  1755. <Content Include="x86\libpng16.dll">
  1756. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1757. </Content>
  1758. <Content Include="x86\TechPDFKit.dll">
  1759. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1760. </Content>
  1761. <Content Include="x86\TechPDFToOffice.dll">
  1762. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1763. </Content>
  1764. <Content Include="x86\vcruntime140.dll">
  1765. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1766. </Content>
  1767. <Content Include="x86\zlib1.dll">
  1768. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  1769. </Content>
  1770. </ItemGroup>
  1771. <ItemGroup>
  1772. <ProjectReference Include="..\PDFSettings\PDFSettings.csproj">
  1773. <Project>{bee73aae-9a2c-446b-b64d-3a8f042c985d}</Project>
  1774. <Name>PDFSettings</Name>
  1775. </ProjectReference>
  1776. </ItemGroup>
  1777. <ItemGroup>
  1778. <EmbeddedResource Include="Properties\Resources.resx">
  1779. <Generator>ResXFileCodeGenerator</Generator>
  1780. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  1781. </EmbeddedResource>
  1782. </ItemGroup>
  1783. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  1784. <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
  1785. <PropertyGroup>
  1786. <ErrorText>这台计算机上缺少此项目引用的 NuGet 程序包。使用“NuGet 程序包还原”可下载这些程序包。有关更多信息,请参见 http://go.microsoft.com/fwlink/?LinkID=322105。缺少的文件是 {0}。</ErrorText>
  1787. </PropertyGroup>
  1788. <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'))" />
  1789. </Target>
  1790. <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')" />
  1791. </Project>