Compdfkit.Controls.csproj 67 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  4. <PropertyGroup>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7. <ProjectGuid>{9363BCB1-3A67-446A-8093-5708B86BF418}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <RootNamespace>ComPDFKit.Controls</RootNamespace>
  10. <AssemblyName>ComPDFKit.Controls</AssemblyName>
  11. <TargetFrameworkVersion>v4.6.2</TargetFrameworkVersion>
  12. <FileAlignment>512</FileAlignment>
  13. <ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  14. <WarningLevel>4</WarningLevel>
  15. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  16. <Deterministic>true</Deterministic>
  17. <TargetFrameworkProfile />
  18. <NuGetPackageImportStamp>
  19. </NuGetPackageImportStamp>
  20. <LangVersion>7</LangVersion>
  21. </PropertyGroup>
  22. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  23. <PlatformTarget>AnyCPU</PlatformTarget>
  24. <DebugSymbols>true</DebugSymbols>
  25. <DebugType>full</DebugType>
  26. <Optimize>false</Optimize>
  27. <OutputPath>bin\Debug\</OutputPath>
  28. <DefineConstants>DEBUG;TRACE</DefineConstants>
  29. <ErrorReport>prompt</ErrorReport>
  30. <WarningLevel>4</WarningLevel>
  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. <PropertyGroup>
  44. <StartupObject />
  45. </PropertyGroup>
  46. <PropertyGroup>
  47. <ApplicationIcon>ComPDFKit_Logo.ico</ApplicationIcon>
  48. </PropertyGroup>
  49. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
  50. <DebugSymbols>true</DebugSymbols>
  51. <OutputPath>bin\x64\Debug\</OutputPath>
  52. <DefineConstants>DEBUG;TRACE</DefineConstants>
  53. <DebugType>full</DebugType>
  54. <PlatformTarget>x64</PlatformTarget>
  55. <LangVersion>7</LangVersion>
  56. <ErrorReport>prompt</ErrorReport>
  57. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  58. </PropertyGroup>
  59. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
  60. <OutputPath>bin\x64\Release\</OutputPath>
  61. <DefineConstants>TRACE</DefineConstants>
  62. <Optimize>true</Optimize>
  63. <DebugType>pdbonly</DebugType>
  64. <PlatformTarget>x64</PlatformTarget>
  65. <LangVersion>7</LangVersion>
  66. <ErrorReport>prompt</ErrorReport>
  67. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  68. </PropertyGroup>
  69. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
  70. <DebugSymbols>true</DebugSymbols>
  71. <OutputPath>bin\x86\Debug\</OutputPath>
  72. <DefineConstants>DEBUG;TRACE</DefineConstants>
  73. <DebugType>full</DebugType>
  74. <PlatformTarget>x86</PlatformTarget>
  75. <LangVersion>7</LangVersion>
  76. <ErrorReport>prompt</ErrorReport>
  77. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  78. </PropertyGroup>
  79. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
  80. <OutputPath>bin\x86\Release\</OutputPath>
  81. <DefineConstants>TRACE</DefineConstants>
  82. <Optimize>true</Optimize>
  83. <DebugType>pdbonly</DebugType>
  84. <PlatformTarget>x86</PlatformTarget>
  85. <LangVersion>7</LangVersion>
  86. <ErrorReport>prompt</ErrorReport>
  87. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  88. </PropertyGroup>
  89. <ItemGroup>
  90. <Reference Include="Microsoft.WindowsAPICodePack, Version=1.1.0.0, Culture=neutral, processorArchitecture=MSIL">
  91. <HintPath>..\packages\WindowsAPICodePack-Core.1.1.1\lib\Microsoft.WindowsAPICodePack.dll</HintPath>
  92. </Reference>
  93. <Reference Include="Microsoft.WindowsAPICodePack.Shell, Version=1.1.0.0, Culture=neutral, processorArchitecture=MSIL">
  94. <HintPath>..\packages\WindowsAPICodePack-Shell.1.1.1\lib\Microsoft.WindowsAPICodePack.Shell.dll</HintPath>
  95. </Reference>
  96. <Reference Include="Nager.Country, Version=4.0.0.0, Culture=neutral, processorArchitecture=MSIL">
  97. <HintPath>..\packages\Nager.Country.4.0.0\lib\netstandard2.0\Nager.Country.dll</HintPath>
  98. </Reference>
  99. <Reference Include="PresentationFramework.Aero2, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  100. <HintPath>..\packages\PresentationFramework.Aero2.1.0.1\lib\PresentationFramework.Aero2.dll</HintPath>
  101. </Reference>
  102. <Reference Include="ReachFramework" />
  103. <Reference Include="System" />
  104. <Reference Include="System.Data" />
  105. <Reference Include="System.Drawing" />
  106. <Reference Include="System.Management" />
  107. <Reference Include="System.Printing" />
  108. <Reference Include="System.Windows.Forms" />
  109. <Reference Include="System.Xml" />
  110. <Reference Include="Microsoft.CSharp" />
  111. <Reference Include="System.Core" />
  112. <Reference Include="System.Xml.Linq" />
  113. <Reference Include="System.Data.DataSetExtensions" />
  114. <Reference Include="System.Net.Http" />
  115. <Reference Include="System.Xaml">
  116. <RequiredTargetFramework>4.0</RequiredTargetFramework>
  117. </Reference>
  118. <Reference Include="VirtualizingWrapPanel">
  119. <HintPath>.\VirtualizingWrapPanel.dll</HintPath>
  120. </Reference>
  121. <Reference Include="WindowsBase" />
  122. <Reference Include="PresentationCore" />
  123. <Reference Include="PresentationFramework" />
  124. </ItemGroup>
  125. <ItemGroup>
  126. <Compile Include="Annotation\AnnotationControl\AnnotationControl.xaml.cs">
  127. <DependentUpon>AnnotationControl.xaml</DependentUpon>
  128. </Compile>
  129. <Compile Include="Annotation\CPDFAnnotationPreviewerControl.xaml.cs">
  130. <DependentUpon>CPDFAnnotationPreviewerControl.xaml</DependentUpon>
  131. </Compile>
  132. <Compile Include="Annotation\PDFAnnotationList\PDFAnnotationListControl\CPDFAnnotationListControl.xaml.cs">
  133. <DependentUpon>CPDFAnnotationListControl.xaml</DependentUpon>
  134. </Compile>
  135. <Compile Include="Annotation\PDFAnnotationList\PDFAnnotationListUI\AnnotationReplyListControl.xaml.cs">
  136. <DependentUpon>AnnotationReplyListControl.xaml</DependentUpon>
  137. </Compile>
  138. <Compile Include="Annotation\PDFAnnotationList\PDFAnnotationListUI\CPDFAnnotationListUI.xaml.cs">
  139. <DependentUpon>CPDFAnnotationListUI.xaml</DependentUpon>
  140. </Compile>
  141. <Compile Include="Annotation\PDFAnnotationList\PDFAnnotationListUI\ReplyStatusControl.xaml.cs">
  142. <DependentUpon>ReplyStatusControl.xaml</DependentUpon>
  143. </Compile>
  144. <Compile Include="Annotation\PDFAnnotationPanel\PDFAnnotationUI\CPDFCloudUI.xaml.cs">
  145. <DependentUpon>CPDFCloudUI.xaml</DependentUpon>
  146. </Compile>
  147. <Compile Include="Annotation\PDFAnnotationPanel\PDFAnnotationUI\CPDFFreehandUI.xaml.cs">
  148. <DependentUpon>CPDFFreehandUI.xaml</DependentUpon>
  149. </Compile>
  150. <Compile Include="Annotation\PDFAnnotationPanel\PDFAnnotationUI\CPDFFreeTextUI.xaml.cs">
  151. <DependentUpon>CPDFFreeTextUI.xaml</DependentUpon>
  152. </Compile>
  153. <Compile Include="Annotation\PDFAnnotationPanel\PDFAnnotationUI\CPDFTempStampUI.xaml.cs">
  154. <DependentUpon>CPDFTempStampUI.xaml</DependentUpon>
  155. </Compile>
  156. <Compile Include="Annotation\PDFAnnotationPanel\PDFAnnotationUI\CPDFNoteUI.xaml.cs">
  157. <DependentUpon>CPDFNoteUI.xaml</DependentUpon>
  158. </Compile>
  159. <Compile Include="Annotation\PDFAnnotationPanel\PDFAnnotationUI\CPDFSignatureUI.xaml.cs">
  160. <DependentUpon>CPDFSignatureUI.xaml</DependentUpon>
  161. </Compile>
  162. <Compile Include="Annotation\PDFAnnotationPanel\PDFAnnotationUI\CPDFCreateSignatureDialog.xaml.cs">
  163. <DependentUpon>CPDFCreateSignatureDialog.xaml</DependentUpon>
  164. </Compile>
  165. <Compile Include="Annotation\PDFAnnotationPanel\PDFAnnotationUI\CPDFDeleteDialog.xaml.cs">
  166. <DependentUpon>CPDFDeleteDialog.xaml</DependentUpon>
  167. </Compile>
  168. <Compile Include="Asset\Styles\TCIRadioButton.cs" />
  169. <Compile Include="Common\BarControl\CPDFComparisonBarControl.xaml.cs">
  170. <DependentUpon>CPDFComparisonBarControl.xaml</DependentUpon>
  171. </Compile>
  172. <Compile Include="Common\BarControl\CPDFDigitalSignatureBarControl.xaml.cs">
  173. <DependentUpon>CPDFDigitalSignatureBarControl.xaml</DependentUpon>
  174. </Compile>
  175. <Compile Include="Common\BarControl\CPDFMeasureBarControl.xaml.cs">
  176. <DependentUpon>CPDFMeasureBarControl.xaml</DependentUpon>
  177. </Compile>
  178. <Compile Include="Common\BarControl\CPDFPageEditBarControl.xaml.cs">
  179. <DependentUpon>CPDFPageEditBarControl.xaml</DependentUpon>
  180. </Compile>
  181. <Compile Include="Common\BaseControl\CustomProgressBarControl.xaml.cs">
  182. <DependentUpon>CustomProgressBarControl.xaml</DependentUpon>
  183. </Compile>
  184. <Compile Include="Common\BaseControl\HomePageButton.cs" />
  185. <Compile Include="Common\BaseControl\MatrixRadioControl.xaml.cs">
  186. <DependentUpon>MatrixRadioControl.xaml</DependentUpon>
  187. </Compile>
  188. <Compile Include="Common\BaseControl\MessageBoxEx.cs" />
  189. <Compile Include="Common\BaseControl\PageNumberControl.xaml.cs">
  190. <DependentUpon>PageNumberControl.xaml</DependentUpon>
  191. </Compile>
  192. <Compile Include="Common\BaseControl\PopTip.cs" />
  193. <Compile Include="Common\BaseControl\WritableComboBox.xaml.cs">
  194. <DependentUpon>WritableComboBox.xaml</DependentUpon>
  195. </Compile>
  196. <Compile Include="Common\Convert\AntiVisibilityConverter.cs" />
  197. <Compile Include="Common\Convert\BoolToColorConverter.cs" />
  198. <Compile Include="Common\Convert\HeightToTopMarginConverter.cs" />
  199. <Compile Include="Common\Convert\HomePageFileListHeightConverter.cs" />
  200. <Compile Include="Common\Convert\HomePageHeightConverter.cs" />
  201. <Compile Include="Common\Convert\AndMultiBoolValueConverter.cs" />
  202. <Compile Include="Common\Convert\AnnotArgsTypeToVisibilityConverter.cs" />
  203. <Compile Include="Common\Convert\AntiBoolToVisibilityConverter.cs" />
  204. <Compile Include="Common\Convert\AntiStringToVisibilityConverter.cs" />
  205. <Compile Include="Common\Convert\CaptionHeightConverter.cs" />
  206. <Compile Include="Common\Convert\IntAndTagToBoolMultiBinding.cs" />
  207. <Compile Include="Common\Convert\LanguageResourceConverter.cs" />
  208. <Compile Include="Common\Convert\ReverseBoolConverter.cs" />
  209. <Compile Include="Common\Convert\ReverseVisibilityConverter.cs" />
  210. <Compile Include="Common\Convert\StringToVisibilityConverter.cs" />
  211. <Compile Include="Common\Convert\ShowDefaultCloseButtonConverter.cs" />
  212. <Compile Include="Common\Convert\ShowIconConverter.cs" />
  213. <Compile Include="Common\Convert\SubtractionConverter.cs" />
  214. <Compile Include="Common\Convert\TagToBoolConverter.cs" />
  215. <Compile Include="Common\Convert\WindowStateToPathConverter.cs" />
  216. <Compile Include="Common\Convert\WindowStateToThicknessConverter.cs" />
  217. <Compile Include="Common\CreateBlankPageSetting\CreateBlankPageSettingDialog.xaml.cs">
  218. <DependentUpon>CreateBlankPageSettingDialog.xaml</DependentUpon>
  219. </Compile>
  220. <Compile Include="Common\DeviceSerial\DeviceSerialControl.xaml.cs">
  221. <DependentUpon>DeviceSerialControl.xaml</DependentUpon>
  222. </Compile>
  223. <Compile Include="Common\Helper\FileHistoryHelper.cs" />
  224. <Compile Include="Common\Helper\LanguageHelper.cs" />
  225. <Compile Include="Common\Helper\PasswordHelper.cs" />
  226. <Compile Include="Common\PasswordControl\PasswordBoxControl.xaml.cs">
  227. <DependentUpon>PasswordBoxControl.xaml</DependentUpon>
  228. </Compile>
  229. <Compile Include="Common\HomePage\FeaturesListControl.xaml.cs">
  230. <DependentUpon>FeaturesListControl.xaml</DependentUpon>
  231. </Compile>
  232. <Compile Include="Common\HomePage\HomePageControl.xaml.cs">
  233. <DependentUpon>HomePageControl.xaml</DependentUpon>
  234. </Compile>
  235. <Compile Include="Common\HomePage\RecentFilesControl.xaml.cs">
  236. <DependentUpon>RecentFilesControl.xaml</DependentUpon>
  237. </Compile>
  238. <Compile Include="Common\PasswordControl\PasswordDialog.xaml.cs">
  239. <DependentUpon>PasswordDialog.xaml</DependentUpon>
  240. </Compile>
  241. <Compile Include="Common\PasswordControl\PasswordWindow.xaml.cs">
  242. <DependentUpon>PasswordWindow.xaml</DependentUpon>
  243. </Compile>
  244. <Compile Include="Common\PropertyControl\PDFArrow\CPDFArrowControl.xaml.cs">
  245. <DependentUpon>CPDFArrowControl.xaml</DependentUpon>
  246. </Compile>
  247. <Compile Include="Common\PropertyControl\PDFArrow\CPDFArrowUI.xaml.cs">
  248. <DependentUpon>CPDFArrowUI.xaml</DependentUpon>
  249. </Compile>
  250. <Compile Include="Annotation\PDFAnnotationPanel\PDFAnnotationControl\CPDFAnnotationControl.xaml.cs">
  251. <DependentUpon>CPDFAnnotationControl.xaml</DependentUpon>
  252. </Compile>
  253. <Compile Include="Annotation\PDFAnnotationData\CPDFAnnotationData.cs" />
  254. <Compile Include="Annotation\PDFAnnotationPanel\PDFAnnotationUI\CPDFLinkUI.xaml.cs">
  255. <DependentUpon>CPDFLinkUI.xaml</DependentUpon>
  256. </Compile>
  257. <Compile Include="Annotation\PDFAnnotationPanel\PDFAnnotationUI\CPDFMarkupUI.xaml.cs">
  258. <DependentUpon>CPDFMarkupUI.xaml</DependentUpon>
  259. </Compile>
  260. <Compile Include="Annotation\PDFAnnotationPanel\PDFAnnotationUI\CPDFShapeUI.xaml.cs">
  261. <DependentUpon>CPDFShapeUI.xaml</DependentUpon>
  262. </Compile>
  263. <Compile Include="Annotation\PDFAnnotationPanel\PDFAnnotationUI\CPDFStampUI.xaml.cs">
  264. <DependentUpon>CPDFStampUI.xaml</DependentUpon>
  265. </Compile>
  266. <Compile Include="Annotation\PDFAnnotationPanel\PDFAnnotationUI\CPDFCreateStampDialog.xaml.cs">
  267. <DependentUpon>CPDFCreateStampDialog.xaml</DependentUpon>
  268. </Compile>
  269. <Compile Include="Common\BarControl\CPDFBOTABarControl.xaml.cs">
  270. <DependentUpon>CPDFBOTABarControl.xaml</DependentUpon>
  271. </Compile>
  272. <Compile Include="Common\BarControl\CPDFAnnotationBarControl.xaml.cs">
  273. <DependentUpon>CPDFAnnotationBarControl.xaml</DependentUpon>
  274. </Compile>
  275. <Compile Include="Common\BarControl\CPDFTitleBarControl.xaml.cs">
  276. <DependentUpon>CPDFTitleBarControl.xaml</DependentUpon>
  277. </Compile>
  278. <Compile Include="Common\BaseControl\CustomSliderControl.xaml.cs">
  279. <DependentUpon>CustomSliderControl.xaml</DependentUpon>
  280. </Compile>
  281. <Compile Include="Common\BaseControl\NumericUpDownControl.xaml.cs">
  282. <DependentUpon>NumericUpDownControl.xaml</DependentUpon>
  283. </Compile>
  284. <Compile Include="Common\Convert\BoolToVisibilityConverter.cs" />
  285. <Compile Include="Common\Convert\ListViewWidthConverter.cs" />
  286. <Compile Include="Common\Convert\TextLengthToBoolConverter.cs" />
  287. <Compile Include="Common\Convert\TextLengthToVisibilityConverter.cs" />
  288. <Compile Include="Common\PropertyControl\ColorPickerControl.xaml.cs">
  289. <DependentUpon>ColorPickerControl.xaml</DependentUpon>
  290. </Compile>
  291. <Compile Include="Common\BaseControl\DropDownNumberBoxControl.xaml.cs">
  292. <DependentUpon>DropDownNumberBoxControl.xaml</DependentUpon>
  293. </Compile>
  294. <Compile Include="Common\PropertyControl\PDFFont\CPDFFontControl.xaml.cs">
  295. <DependentUpon>CPDFFontControl.xaml</DependentUpon>
  296. </Compile>
  297. <Compile Include="Common\PropertyControl\PDFFont\CPDFFontUI.xaml.cs">
  298. <DependentUpon>CPDFFontUI.xaml</DependentUpon>
  299. </Compile>
  300. <Compile Include="Common\PropertyControl\PDFLineStyle\CPDFCloudStyleControl.xaml.cs">
  301. <DependentUpon>CPDFCloudStyleControl.xaml</DependentUpon>
  302. </Compile>
  303. <Compile Include="Common\PropertyControl\PDFLocation\CPDFLocationControl.xaml.cs">
  304. <DependentUpon>CPDFLocationControl.xaml</DependentUpon>
  305. </Compile>
  306. <Compile Include="Common\PropertyControl\PDFLocation\CPDFRotationControl.xaml.cs">
  307. <DependentUpon>CPDFRotationControl.xaml</DependentUpon>
  308. </Compile>
  309. <Compile Include="Common\PropertyControl\PDFLocation\CPDFTileControl.xaml.cs">
  310. <DependentUpon>CPDFTileControl.xaml</DependentUpon>
  311. </Compile>
  312. <Compile Include="Common\PropertyControl\PDFThickness\CPDFThicknessControl.xaml.cs">
  313. <DependentUpon>CPDFThicknessControl.xaml</DependentUpon>
  314. </Compile>
  315. <Compile Include="Common\PropertyControl\PDFThickness\CPDThicknessUI.xaml.cs">
  316. <DependentUpon>CPDThicknessUI.xaml</DependentUpon>
  317. </Compile>
  318. <Compile Include="Common\PropertyControl\PDFLineStyle\CPDFLineStyleControl.xaml.cs">
  319. <DependentUpon>CPDFLineStyleControl.xaml</DependentUpon>
  320. </Compile>
  321. <Compile Include="Common\PropertyControl\PDFLineStyle\CPDFLineStyleUI.xaml.cs">
  322. <DependentUpon>CPDFLineStyleUI.xaml</DependentUpon>
  323. </Compile>
  324. <Compile Include="Common\PropertyControl\PDFOpacity\CPDFOpacityControl.xaml.cs">
  325. <DependentUpon>CPDFOpacityControl.xaml</DependentUpon>
  326. </Compile>
  327. <Compile Include="Common\PropertyControl\PDFOpacity\CPDFOpactiyUI.xaml.cs">
  328. <DependentUpon>CPDFOpactiyUI.xaml</DependentUpon>
  329. </Compile>
  330. <Compile Include="Common\PropertyControl\WritableComboBoxControl.xaml.cs">
  331. <DependentUpon>WritableComboBoxControl.xaml</DependentUpon>
  332. </Compile>
  333. <Compile Include="Comparison\CompareContentResultControl.xaml.cs">
  334. <DependentUpon>CompareContentResultControl.xaml</DependentUpon>
  335. </Compile>
  336. <Compile Include="Comparison\CompareOverwriteResultControl.xaml.cs">
  337. <DependentUpon>CompareOverwriteResultControl.xaml</DependentUpon>
  338. </Compile>
  339. <Compile Include="Comparison\CompareProgressControl.xaml.cs">
  340. <DependentUpon>CompareProgressControl.xaml</DependentUpon>
  341. </Compile>
  342. <Compile Include="Comparison\ComparisonControl.xaml.cs" />
  343. <Compile Include="Comparison\ComparisonSettingDialog.xaml.cs">
  344. <DependentUpon>ComparisonSettingDialog.xaml</DependentUpon>
  345. </Compile>
  346. <Compile Include="Compress\CompressDialog.xaml.cs">
  347. <DependentUpon>CompressDialog.xaml</DependentUpon>
  348. </Compile>
  349. <Compile Include="DigitalSignature\AddCertificationControl\AddCertificationControl.xaml.cs">
  350. <DependentUpon>AddCertificationControl.xaml</DependentUpon>
  351. </Compile>
  352. <Compile Include="DigitalSignature\AddCertificationControl\AddCertificationDialog.xaml.cs">
  353. <DependentUpon>AddCertificationDialog.xaml</DependentUpon>
  354. </Compile>
  355. <Compile Include="DigitalSignature\AddCertificationControl\AddCustomCertificationControl.xaml.cs">
  356. <DependentUpon>AddCustomCertificationControl.xaml</DependentUpon>
  357. </Compile>
  358. <Compile Include="DigitalSignature\AddCertificationControl\AddExistedCertificationControl.xaml.cs">
  359. <DependentUpon>AddExistedCertificationControl.xaml</DependentUpon>
  360. </Compile>
  361. <Compile Include="DigitalSignature\AddCertificationControl\SaveCertificateControl.xaml.cs">
  362. <DependentUpon>SaveCertificateControl.xaml</DependentUpon>
  363. </Compile>
  364. <Compile Include="DigitalSignature\DigitalSignatureControl\CPDFSignatureListControl.xaml.cs">
  365. <DependentUpon>CPDFSignatureListControl.xaml</DependentUpon>
  366. </Compile>
  367. <Compile Include="DigitalSignature\DigitalSignatureControl\DigitalSignatureControl.xaml.cs">
  368. <DependentUpon>DigitalSignatureControl.xaml</DependentUpon>
  369. </Compile>
  370. <Compile Include="DigitalSignature\FillDigitalSignatureControl\FillDigitalSignatureDialog.xaml.cs">
  371. <DependentUpon>FillDigitalSignatureDialog.xaml</DependentUpon>
  372. </Compile>
  373. <Compile Include="DigitalSignature\DigitalSignatureData\DigitalSignatureData.cs" />
  374. <Compile Include="DigitalSignature\FillDigitalSignatureControl\FillDigitalSignatureControl.xaml.cs">
  375. <DependentUpon>FillDigitalSignatureControl.xaml</DependentUpon>
  376. </Compile>
  377. <Compile Include="DigitalSignature\ViewCertificationControl\CertificateChainControl.xaml.cs">
  378. <DependentUpon>CertificateChainControl.xaml</DependentUpon>
  379. </Compile>
  380. <Compile Include="DigitalSignature\ViewCertificationControl\CertificateDetailControl.xaml.cs">
  381. <DependentUpon>CertificateDetailControl.xaml</DependentUpon>
  382. </Compile>
  383. <Compile Include="DigitalSignature\ViewCertificationControl\CertificateInfoControl.xaml.cs">
  384. <DependentUpon>CertificateInfoControl.xaml</DependentUpon>
  385. </Compile>
  386. <Compile Include="DigitalSignature\ViewCertificationControl\ConfidenceControl.xaml.cs">
  387. <DependentUpon>ConfidenceControl.xaml</DependentUpon>
  388. </Compile>
  389. <Compile Include="DigitalSignature\ViewCertificationControl\SummaryControl.xaml.cs">
  390. <DependentUpon>SummaryControl.xaml</DependentUpon>
  391. </Compile>
  392. <Compile Include="DigitalSignature\ViewCertificationControl\ViewCertificateDialog.xaml.cs">
  393. <DependentUpon>ViewCertificateDialog.xaml</DependentUpon>
  394. </Compile>
  395. <Compile Include="DigitalSignature\SignatureStatusBarControl\SignatureStatusBarControl.xaml.cs">
  396. <DependentUpon>SignatureStatusBarControl.xaml</DependentUpon>
  397. </Compile>
  398. <Compile Include="DigitalSignature\VerifyDigitalSignatureControl\DigitalSignatureInfoControl.xaml.cs">
  399. <DependentUpon>DigitalSignatureInfoControl.xaml</DependentUpon>
  400. </Compile>
  401. <Compile Include="DigitalSignature\VerifyDigitalSignatureControl\DigitalSignatureValiditySummaaryControl.xaml.cs">
  402. <DependentUpon>DigitalSignatureValiditySummaaryControl.xaml</DependentUpon>
  403. </Compile>
  404. <Compile Include="DigitalSignature\VerifyDigitalSignatureControl\VerifyDigitalSignatureControl.xaml.cs">
  405. <DependentUpon>VerifyDigitalSignatureControl.xaml</DependentUpon>
  406. </Compile>
  407. <Compile Include="Edit\ContentEditControl\ContentEditControl.xaml.cs">
  408. <DependentUpon>ContentEditControl.xaml</DependentUpon>
  409. </Compile>
  410. <Compile Include="Edit\PDFContentEditControl.xaml.cs">
  411. <DependentUpon>PDFContentEditControl.xaml</DependentUpon>
  412. </Compile>
  413. <Compile Include="Edit\PDFImageEdit\PDFImageEditControl\PDFImageEditControl.xaml.cs">
  414. <DependentUpon>PDFImageEditControl.xaml</DependentUpon>
  415. </Compile>
  416. <Compile Include="Edit\PDFImageEdit\PDFImageUI\CPDFImageFlipUI.xaml.cs">
  417. <DependentUpon>CPDFImageFlipUI.xaml</DependentUpon>
  418. </Compile>
  419. <Compile Include="Edit\PDFImageEdit\PDFImageUI\CPDFImageRotateUI.xaml.cs">
  420. <DependentUpon>CPDFImageRotateUI.xaml</DependentUpon>
  421. </Compile>
  422. <Compile Include="Edit\PDFPathEdit\PDFPathEditControl\PDFPathEditControl.xaml.cs">
  423. <DependentUpon>PDFPathEditControl.xaml</DependentUpon>
  424. </Compile>
  425. <Compile Include="Edit\PDFTextEdit\PDFTextEditUI\CPDFTextMarkupUI.xaml.cs">
  426. <DependentUpon>CPDFTextMarkupUI.xaml</DependentUpon>
  427. </Compile>
  428. <Compile Include="Edit\PDFTextEdit\PDFTextEditControl\PDFTextEditControl.xaml.cs">
  429. <DependentUpon>PDFTextEditControl.xaml</DependentUpon>
  430. </Compile>
  431. <Compile Include="Edit\PDFTextEdit\PDFTextEditUI\CPDFTextAlignUI.xaml.cs">
  432. <DependentUpon>CPDFTextAlignUI.xaml</DependentUpon>
  433. </Compile>
  434. <Compile Include="Edit\PDFTextEdit\PDFTextEditUI\CPDFTextStyleUI.xaml.cs">
  435. <DependentUpon>CPDFTextStyleUI.xaml</DependentUpon>
  436. </Compile>
  437. <Compile Include="Common\Helper\CommonHelper.cs" />
  438. <Compile Include="Common\BarControl\FormBarControl.xaml.cs">
  439. <DependentUpon>FormBarControl.xaml</DependentUpon>
  440. </Compile>
  441. <Compile Include="Printer\PrinterDialog.xaml.cs">
  442. <DependentUpon>PrinterDialog.xaml</DependentUpon>
  443. </Compile>
  444. <Compile Include="Printer\PrinterModel.cs" />
  445. <Compile Include="Printer\PrintHelper.cs" />
  446. <Compile Include="Printer\PrintPreviewControl.xaml.cs">
  447. <DependentUpon>PrintPreviewControl.xaml</DependentUpon>
  448. </Compile>
  449. <Compile Include="Security\Encryption\DecryptionDialog.xaml.cs">
  450. <DependentUpon>DecryptionDialog.xaml</DependentUpon>
  451. </Compile>
  452. <Compile Include="Security\Encryption\EncryptionDialog.xaml.cs">
  453. <DependentUpon>EncryptionDialog.xaml</DependentUpon>
  454. </Compile>
  455. <Compile Include="Security\Encryption\FileGridListControl.xaml.cs">
  456. <DependentUpon>FileGridListControl.xaml</DependentUpon>
  457. </Compile>
  458. <Compile Include="Security\Encryption\SecurityOperationTypeDialog.xaml.cs">
  459. <DependentUpon>SecurityOperationTypeDialog.xaml</DependentUpon>
  460. </Compile>
  461. <Compile Include="Security\Encryption\SetEncryptionControl.xaml.cs">
  462. <DependentUpon>SetEncryptionControl.xaml</DependentUpon>
  463. </Compile>
  464. <Compile Include="Form\FormControl\FormControl.xaml.cs">
  465. <DependentUpon>FormControl.xaml</DependentUpon>
  466. </Compile>
  467. <Compile Include="Form\FromPropertyControl.xaml.cs">
  468. <DependentUpon>FromPropertyControl.xaml</DependentUpon>
  469. </Compile>
  470. <Compile Include="Form\Property\CheckBoxProperty.xaml.cs">
  471. <DependentUpon>CheckBoxProperty.xaml</DependentUpon>
  472. </Compile>
  473. <Compile Include="Form\Property\ComboBoxProperty.xaml.cs">
  474. <DependentUpon>ComboBoxProperty.xaml</DependentUpon>
  475. </Compile>
  476. <Compile Include="Form\Property\ListBoxProperty.xaml.cs">
  477. <DependentUpon>ListBoxProperty.xaml</DependentUpon>
  478. </Compile>
  479. <Compile Include="Form\Property\PushButtonProperty.xaml.cs">
  480. <DependentUpon>PushButtonProperty.xaml</DependentUpon>
  481. </Compile>
  482. <Compile Include="Form\Property\RadioButtonProperty.xaml.cs">
  483. <DependentUpon>RadioButtonProperty.xaml</DependentUpon>
  484. </Compile>
  485. <Compile Include="Form\Property\SignatureProperty.xaml.cs">
  486. <DependentUpon>SignatureProperty.xaml</DependentUpon>
  487. </Compile>
  488. <Compile Include="Form\Property\TextFieldProperty.xaml.cs">
  489. <DependentUpon>TextFieldProperty.xaml</DependentUpon>
  490. </Compile>
  491. <Compile Include="Measure\MeasureControl.xaml.cs">
  492. <DependentUpon>MeasureControl.xaml</DependentUpon>
  493. </Compile>
  494. <Compile Include="Measure\MeasureInfoPanel.xaml.cs">
  495. <DependentUpon>MeasureInfoPanel.xaml</DependentUpon>
  496. </Compile>
  497. <Compile Include="Measure\MeasurePropertyControl.xaml.cs">
  498. <DependentUpon>MeasurePropertyControl.xaml</DependentUpon>
  499. </Compile>
  500. <Compile Include="Measure\MeasureSettingPanel.xaml.cs">
  501. <DependentUpon>MeasureSettingPanel.xaml</DependentUpon>
  502. </Compile>
  503. <Compile Include="Measure\Property\StraightnessProperty.xaml.cs">
  504. <DependentUpon>StraightnessProperty.xaml</DependentUpon>
  505. </Compile>
  506. <Compile Include="Measure\Property\PolygonalProperty.xaml.cs">
  507. <DependentUpon>PolygonalProperty.xaml</DependentUpon>
  508. </Compile>
  509. <Compile Include="Measure\Property\MultilineProperty.xaml.cs">
  510. <DependentUpon>MultilineProperty.xaml</DependentUpon>
  511. </Compile>
  512. <Compile Include="PageEdit\PageEditControl\PageEditControl.xaml.cs">
  513. <DependentUpon>PageEditControl.xaml</DependentUpon>
  514. </Compile>
  515. <Compile Include="PageEdit\PDFPageEdit\CPDFPageEditControl.xaml.cs">
  516. <DependentUpon>CPDFPageEditControl.xaml</DependentUpon>
  517. </Compile>
  518. <Compile Include="PageEdit\PDFPageExtract\CPDFPageExtractUI.xaml.cs">
  519. <DependentUpon>CPDFPageExtractUI.xaml</DependentUpon>
  520. </Compile>
  521. <Compile Include="PageEdit\PDFPageExtract\CPDFPageExtractWindow.xaml.cs">
  522. <DependentUpon>CPDFPageExtractWindow.xaml</DependentUpon>
  523. </Compile>
  524. <Compile Include="PageEdit\PDFPageInsert\CPDFPageInsertUI.xaml.cs">
  525. <DependentUpon>CPDFPageInsertUI.xaml</DependentUpon>
  526. </Compile>
  527. <Compile Include="PageEdit\PDFPageInsert\CPDFPageInsertWindow.xaml.cs">
  528. <DependentUpon>CPDFPageInsertWindow.xaml</DependentUpon>
  529. </Compile>
  530. <Compile Include="PDFView\PDFBookmark\PDFBookmarkControl\CPDFBookmarkControl.xaml.cs">
  531. <DependentUpon>CPDFBookmarkControl.xaml</DependentUpon>
  532. </Compile>
  533. <Compile Include="PDFView\PDFBookmark\PDFBookmarkUI\CPDFBookmarkAddUI.xaml.cs">
  534. <DependentUpon>CPDFBookmarkAddUI.xaml</DependentUpon>
  535. </Compile>
  536. <Compile Include="PDFView\PDFBookmark\PDFBookmarkUI\CPDFBookmarkResultUI.xaml.cs">
  537. <DependentUpon>CPDFBookmarkResultUI.xaml</DependentUpon>
  538. </Compile>
  539. <Compile Include="PDFView\PDFDisplaySettings\PDFDisplaySettingsControl\CPDFDisplaySettingsControl.xaml.cs">
  540. <DependentUpon>CPDFDisplaySettingsControl.xaml</DependentUpon>
  541. </Compile>
  542. <Compile Include="PDFView\PDFDisplaySettings\PDFDisplaySettingsControl\CPDFViewModeControl.xaml.cs">
  543. <DependentUpon>CPDFViewModeControl.xaml</DependentUpon>
  544. </Compile>
  545. <Compile Include="PDFView\PDFInfo\CPDFInfoControl.xaml.cs">
  546. <DependentUpon>CPDFInfoControl.xaml</DependentUpon>
  547. </Compile>
  548. <Compile Include="PDFView\PDFOutline\PDFOutlineControl\CPDFOutlineControl.xaml.cs">
  549. <DependentUpon>CPDFOutlineControl.xaml</DependentUpon>
  550. </Compile>
  551. <Compile Include="PDFView\PDFOutline\PDFOutlineUI\CPDFOutlineUI.xaml.cs">
  552. <DependentUpon>CPDFOutlineUI.xaml</DependentUpon>
  553. </Compile>
  554. <Compile Include="PDFView\PDFSearch\PDFSearchUI\CPDFSearchInputUI.xaml.cs">
  555. <DependentUpon>CPDFSearchInputUI.xaml</DependentUpon>
  556. </Compile>
  557. <Compile Include="PDFView\PDFSearch\PDFSearchUI\CPDFSearchResultUI.xaml.cs">
  558. <DependentUpon>CPDFSearchResultUI.xaml</DependentUpon>
  559. </Compile>
  560. <Compile Include="PDFView\PDFSearch\PDFSearchControl\CPDFSearchControl.xaml.cs">
  561. <DependentUpon>CPDFSearchControl.xaml</DependentUpon>
  562. </Compile>
  563. <Compile Include="PDFView\PDFThumbnail\PDFThumbnailControl\CPdfThumbnailControl.xaml.cs">
  564. <DependentUpon>CPdfThumbnailControl.xaml</DependentUpon>
  565. </Compile>
  566. <Compile Include="PDFView\PDFThumbnail\PDFThumbnailUI\CPdfThumbnailUI.xaml.cs">
  567. <DependentUpon>CPdfThumbnailUI.xaml</DependentUpon>
  568. </Compile>
  569. <Compile Include="PDFView\PDFDisplaySettings\PDFDisplaySettingsControl\CPDFDrawModeControl.xaml.cs">
  570. <DependentUpon>CPDFDrawModeControl.xaml</DependentUpon>
  571. </Compile>
  572. <Compile Include="PDFView\PDFInfo\CPDFAbstractInfoControl.xaml.cs">
  573. <DependentUpon>CPDFAbstractInfoControl.xaml</DependentUpon>
  574. </Compile>
  575. <Compile Include="PDFView\PDFInfo\CPDFCreateInfoControl.xaml.cs">
  576. <DependentUpon>CPDFCreateInfoControl.xaml</DependentUpon>
  577. </Compile>
  578. <Compile Include="PDFView\PDFInfo\CPDFSecurityInfoControl.xaml.cs">
  579. <DependentUpon>CPDFSecurityInfoControl.xaml</DependentUpon>
  580. </Compile>
  581. <Compile Include="PDFView\PDFScaling\PDFScalingControl\CPDFScalingControl.xaml.cs">
  582. <DependentUpon>CPDFScalingControl.xaml</DependentUpon>
  583. </Compile>
  584. <Compile Include="PDFView\PDFViewControl\PDFViewControl.xaml.cs">
  585. <DependentUpon>PDFViewControl.xaml</DependentUpon>
  586. </Compile>
  587. <Compile Include="PDFView\RegularViewerControl.xaml.cs">
  588. <DependentUpon>RegularViewerControl.xaml</DependentUpon>
  589. </Compile>
  590. <Compile Include="Properties\AssemblyInfo.cs">
  591. <SubType>Code</SubType>
  592. </Compile>
  593. <Compile Include="Properties\Resources.Designer.cs">
  594. <AutoGen>True</AutoGen>
  595. <DesignTime>True</DesignTime>
  596. <DependentUpon>Resources.resx</DependentUpon>
  597. </Compile>
  598. <Compile Include="Properties\Settings.Designer.cs">
  599. <AutoGen>True</AutoGen>
  600. <DependentUpon>Settings.settings</DependentUpon>
  601. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  602. </Compile>
  603. <Compile Include="PDFView\PDFDisplaySettings\PDFDisplaySettingsUI\CPDFViewModeUI.xaml.cs">
  604. <DependentUpon>CPDFViewModeUI.xaml</DependentUpon>
  605. </Compile>
  606. <Compile Include="PDFView\PDFDisplaySettings\PDFDisplaySettingsUI\CPDFDrawModeUI.xaml.cs">
  607. <DependentUpon>CPDFDrawModeUI.xaml</DependentUpon>
  608. </Compile>
  609. <Compile Include="PDFView\PDFScaling\PDFScalingUI\CPDFScalingUI.xaml.cs">
  610. <DependentUpon>CPDFScalingUI.xaml</DependentUpon>
  611. </Compile>
  612. <Compile Include="Snapshot\SnapshotMenu.xaml.cs">
  613. <DependentUpon>SnapshotMenu.xaml</DependentUpon>
  614. </Compile>
  615. <Compile Include="Strings\Compare.Designer.cs">
  616. <DesignTime>True</DesignTime>
  617. <AutoGen>True</AutoGen>
  618. <DependentUpon>Compare.resx</DependentUpon>
  619. </Compile>
  620. <Compile Include="Strings\Compress.Designer.cs">
  621. <AutoGen>True</AutoGen>
  622. <DesignTime>True</DesignTime>
  623. <DependentUpon>Compress.resx</DependentUpon>
  624. </Compile>
  625. <Compile Include="Watermark\AddWatermark\FileGridListWithPageRangeControl.xaml.cs">
  626. <DependentUpon>FileGridListWithPageRangeControl.xaml</DependentUpon>
  627. </Compile>
  628. <Compile Include="Watermark\AddWatermark\PageRangeDialog.xaml.cs">
  629. <DependentUpon>PageRangeDialog.xaml</DependentUpon>
  630. </Compile>
  631. <Compile Include="Common\PreviewControl\PreviewControl.xaml.cs">
  632. <DependentUpon>PreviewControl.xaml</DependentUpon>
  633. </Compile>
  634. <Compile Include="Watermark\RemoveWatermark\RemoveWatermarkListControl.xaml.cs">
  635. <DependentUpon>RemoveWatermarkListControl.xaml</DependentUpon>
  636. </Compile>
  637. <Compile Include="Watermark\RemoveWatermark\RemoveWatermarkListDialog.xaml.cs">
  638. <DependentUpon>RemoveWatermarkListDialog.xaml</DependentUpon>
  639. </Compile>
  640. <Compile Include="Watermark\WatermarkData.cs" />
  641. <Compile Include="Watermark\AddWatermark\WatermarkDialog.xaml.cs">
  642. <DependentUpon>WatermarkDialog.xaml</DependentUpon>
  643. </Compile>
  644. <Compile Include="Watermark\AddWatermark\WatermarkListDialog.xaml.cs">
  645. <DependentUpon>WatermarkListDialog.xaml</DependentUpon>
  646. </Compile>
  647. <Compile Include="Watermark\WatermarkOperationTypeDialog.xaml.cs">
  648. <DependentUpon>WatermarkOperationTypeDialog.xaml</DependentUpon>
  649. </Compile>
  650. <Compile Include="Watermark\AddWatermark\WatermarkPreviewControl.cs" />
  651. <Compile Include="Strings\Bota.Designer.cs">
  652. <DesignTime>True</DesignTime>
  653. <AutoGen>True</AutoGen>
  654. <DependentUpon>Bota.resx</DependentUpon>
  655. </Compile>
  656. <Compile Include="Strings\Common.Designer.cs">
  657. <DesignTime>True</DesignTime>
  658. <AutoGen>True</AutoGen>
  659. <DependentUpon>Common.resx</DependentUpon>
  660. </Compile>
  661. <Compile Include="Strings\DocEditor.Designer.cs">
  662. <DesignTime>True</DesignTime>
  663. <AutoGen>True</AutoGen>
  664. <DependentUpon>DocEditor.resx</DependentUpon>
  665. </Compile>
  666. <Compile Include="Strings\DocInfo.Designer.cs">
  667. <DesignTime>True</DesignTime>
  668. <AutoGen>True</AutoGen>
  669. <DependentUpon>DocInfo.resx</DependentUpon>
  670. </Compile>
  671. <Compile Include="Strings\PropertyPanel.Designer.cs">
  672. <DesignTime>True</DesignTime>
  673. <AutoGen>True</AutoGen>
  674. <DependentUpon>PropertyPanel.resx</DependentUpon>
  675. </Compile>
  676. <Compile Include="Strings\Security.Designer.cs">
  677. <DesignTime>True</DesignTime>
  678. <AutoGen>True</AutoGen>
  679. <DependentUpon>Security.resx</DependentUpon>
  680. </Compile>
  681. <Compile Include="Strings\Signature.Designer.cs">
  682. <DesignTime>True</DesignTime>
  683. <AutoGen>True</AutoGen>
  684. <DependentUpon>Signature.resx</DependentUpon>
  685. </Compile>
  686. <Compile Include="Strings\ToolBar.Designer.cs">
  687. <DesignTime>True</DesignTime>
  688. <AutoGen>True</AutoGen>
  689. <DependentUpon>ToolBar.resx</DependentUpon>
  690. </Compile>
  691. <EmbeddedResource Include="Properties\Resources.resx">
  692. <Generator>ResXFileCodeGenerator</Generator>
  693. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  694. </EmbeddedResource>
  695. <EmbeddedResource Include="Strings\Bota.resx">
  696. <Generator>ResXFileCodeGenerator</Generator>
  697. <LastGenOutput>Bota.Designer.cs</LastGenOutput>
  698. </EmbeddedResource>
  699. <EmbeddedResource Include="Strings\Bota.zh.resx">
  700. <DependentUpon>Bota.resx</DependentUpon>
  701. </EmbeddedResource>
  702. <EmbeddedResource Include="Strings\Common.resx">
  703. <Generator>ResXFileCodeGenerator</Generator>
  704. <LastGenOutput>Common.Designer.cs</LastGenOutput>
  705. </EmbeddedResource>
  706. <EmbeddedResource Include="Strings\Common.zh.resx">
  707. <DependentUpon>Common.resx</DependentUpon>
  708. </EmbeddedResource>
  709. <EmbeddedResource Include="Strings\Compare.resx">
  710. <Generator>ResXFileCodeGenerator</Generator>
  711. <LastGenOutput>Compare.Designer.cs</LastGenOutput>
  712. </EmbeddedResource>
  713. <EmbeddedResource Include="Strings\Compare.zh.resx">
  714. <DependentUpon>Compare.resx</DependentUpon>
  715. </EmbeddedResource>
  716. <EmbeddedResource Include="Strings\Compress.resx">
  717. <Generator>ResXFileCodeGenerator</Generator>
  718. <LastGenOutput>Compress.Designer.cs</LastGenOutput>
  719. </EmbeddedResource>
  720. <EmbeddedResource Include="Strings\Compress.zh.resx">
  721. <DependentUpon>Compress.resx</DependentUpon>
  722. </EmbeddedResource>
  723. <EmbeddedResource Include="Strings\DocEditor.resx">
  724. <Generator>ResXFileCodeGenerator</Generator>
  725. <LastGenOutput>DocEditor.Designer.cs</LastGenOutput>
  726. </EmbeddedResource>
  727. <EmbeddedResource Include="Strings\DocEditor.zh.resx">
  728. <DependentUpon>DocEditor.resx</DependentUpon>
  729. </EmbeddedResource>
  730. <EmbeddedResource Include="Strings\DocInfo.resx">
  731. <Generator>ResXFileCodeGenerator</Generator>
  732. <LastGenOutput>DocInfo.Designer.cs</LastGenOutput>
  733. </EmbeddedResource>
  734. <EmbeddedResource Include="Strings\DocInfo.zh.resx">
  735. <DependentUpon>DocInfo.resx</DependentUpon>
  736. </EmbeddedResource>
  737. <EmbeddedResource Include="Strings\PropertyPanel.resx">
  738. <Generator>ResXFileCodeGenerator</Generator>
  739. <LastGenOutput>PropertyPanel.Designer.cs</LastGenOutput>
  740. </EmbeddedResource>
  741. <EmbeddedResource Include="Strings\PropertyPanel.zh.resx">
  742. <DependentUpon>PropertyPanel.resx</DependentUpon>
  743. </EmbeddedResource>
  744. <EmbeddedResource Include="Strings\Security.resx">
  745. <Generator>ResXFileCodeGenerator</Generator>
  746. <LastGenOutput>Security.Designer.cs</LastGenOutput>
  747. <SubType>Designer</SubType>
  748. </EmbeddedResource>
  749. <EmbeddedResource Include="Strings\Security.zh.resx">
  750. <DependentUpon>Security.resx</DependentUpon>
  751. </EmbeddedResource>
  752. <EmbeddedResource Include="Strings\Signature.resx">
  753. <Generator>ResXFileCodeGenerator</Generator>
  754. <LastGenOutput>Signature.Designer.cs</LastGenOutput>
  755. <SubType>Designer</SubType>
  756. </EmbeddedResource>
  757. <EmbeddedResource Include="Strings\Signature.zh.resx">
  758. <DependentUpon>Signature.resx</DependentUpon>
  759. </EmbeddedResource>
  760. <EmbeddedResource Include="Strings\ToolBar.resx">
  761. <Generator>ResXFileCodeGenerator</Generator>
  762. <LastGenOutput>ToolBar.Designer.cs</LastGenOutput>
  763. </EmbeddedResource>
  764. <EmbeddedResource Include="Strings\ToolBar.zh.resx">
  765. <DependentUpon>ToolBar.resx</DependentUpon>
  766. </EmbeddedResource>
  767. <None Include="app.config" />
  768. <None Include="packages.config" />
  769. <None Include="Properties\Settings.settings">
  770. <Generator>SettingsSingleFileGenerator</Generator>
  771. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  772. </None>
  773. <None Update="Strings\Bota.zh.resx">
  774. <DependentUpon>Bota.resx</DependentUpon>
  775. </None>
  776. <None Update="Strings\Common.zh.resx">
  777. <DependentUpon>Common.resx</DependentUpon>
  778. </None>
  779. <None Update="Strings\PropertyPanel.zh.resx">
  780. <DependentUpon>PropertyPanel.resx</DependentUpon>
  781. </None>
  782. <None Update="Strings\ToolBar.zh.resx">
  783. <DependentUpon>ToolBar.resx</DependentUpon>
  784. </None>
  785. </ItemGroup>
  786. <ItemGroup>
  787. <Resource Include="Asset\Resource\Annotation\StampIcons\Accepted.png" />
  788. <Resource Include="Asset\Resource\Annotation\StampIcons\Approved.png" />
  789. <Resource Include="Asset\Resource\Annotation\StampIcons\Completed.png" />
  790. <Resource Include="Asset\Resource\Annotation\StampIcons\Confidential.png" />
  791. <Resource Include="Asset\Resource\Annotation\StampIcons\Draft.png" />
  792. <Resource Include="Asset\Resource\Annotation\StampIcons\Empty_stamp.png" />
  793. <Resource Include="Asset\Resource\Annotation\StampIcons\Final.png" />
  794. <Resource Include="Asset\Resource\Annotation\StampIcons\ForComment.png" />
  795. <Resource Include="Asset\Resource\Annotation\StampIcons\ForPublicRelease.png" />
  796. <Resource Include="Asset\Resource\Annotation\StampIcons\InformationOnly.png" />
  797. <Resource Include="Asset\Resource\Annotation\StampIcons\InitialHere.png" />
  798. <Resource Include="Asset\Resource\Annotation\StampIcons\NotApproved.png" />
  799. <Resource Include="Asset\Resource\Annotation\StampIcons\NotForPublicRelease.png" />
  800. <Resource Include="Asset\Resource\Annotation\StampIcons\PreliminaryResults.png" />
  801. <Resource Include="Asset\Resource\Annotation\StampIcons\PrivateMark1.png" />
  802. <Resource Include="Asset\Resource\Annotation\StampIcons\PrivateMark2.png" />
  803. <Resource Include="Asset\Resource\Annotation\StampIcons\PrivateMark3.png" />
  804. <Resource Include="Asset\Resource\Annotation\StampIcons\Rejected.png" />
  805. <Resource Include="Asset\Resource\Annotation\StampIcons\revised.png" />
  806. <Resource Include="Asset\Resource\Annotation\StampIcons\SignHere.png" />
  807. <Resource Include="Asset\Resource\Annotation\StampIcons\Void.png" />
  808. <Resource Include="Asset\Resource\Annotation\StampIcons\Witness.png" />
  809. <Resource Include="Asset\Resource\Annotation\Signature\Dropimage.png" />
  810. <Resource Include="Asset\Resource\Color_btn_ic.png" />
  811. <Resource Include="Asset\Resource\Transparent_btn_ic.png" />
  812. <Resource Include="Asset\Resource\warn.png" />
  813. <Resource Include="ComPDFKit_Logo.ico" />
  814. <Resource Include="Asset\Resource\Logo.png" />
  815. <Resource Include="Asset\Resource\SoundAnnot.png" />
  816. <EmbeddedResource Include="Asset\Cursor\AnnotEdit.cur">
  817. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  818. </EmbeddedResource>
  819. <EmbeddedResource Include="Asset\Cursor\PanTool.cur">
  820. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  821. </EmbeddedResource>
  822. <EmbeddedResource Include="Asset\Cursor\PanTool2.cur">
  823. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  824. </EmbeddedResource>
  825. <Content Include="Asset\Resource\CompareEmpty.png" />
  826. <Content Include="VirtualizingWrapPanel.dll">
  827. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  828. </Content>
  829. </ItemGroup>
  830. <ItemGroup>
  831. <Page Include="Annotation\AnnotationControl\AnnotationControl.xaml">
  832. <SubType>Designer</SubType>
  833. </Page>
  834. <Page Include="Annotation\CPDFAnnotationPreviewerControl.xaml">
  835. <SubType>Designer</SubType>
  836. <Generator>MSBuild:Compile</Generator>
  837. </Page>
  838. <Page Include="Annotation\PDFAnnotationList\PDFAnnotationListControl\CPDFAnnotationListControl.xaml">
  839. <SubType>Designer</SubType>
  840. <Generator>MSBuild:Compile</Generator>
  841. </Page>
  842. <Page Include="Annotation\PDFAnnotationList\PDFAnnotationListUI\AnnotationReplyListControl.xaml">
  843. <SubType>Designer</SubType>
  844. <Generator>MSBuild:Compile</Generator>
  845. </Page>
  846. <Page Include="Annotation\PDFAnnotationList\PDFAnnotationListUI\CPDFAnnotationListUI.xaml">
  847. <SubType>Designer</SubType>
  848. <Generator>MSBuild:Compile</Generator>
  849. </Page>
  850. <Page Include="Annotation\PDFAnnotationList\PDFAnnotationListUI\ReplyStatusControl.xaml">
  851. <SubType>Designer</SubType>
  852. <Generator>MSBuild:Compile</Generator>
  853. </Page>
  854. <Page Include="Annotation\PDFAnnotationPanel\PDFAnnotationUI\CPDFCloudUI.xaml">
  855. <SubType>Designer</SubType>
  856. <Generator>MSBuild:Compile</Generator>
  857. </Page>
  858. <Page Include="Annotation\PDFAnnotationPanel\PDFAnnotationUI\CPDFFreehandUI.xaml">
  859. <SubType>Designer</SubType>
  860. <Generator>MSBuild:Compile</Generator>
  861. </Page>
  862. <Page Include="Annotation\PDFAnnotationPanel\PDFAnnotationUI\CPDFFreeTextUI.xaml">
  863. <SubType>Designer</SubType>
  864. <Generator>MSBuild:Compile</Generator>
  865. </Page>
  866. <Page Include="Annotation\PDFAnnotationPanel\PDFAnnotationUI\CPDFTempStampUI.xaml">
  867. <SubType>Designer</SubType>
  868. <Generator>MSBuild:Compile</Generator>
  869. </Page>
  870. <Page Include="Annotation\PDFAnnotationPanel\PDFAnnotationUI\CPDFNoteUI.xaml">
  871. <SubType>Designer</SubType>
  872. <Generator>MSBuild:Compile</Generator>
  873. </Page>
  874. <Page Include="Annotation\PDFAnnotationPanel\PDFAnnotationUI\CPDFSignatureUI.xaml">
  875. <SubType>Designer</SubType>
  876. <Generator>MSBuild:Compile</Generator>
  877. </Page>
  878. <Page Include="Annotation\PDFAnnotationPanel\PDFAnnotationUI\CPDFCreateSignatureDialog.xaml">
  879. <SubType>Designer</SubType>
  880. <Generator>MSBuild:Compile</Generator>
  881. </Page>
  882. <Page Include="Annotation\PDFAnnotationPanel\PDFAnnotationUI\CPDFDeleteDialog.xaml">
  883. <SubType>Designer</SubType>
  884. <Generator>MSBuild:Compile</Generator>
  885. </Page>
  886. <Page Include="Asset\Styles\ButtonStyle.xaml">
  887. <Generator>MSBuild:Compile</Generator>
  888. <SubType>Designer</SubType>
  889. </Page>
  890. <Page Include="Asset\Styles\ComboBoxStyle.xaml">
  891. <Generator>MSBuild:Compile</Generator>
  892. <SubType>Designer</SubType>
  893. </Page>
  894. <Page Include="Asset\Styles\EyeCheckBoxStyle.xaml" />
  895. <Page Include="Asset\Styles\ListBoxItemStyle.xaml">
  896. <Generator>MSBuild:Compile</Generator>
  897. <SubType>Designer</SubType>
  898. </Page>
  899. <Page Include="Asset\Styles\MenuItemStyle.xaml">
  900. <Generator>MSBuild:Compile</Generator>
  901. <SubType>Designer</SubType>
  902. </Page>
  903. <Page Include="Asset\Styles\OtherControlStyle.xaml" />
  904. <Page Include="Asset\Styles\RadioButtonStyle.xaml">
  905. <SubType>Designer</SubType>
  906. <Generator>MSBuild:Compile</Generator>
  907. </Page>
  908. <Page Include="Asset\Styles\RoundCornerPasswordBoxStyle.xaml" />
  909. <Page Include="Asset\Styles\RoundCornerTextBoxStyle.xaml" />
  910. <Page Include="Asset\Styles\SliderStyle.xaml">
  911. <Generator>MSBuild:Compile</Generator>
  912. <SubType>Designer</SubType>
  913. </Page>
  914. <Page Include="Asset\Styles\TabControlStyle.xaml">
  915. <Generator>MSBuild:Compile</Generator>
  916. <SubType>Designer</SubType>
  917. </Page>
  918. <Page Include="Asset\Styles\TabItemStyle.xaml">
  919. <Generator>MSBuild:Compile</Generator>
  920. <SubType>Designer</SubType>
  921. </Page>
  922. <Page Include="Asset\Styles\TextBoxStyle.xaml">
  923. <Generator>MSBuild:Compile</Generator>
  924. <SubType>Designer</SubType>
  925. </Page>
  926. <Page Include="Asset\Styles\ToggleButtonStyle.xaml">
  927. <Generator>MSBuild:Compile</Generator>
  928. <SubType>Designer</SubType>
  929. </Page>
  930. <Page Include="Asset\Styles\TreeViewItemStyle.xaml">
  931. <Generator>MSBuild:Compile</Generator>
  932. <SubType>Designer</SubType>
  933. </Page>
  934. <Page Include="Asset\Styles\WindowStyle.xaml">
  935. <Generator>MSBuild:Compile</Generator>
  936. <SubType>Designer</SubType>
  937. </Page>
  938. <Page Include="Common\BarControl\CPDFComparisonBarControl.xaml" />
  939. <Page Include="Common\BarControl\CPDFDigitalSignatureBarControl.xaml">
  940. <SubType>Designer</SubType>
  941. <Generator>MSBuild:Compile</Generator>
  942. </Page>
  943. <Page Include="Common\BarControl\CPDFMeasureBarControl.xaml">
  944. <SubType>Designer</SubType>
  945. <Generator>MSBuild:Compile</Generator>
  946. </Page>
  947. <Page Include="Common\BarControl\CPDFPageEditBarControl.xaml">
  948. <SubType>Designer</SubType>
  949. <Generator>MSBuild:Compile</Generator>
  950. </Page>
  951. <Page Include="Common\BaseControl\CustomProgressBarControl.xaml" />
  952. <Page Include="Common\BaseControl\MatrixRadioControl.xaml">
  953. <SubType>Designer</SubType>
  954. <Generator>MSBuild:Compile</Generator>
  955. </Page>
  956. <Page Include="Common\BaseControl\PageNumberControl.xaml">
  957. <Generator>MSBuild:Compile</Generator>
  958. <SubType>Designer</SubType>
  959. </Page>
  960. <Page Include="Common\BaseControl\WritableComboBox.xaml" />
  961. <Page Include="Common\CreateBlankPageSetting\CreateBlankPageSettingDialog.xaml" />
  962. <Page Include="Common\DeviceSerial\DeviceSerialControl.xaml" />
  963. <Page Include="Common\PasswordControl\PasswordBoxControl.xaml" />
  964. <Page Include="Common\HomePage\FeaturesListControl.xaml">
  965. <SubType>Designer</SubType>
  966. <Generator>MSBuild:Compile</Generator>
  967. </Page>
  968. <Page Include="Common\HomePage\HomePageControl.xaml">
  969. <SubType>Designer</SubType>
  970. <Generator>MSBuild:Compile</Generator>
  971. </Page>
  972. <Page Include="Common\HomePage\RecentFilesControl.xaml">
  973. <SubType>Designer</SubType>
  974. <Generator>MSBuild:Compile</Generator>
  975. </Page>
  976. <Page Include="Common\PasswordControl\PasswordDialog.xaml">
  977. <Generator>MSBuild:Compile</Generator>
  978. <SubType>Designer</SubType>
  979. </Page>
  980. <Page Include="Common\PasswordControl\PasswordWindow.xaml">
  981. <SubType>Designer</SubType>
  982. <Generator>MSBuild:Compile</Generator>
  983. </Page>
  984. <Page Include="Common\PropertyControl\PDFArrow\CPDFArrowControl.xaml">
  985. <SubType>Designer</SubType>
  986. <Generator>MSBuild:Compile</Generator>
  987. </Page>
  988. <Page Include="Common\PropertyControl\PDFArrow\CPDFArrowUI.xaml">
  989. <SubType>Designer</SubType>
  990. <Generator>MSBuild:Compile</Generator>
  991. </Page>
  992. <Page Include="Annotation\PDFAnnotationPanel\PDFAnnotationControl\CPDFAnnotationControl.xaml">
  993. <SubType>Designer</SubType>
  994. <Generator>MSBuild:Compile</Generator>
  995. </Page>
  996. <Page Include="Annotation\PDFAnnotationPanel\PDFAnnotationUI\CPDFLinkUI.xaml">
  997. <SubType>Designer</SubType>
  998. <Generator>MSBuild:Compile</Generator>
  999. </Page>
  1000. <Page Include="Annotation\PDFAnnotationPanel\PDFAnnotationUI\CPDFMarkupUI.xaml">
  1001. <SubType>Designer</SubType>
  1002. <Generator>MSBuild:Compile</Generator>
  1003. </Page>
  1004. <Page Include="Annotation\PDFAnnotationPanel\PDFAnnotationUI\CPDFShapeUI.xaml">
  1005. <SubType>Designer</SubType>
  1006. <Generator>MSBuild:Compile</Generator>
  1007. </Page>
  1008. <Page Include="Annotation\PDFAnnotationPanel\PDFAnnotationUI\CPDFStampUI.xaml">
  1009. <SubType>Designer</SubType>
  1010. <Generator>MSBuild:Compile</Generator>
  1011. </Page>
  1012. <Page Include="Annotation\PDFAnnotationPanel\PDFAnnotationUI\CPDFCreateStampDialog.xaml">
  1013. <SubType>Designer</SubType>
  1014. <Generator>MSBuild:Compile</Generator>
  1015. </Page>
  1016. <Page Include="Asset\Themes\Global.xaml">
  1017. <SubType>Designer</SubType>
  1018. <Generator>MSBuild:Compile</Generator>
  1019. </Page>
  1020. <Page Include="Common\BarControl\CPDFBOTABarControl.xaml">
  1021. <SubType>Designer</SubType>
  1022. <Generator>MSBuild:Compile</Generator>
  1023. </Page>
  1024. <Page Include="Common\BarControl\CPDFAnnotationBarControl.xaml">
  1025. <SubType>Designer</SubType>
  1026. <Generator>MSBuild:Compile</Generator>
  1027. </Page>
  1028. <Page Include="Common\BarControl\CPDFTitleBarControl.xaml">
  1029. <SubType>Designer</SubType>
  1030. <Generator>MSBuild:Compile</Generator>
  1031. </Page>
  1032. <Page Include="Common\BaseControl\CustomSliderControl.xaml">
  1033. <SubType>Designer</SubType>
  1034. <Generator>MSBuild:Compile</Generator>
  1035. </Page>
  1036. <Page Include="Common\BaseControl\NumericUpDownControl.xaml">
  1037. <SubType>Designer</SubType>
  1038. <Generator>MSBuild:Compile</Generator>
  1039. </Page>
  1040. <Page Include="Common\PropertyControl\ColorPickerControl.xaml">
  1041. <SubType>Designer</SubType>
  1042. <Generator>MSBuild:Compile</Generator>
  1043. </Page>
  1044. <Page Include="Common\BaseControl\DropDownNumberBoxControl.xaml">
  1045. <SubType>Designer</SubType>
  1046. <Generator>MSBuild:Compile</Generator>
  1047. </Page>
  1048. <Page Include="Common\PropertyControl\PDFFont\CPDFFontControl.xaml">
  1049. <SubType>Designer</SubType>
  1050. <Generator>MSBuild:Compile</Generator>
  1051. </Page>
  1052. <Page Include="Common\PropertyControl\PDFFont\CPDFFontUI.xaml">
  1053. <SubType>Designer</SubType>
  1054. <Generator>MSBuild:Compile</Generator>
  1055. </Page>
  1056. <Page Include="Common\PropertyControl\PDFLineStyle\CPDFCloudStyleControl.xaml">
  1057. <SubType>Designer</SubType>
  1058. <Generator>MSBuild:Compile</Generator>
  1059. </Page>
  1060. <Page Include="Common\PropertyControl\PDFLocation\CPDFLocationControl.xaml">
  1061. <SubType>Designer</SubType>
  1062. <Generator>MSBuild:Compile</Generator>
  1063. </Page>
  1064. <Page Include="Common\PropertyControl\PDFLocation\CPDFRotationControl.xaml">
  1065. <SubType>Designer</SubType>
  1066. <Generator>MSBuild:Compile</Generator>
  1067. </Page>
  1068. <Page Include="Common\PropertyControl\PDFLocation\CPDFTileControl.xaml">
  1069. <SubType>Designer</SubType>
  1070. <Generator>MSBuild:Compile</Generator>
  1071. </Page>
  1072. <Page Include="Common\PropertyControl\PDFThickness\CPDFThicknessControl.xaml">
  1073. <SubType>Designer</SubType>
  1074. <Generator>MSBuild:Compile</Generator>
  1075. </Page>
  1076. <Page Include="Common\PropertyControl\PDFThickness\CPDThicknessUI.xaml">
  1077. <SubType>Designer</SubType>
  1078. <Generator>MSBuild:Compile</Generator>
  1079. </Page>
  1080. <Page Include="Common\PropertyControl\PDFLineStyle\CPDFLineStyleControl.xaml">
  1081. <SubType>Designer</SubType>
  1082. <Generator>MSBuild:Compile</Generator>
  1083. </Page>
  1084. <Page Include="Common\PropertyControl\PDFLineStyle\CPDFLineStyleUI.xaml">
  1085. <SubType>Designer</SubType>
  1086. <Generator>MSBuild:Compile</Generator>
  1087. </Page>
  1088. <Page Include="Common\PropertyControl\PDFOpacity\CPDFOpacityControl.xaml">
  1089. <SubType>Designer</SubType>
  1090. <Generator>MSBuild:Compile</Generator>
  1091. </Page>
  1092. <Page Include="Common\PropertyControl\PDFOpacity\CPDFOpactiyUI.xaml">
  1093. <SubType>Designer</SubType>
  1094. <Generator>MSBuild:Compile</Generator>
  1095. </Page>
  1096. <Page Include="Common\PropertyControl\WritableComboBoxControl.xaml">
  1097. <SubType>Designer</SubType>
  1098. <Generator>MSBuild:Compile</Generator>
  1099. </Page>
  1100. <Page Include="Comparison\CompareContentResultControl.xaml" />
  1101. <Page Include="Comparison\CompareOverwriteResultControl.xaml" />
  1102. <Page Include="Comparison\CompareProgressControl.xaml" />
  1103. <Page Include="Comparison\ComparisonControl.xaml" />
  1104. <Page Include="Comparison\ComparisonSettingDialog.xaml" />
  1105. <Page Include="Compress\CompressDialog.xaml">
  1106. <Generator>MSBuild:Compile</Generator>
  1107. <SubType>Designer</SubType>
  1108. </Page>
  1109. <Page Include="DigitalSignature\AddCertificationControl\AddCertificationControl.xaml">
  1110. <SubType>Designer</SubType>
  1111. <Generator>MSBuild:Compile</Generator>
  1112. </Page>
  1113. <Page Include="DigitalSignature\AddCertificationControl\AddCertificationDialog.xaml">
  1114. <SubType>Designer</SubType>
  1115. <Generator>MSBuild:Compile</Generator>
  1116. </Page>
  1117. <Page Include="DigitalSignature\AddCertificationControl\AddCustomCertificationControl.xaml">
  1118. <SubType>Designer</SubType>
  1119. <Generator>MSBuild:Compile</Generator>
  1120. </Page>
  1121. <Page Include="DigitalSignature\AddCertificationControl\AddExistedCertificationControl.xaml">
  1122. <SubType>Designer</SubType>
  1123. <Generator>MSBuild:Compile</Generator>
  1124. </Page>
  1125. <Page Include="DigitalSignature\AddCertificationControl\SaveCertificateControl.xaml">
  1126. <SubType>Designer</SubType>
  1127. <Generator>MSBuild:Compile</Generator>
  1128. </Page>
  1129. <Page Include="DigitalSignature\DigitalSignatureControl\CPDFSignatureListControl.xaml" />
  1130. <Page Include="DigitalSignature\DigitalSignatureControl\DigitalSignatureControl.xaml">
  1131. <SubType>Designer</SubType>
  1132. <Generator>MSBuild:Compile</Generator>
  1133. </Page>
  1134. <Page Include="DigitalSignature\FillDigitalSignatureControl\FillDigitalSignatureDialog.xaml">
  1135. <SubType>Designer</SubType>
  1136. <Generator>MSBuild:Compile</Generator>
  1137. </Page>
  1138. <Page Include="DigitalSignature\FillDigitalSignatureControl\FillDigitalSignatureControl.xaml">
  1139. <Generator>MSBuild:Compile</Generator>
  1140. <SubType>Designer</SubType>
  1141. </Page>
  1142. <Page Include="DigitalSignature\ViewCertificationControl\CertificateChainControl.xaml">
  1143. <SubType>Designer</SubType>
  1144. <Generator>MSBuild:Compile</Generator>
  1145. </Page>
  1146. <Page Include="DigitalSignature\ViewCertificationControl\CertificateDetailControl.xaml">
  1147. <SubType>Designer</SubType>
  1148. <Generator>MSBuild:Compile</Generator>
  1149. </Page>
  1150. <Page Include="DigitalSignature\ViewCertificationControl\CertificateInfoControl.xaml">
  1151. <SubType>Designer</SubType>
  1152. <Generator>MSBuild:Compile</Generator>
  1153. </Page>
  1154. <Page Include="DigitalSignature\ViewCertificationControl\ConfidenceControl.xaml">
  1155. <SubType>Designer</SubType>
  1156. <Generator>MSBuild:Compile</Generator>
  1157. </Page>
  1158. <Page Include="DigitalSignature\ViewCertificationControl\SummaryControl.xaml">
  1159. <SubType>Designer</SubType>
  1160. <Generator>MSBuild:Compile</Generator>
  1161. </Page>
  1162. <Page Include="DigitalSignature\ViewCertificationControl\ViewCertificateDialog.xaml">
  1163. <SubType>Designer</SubType>
  1164. <Generator>MSBuild:Compile</Generator>
  1165. </Page>
  1166. <Page Include="DigitalSignature\SignatureStatusBarControl\SignatureStatusBarControl.xaml" />
  1167. <Page Include="DigitalSignature\VerifyDigitalSignatureControl\DigitalSignatureInfoControl.xaml" />
  1168. <Page Include="DigitalSignature\VerifyDigitalSignatureControl\DigitalSignatureValiditySummaaryControl.xaml" />
  1169. <Page Include="DigitalSignature\VerifyDigitalSignatureControl\VerifyDigitalSignatureControl.xaml" />
  1170. <Page Include="Edit\ContentEditControl\ContentEditControl.xaml">
  1171. <SubType>Designer</SubType>
  1172. <Generator>MSBuild:Compile</Generator>
  1173. </Page>
  1174. <Page Include="Edit\PDFContentEditControl.xaml">
  1175. <SubType>Designer</SubType>
  1176. <Generator>MSBuild:Compile</Generator>
  1177. </Page>
  1178. <Page Include="Edit\PDFImageEdit\PDFImageEditControl\PDFImageEditControl.xaml">
  1179. <SubType>Designer</SubType>
  1180. <Generator>MSBuild:Compile</Generator>
  1181. </Page>
  1182. <Page Include="Edit\PDFImageEdit\PDFImageUI\CPDFImageFlipUI.xaml">
  1183. <SubType>Designer</SubType>
  1184. <Generator>MSBuild:Compile</Generator>
  1185. </Page>
  1186. <Page Include="Edit\PDFImageEdit\PDFImageUI\CPDFImageRotateUI.xaml">
  1187. <SubType>Designer</SubType>
  1188. <Generator>MSBuild:Compile</Generator>
  1189. </Page>
  1190. <Page Include="Edit\PDFPathEdit\PDFPathEditControl\PDFPathEditControl.xaml">
  1191. <SubType>Designer</SubType>
  1192. <Generator>MSBuild:Compile</Generator>
  1193. </Page>
  1194. <Page Include="Edit\PDFTextEdit\PDFTextEditUI\CPDFTextMarkupUI.xaml">
  1195. <SubType>Designer</SubType>
  1196. <Generator>MSBuild:Compile</Generator>
  1197. </Page>
  1198. <Page Include="Edit\PDFTextEdit\PDFTextEditControl\PDFTextEditControl.xaml">
  1199. <SubType>Designer</SubType>
  1200. <Generator>MSBuild:Compile</Generator>
  1201. </Page>
  1202. <Page Include="Edit\PDFTextEdit\PDFTextEditUI\CPDFTextAlignUI.xaml">
  1203. <SubType>Designer</SubType>
  1204. <Generator>MSBuild:Compile</Generator>
  1205. </Page>
  1206. <Page Include="Edit\PDFTextEdit\PDFTextEditUI\CPDFTextStyleUI.xaml">
  1207. <SubType>Designer</SubType>
  1208. <Generator>MSBuild:Compile</Generator>
  1209. </Page>
  1210. <Page Include="Common\BarControl\FormBarControl.xaml">
  1211. <SubType>Designer</SubType>
  1212. <Generator>MSBuild:Compile</Generator>
  1213. </Page>
  1214. <Page Include="Printer\PrinterDialog.xaml">
  1215. <SubType>Designer</SubType>
  1216. <Generator>MSBuild:Compile</Generator>
  1217. </Page>
  1218. <Page Include="Printer\PrintPreviewControl.xaml">
  1219. <SubType>Designer</SubType>
  1220. <Generator>MSBuild:Compile</Generator>
  1221. </Page>
  1222. <Page Include="Security\Encryption\DecryptionDialog.xaml" />
  1223. <Page Include="Security\Encryption\EncryptionDialog.xaml" />
  1224. <Page Include="Security\Encryption\FileGridListControl.xaml" />
  1225. <Page Include="Security\Encryption\SecurityOperationTypeDialog.xaml" />
  1226. <Page Include="Security\Encryption\SetEncryptionControl.xaml" />
  1227. <Page Include="Form\FormControl\FormControl.xaml">
  1228. <SubType>Designer</SubType>
  1229. <Generator>MSBuild:Compile</Generator>
  1230. </Page>
  1231. <Page Include="Form\FromPropertyControl.xaml">
  1232. <SubType>Designer</SubType>
  1233. <Generator>MSBuild:Compile</Generator>
  1234. </Page>
  1235. <Page Include="Form\Property\CheckBoxProperty.xaml">
  1236. <SubType>Designer</SubType>
  1237. <Generator>MSBuild:Compile</Generator>
  1238. </Page>
  1239. <Page Include="Form\Property\ComboBoxProperty.xaml">
  1240. <SubType>Designer</SubType>
  1241. <Generator>MSBuild:Compile</Generator>
  1242. </Page>
  1243. <Page Include="Form\Property\ListBoxProperty.xaml">
  1244. <SubType>Designer</SubType>
  1245. <Generator>MSBuild:Compile</Generator>
  1246. </Page>
  1247. <Page Include="Form\Property\PushButtonProperty.xaml">
  1248. <SubType>Designer</SubType>
  1249. <Generator>MSBuild:Compile</Generator>
  1250. </Page>
  1251. <Page Include="Form\Property\RadioButtonProperty.xaml">
  1252. <SubType>Designer</SubType>
  1253. <Generator>MSBuild:Compile</Generator>
  1254. </Page>
  1255. <Page Include="Form\Property\SignatureProperty.xaml">
  1256. <SubType>Designer</SubType>
  1257. <Generator>MSBuild:Compile</Generator>
  1258. </Page>
  1259. <Page Include="Form\Property\TextFieldProperty.xaml">
  1260. <SubType>Designer</SubType>
  1261. <Generator>MSBuild:Compile</Generator>
  1262. </Page>
  1263. <Page Include="Measure\MeasureControl.xaml">
  1264. <SubType>Designer</SubType>
  1265. <Generator>MSBuild:Compile</Generator>
  1266. </Page>
  1267. <Page Include="Measure\MeasureInfoPanel.xaml">
  1268. <SubType>Designer</SubType>
  1269. <Generator>MSBuild:Compile</Generator>
  1270. </Page>
  1271. <Page Include="Measure\MeasurePropertyControl.xaml">
  1272. <SubType>Designer</SubType>
  1273. <Generator>MSBuild:Compile</Generator>
  1274. </Page>
  1275. <Page Include="Measure\MeasureSettingPanel.xaml">
  1276. <SubType>Designer</SubType>
  1277. <Generator>MSBuild:Compile</Generator>
  1278. </Page>
  1279. <Page Include="Measure\Property\StraightnessProperty.xaml">
  1280. <SubType>Designer</SubType>
  1281. <Generator>MSBuild:Compile</Generator>
  1282. </Page>
  1283. <Page Include="Measure\Property\PolygonalProperty.xaml">
  1284. <SubType>Designer</SubType>
  1285. <Generator>MSBuild:Compile</Generator>
  1286. </Page>
  1287. <Page Include="Measure\Property\MultilineProperty.xaml">
  1288. <SubType>Designer</SubType>
  1289. <Generator>MSBuild:Compile</Generator>
  1290. </Page>
  1291. <Page Include="PageEdit\PageEditControl\PageEditControl.xaml">
  1292. <SubType>Designer</SubType>
  1293. <Generator>MSBuild:Compile</Generator>
  1294. </Page>
  1295. <Page Include="PageEdit\PDFPageEdit\CPDFPageEditControl.xaml">
  1296. <SubType>Designer</SubType>
  1297. <Generator>MSBuild:Compile</Generator>
  1298. </Page>
  1299. <Page Include="PageEdit\PDFPageExtract\CPDFPageExtractUI.xaml">
  1300. <SubType>Designer</SubType>
  1301. <Generator>MSBuild:Compile</Generator>
  1302. </Page>
  1303. <Page Include="PageEdit\PDFPageExtract\CPDFPageExtractWindow.xaml">
  1304. <SubType>Designer</SubType>
  1305. <Generator>MSBuild:Compile</Generator>
  1306. </Page>
  1307. <Page Include="PageEdit\PDFPageInsert\CPDFPageInsertUI.xaml">
  1308. <SubType>Designer</SubType>
  1309. <Generator>MSBuild:Compile</Generator>
  1310. </Page>
  1311. <Page Include="PageEdit\PDFPageInsert\CPDFPageInsertWindow.xaml">
  1312. <SubType>Designer</SubType>
  1313. <Generator>MSBuild:Compile</Generator>
  1314. </Page>
  1315. <Page Include="PDFView\PDFBookmark\PDFBookmarkControl\CPDFBookmarkControl.xaml">
  1316. <SubType>Designer</SubType>
  1317. <Generator>MSBuild:Compile</Generator>
  1318. </Page>
  1319. <Page Include="PDFView\PDFBookmark\PDFBookmarkUI\CPDFBookmarkAddUI.xaml">
  1320. <SubType>Designer</SubType>
  1321. <Generator>MSBuild:Compile</Generator>
  1322. </Page>
  1323. <Page Include="PDFView\PDFBookmark\PDFBookmarkUI\CPDFBookmarkResultUI.xaml">
  1324. <SubType>Designer</SubType>
  1325. <Generator>MSBuild:Compile</Generator>
  1326. </Page>
  1327. <Page Include="PDFView\PDFDisplaySettings\PDFDisplaySettingsControl\CPDFDisplaySettingsControl.xaml">
  1328. <Generator>MSBuild:Compile</Generator>
  1329. <SubType>Designer</SubType>
  1330. </Page>
  1331. <Page Include="PDFView\PDFSearch\PDFSearchUI\CPDFSearchInputUI.xaml">
  1332. <SubType>Designer</SubType>
  1333. <Generator>MSBuild:Compile</Generator>
  1334. </Page>
  1335. <Page Include="PDFView\PDFInfo\CPDFInfoControl.xaml">
  1336. <Generator>MSBuild:Compile</Generator>
  1337. <SubType>Designer</SubType>
  1338. </Page>
  1339. <Page Include="PDFView\PDFOutline\PDFOutlineControl\CPDFOutlineControl.xaml">
  1340. <SubType>Designer</SubType>
  1341. <Generator>MSBuild:Compile</Generator>
  1342. </Page>
  1343. <Page Include="PDFView\PDFOutline\PDFOutlineUI\CPDFOutlineUI.xaml">
  1344. <SubType>Designer</SubType>
  1345. <Generator>MSBuild:Compile</Generator>
  1346. </Page>
  1347. <Page Include="PDFView\PDFSearch\PDFSearchUI\CPDFSearchResultUI.xaml">
  1348. <Generator>MSBuild:Compile</Generator>
  1349. <SubType>Designer</SubType>
  1350. </Page>
  1351. <Page Include="PDFView\PDFSearch\PDFSearchControl\CPDFSearchControl.xaml">
  1352. <SubType>Designer</SubType>
  1353. <Generator>MSBuild:Compile</Generator>
  1354. </Page>
  1355. <Page Include="PDFView\PDFThumbnail\PDFThumbnailControl\CPdfThumbnailControl.xaml">
  1356. <Generator>MSBuild:Compile</Generator>
  1357. <SubType>Designer</SubType>
  1358. </Page>
  1359. <Page Include="PDFView\PDFThumbnail\PDFThumbnailUI\CPdfThumbnailUI.xaml">
  1360. <Generator>MSBuild:Compile</Generator>
  1361. <SubType>Designer</SubType>
  1362. </Page>
  1363. <Page Include="PDFView\PDFDisplaySettings\PDFDisplaySettingsControl\CPDFViewModeControl.xaml">
  1364. <SubType>Designer</SubType>
  1365. <Generator>MSBuild:Compile</Generator>
  1366. </Page>
  1367. <Page Include="PDFView\PDFDisplaySettings\PDFDisplaySettingsControl\CPDFDrawModeControl.xaml">
  1368. <SubType>Designer</SubType>
  1369. <Generator>MSBuild:Compile</Generator>
  1370. </Page>
  1371. <Page Include="PDFView\PDFDisplaySettings\PDFDisplaySettingsUI\CPDFViewModeUI.xaml">
  1372. <SubType>Designer</SubType>
  1373. <Generator>MSBuild:Compile</Generator>
  1374. </Page>
  1375. <Page Include="PDFView\PDFDisplaySettings\PDFDisplaySettingsUI\CPDFDrawModeUI.xaml">
  1376. <SubType>Designer</SubType>
  1377. <Generator>MSBuild:Compile</Generator>
  1378. </Page>
  1379. <Page Include="PDFView\PDFInfo\CPDFAbstractInfoControl.xaml">
  1380. <SubType>Designer</SubType>
  1381. <Generator>MSBuild:Compile</Generator>
  1382. </Page>
  1383. <Page Include="PDFView\PDFInfo\CPDFCreateInfoControl.xaml">
  1384. <SubType>Designer</SubType>
  1385. <Generator>MSBuild:Compile</Generator>
  1386. </Page>
  1387. <Page Include="PDFView\PDFInfo\CPDFSecurityInfoControl.xaml">
  1388. <SubType>Designer</SubType>
  1389. <Generator>MSBuild:Compile</Generator>
  1390. </Page>
  1391. <Page Include="PDFView\PDFScaling\PDFScalingControl\CPDFScalingControl.xaml">
  1392. <SubType>Designer</SubType>
  1393. <Generator>MSBuild:Compile</Generator>
  1394. </Page>
  1395. <Page Include="PDFView\PDFScaling\PDFScalingUI\CPDFScalingUI.xaml">
  1396. <SubType>Designer</SubType>
  1397. <Generator>MSBuild:Compile</Generator>
  1398. </Page>
  1399. <Page Include="PDFView\PDFViewControl\PDFViewControl.xaml">
  1400. <SubType>Designer</SubType>
  1401. <Generator>MSBuild:Compile</Generator>
  1402. </Page>
  1403. <Page Include="PDFView\RegularViewerControl.xaml" />
  1404. <Page Include="Snapshot\SnapshotMenu.xaml">
  1405. <Generator>MSBuild:Compile</Generator>
  1406. <SubType>Designer</SubType>
  1407. </Page>
  1408. <Page Include="Watermark\AddWatermark\FileGridListWithPageRangeControl.xaml">
  1409. <SubType>Designer</SubType>
  1410. <Generator>MSBuild:Compile</Generator>
  1411. </Page>
  1412. <Page Include="Watermark\AddWatermark\PageRangeDialog.xaml">
  1413. <SubType>Designer</SubType>
  1414. <Generator>MSBuild:Compile</Generator>
  1415. </Page>
  1416. <Page Include="Common\PreviewControl\PreviewControl.xaml">
  1417. <SubType>Designer</SubType>
  1418. <Generator>MSBuild:Compile</Generator>
  1419. </Page>
  1420. <Page Include="Watermark\AddWatermark\WatermarkDialog.xaml">
  1421. <SubType>Designer</SubType>
  1422. <Generator>MSBuild:Compile</Generator>
  1423. </Page>
  1424. <Page Include="Watermark\AddWatermark\WatermarkListDialog.xaml">
  1425. <SubType>Designer</SubType>
  1426. <Generator>MSBuild:Compile</Generator>
  1427. </Page>
  1428. <Page Include="Watermark\RemoveWatermark\RemoveWatermarkListControl.xaml">
  1429. <SubType>Designer</SubType>
  1430. <Generator>MSBuild:Compile</Generator>
  1431. </Page>
  1432. <Page Include="Watermark\RemoveWatermark\RemoveWatermarkListDialog.xaml">
  1433. <SubType>Designer</SubType>
  1434. <Generator>MSBuild:Compile</Generator>
  1435. </Page>
  1436. <Page Include="Watermark\WatermarkOperationTypeDialog.xaml">
  1437. <SubType>Designer</SubType>
  1438. </Page>
  1439. </ItemGroup>
  1440. <ItemGroup>
  1441. <ProjectReference Include="..\..\..\..\ComPDFKit_Rebuild\ComPDFKit.Viewer\ComPDFKit.Viewer.csproj">
  1442. <Project>{783263cf-0da3-4095-9df8-2c4a6b3ff908}</Project>
  1443. <Name>ComPDFKit.Viewer</Name>
  1444. </ProjectReference>
  1445. <ProjectReference Include="..\..\..\..\compdfkit_rebuild\ComPDFKit\ComPDFKitCSharp\ComPDFKit.NET.csproj">
  1446. <Project>{7858da95-f135-417e-83f8-36421dc923fc}</Project>
  1447. <Name>ComPDFKit.NET</Name>
  1448. </ProjectReference>
  1449. <ProjectReference Include="..\ComPDFKit.Tool\ComPDFKit.Tool.csproj">
  1450. <Project>{a061ee7a-6704-4bd9-86ee-48ed5df75e2f}</Project>
  1451. <Name>ComPDFKit.Tool</Name>
  1452. </ProjectReference>
  1453. </ItemGroup>
  1454. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  1455. </Project>