BaseControls.csproj 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="12.0" DefaultTargets="Build" 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>{7590DCAC-F66D-4230-B713-268C865A7BB1}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>Dongke.IBOSS.PRD.Basics.BaseControls</RootNamespace>
  11. <AssemblyName>BaseControls</AssemblyName>
  12. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <SccProjectName>
  15. </SccProjectName>
  16. <SccLocalPath>
  17. </SccLocalPath>
  18. <SccAuxPath>
  19. </SccAuxPath>
  20. <SccProvider>
  21. </SccProvider>
  22. </PropertyGroup>
  23. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  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. <PlatformTarget>x86</PlatformTarget>
  32. </PropertyGroup>
  33. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  34. <DebugType>pdbonly</DebugType>
  35. <Optimize>true</Optimize>
  36. <OutputPath>bin\Release\</OutputPath>
  37. <DefineConstants>TRACE</DefineConstants>
  38. <ErrorReport>prompt</ErrorReport>
  39. <WarningLevel>4</WarningLevel>
  40. </PropertyGroup>
  41. <PropertyGroup>
  42. <StartupObject />
  43. </PropertyGroup>
  44. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
  45. <DebugSymbols>true</DebugSymbols>
  46. <OutputPath>bin\x86\Debug\</OutputPath>
  47. <DefineConstants>DEBUG;TRACE</DefineConstants>
  48. <DebugType>full</DebugType>
  49. <PlatformTarget>x86</PlatformTarget>
  50. <ErrorReport>prompt</ErrorReport>
  51. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  52. </PropertyGroup>
  53. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
  54. <OutputPath>bin\x86\Release\</OutputPath>
  55. <DefineConstants>TRACE</DefineConstants>
  56. <Optimize>true</Optimize>
  57. <DebugType>pdbonly</DebugType>
  58. <PlatformTarget>x86</PlatformTarget>
  59. <ErrorReport>prompt</ErrorReport>
  60. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  61. </PropertyGroup>
  62. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
  63. <DebugSymbols>true</DebugSymbols>
  64. <OutputPath>bin\x64\Debug\</OutputPath>
  65. <DefineConstants>DEBUG;TRACE</DefineConstants>
  66. <DebugType>full</DebugType>
  67. <PlatformTarget>x64</PlatformTarget>
  68. <ErrorReport>prompt</ErrorReport>
  69. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  70. </PropertyGroup>
  71. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
  72. <OutputPath>bin\x64\Release\</OutputPath>
  73. <DefineConstants>TRACE</DefineConstants>
  74. <Optimize>true</Optimize>
  75. <DebugType>pdbonly</DebugType>
  76. <PlatformTarget>x64</PlatformTarget>
  77. <ErrorReport>prompt</ErrorReport>
  78. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  79. </PropertyGroup>
  80. <ItemGroup>
  81. <Compile Include="Base\DKListBox.cs">
  82. <SubType>Component</SubType>
  83. </Compile>
  84. <Compile Include="Base\DKListBox.Designer.cs">
  85. <DependentUpon>DKListBox.cs</DependentUpon>
  86. </Compile>
  87. <Compile Include="CheckedListBox\C_CheckedListBoxEx.cs">
  88. <SubType>Component</SubType>
  89. </Compile>
  90. <Compile Include="CheckedListBox\C_CheckedListBoxEx.Designer.cs">
  91. <DependentUpon>C_CheckedListBoxEx.cs</DependentUpon>
  92. </Compile>
  93. <Compile Include="DataGridView\C_DGV_BarCode\C_DGV_BarCode.cs">
  94. <SubType>Component</SubType>
  95. </Compile>
  96. <Compile Include="DataGridView\C_DGV_BarCode\C_DGV_Cell_BarCode.cs" />
  97. <Compile Include="DataGridView\C_DGV_BarCode\C_DGV_Column_BarCode.cs" />
  98. <Compile Include="DataGridView\C_DGV_CheckBox\C_DGV_Column_CheckBox.cs" />
  99. <Compile Include="DataGridView\C_DGV_DateTimePicker\C_DGV_Cell_DateTimePicker.cs" />
  100. <Compile Include="DataGridView\C_DGV_DateTimePicker\C_DGV_Column_DateTimePicker.cs" />
  101. <Compile Include="DataGridView\C_DGV_DateTimePicker\C_DGV_DateTimePicker.cs">
  102. <SubType>Component</SubType>
  103. </Compile>
  104. <Compile Include="DataGridView\C_DGV_ListBoxComboBox\C_DGV_Cell_ListBoxComboBox.cs" />
  105. <Compile Include="DataGridView\C_DGV_ListBoxComboBox\C_DGV_Column_ListBoxComboBox.cs" />
  106. <Compile Include="DataGridView\C_DGV_ListBoxComboBox\C_DGV_ListBoxComboBox.cs">
  107. <SubType>Component</SubType>
  108. </Compile>
  109. <Compile Include="DataGridView\C_DGV_ListBoxComboBox\C_DGV_ListBoxComboBox.Designer.cs">
  110. <DependentUpon>C_DGV_ListBoxComboBox.cs</DependentUpon>
  111. </Compile>
  112. <Compile Include="DataGridView\TreeGridCell.cs" />
  113. <Compile Include="DataGridView\TreeGridEvents.cs" />
  114. <Compile Include="DataGridView\TreeGridNode.cs" />
  115. <Compile Include="DataGridView\TreeGridNodeCollection.cs" />
  116. <Compile Include="ExportExcel\ExportExcelProgress.cs">
  117. <SubType>Form</SubType>
  118. </Compile>
  119. <Compile Include="ExportExcel\ExportExcelProgress.Designer.cs">
  120. <DependentUpon>ExportExcelProgress.cs</DependentUpon>
  121. </Compile>
  122. <Compile Include="ExportExcel\ExportExcel_EPPlus.cs" />
  123. <Compile Include="ExportExcel\MES_Common.cs" />
  124. <Compile Include="ExportExcel\MES_Common2003.cs" />
  125. <Compile Include="ExportExcel\UPOI\AboutBox1.cs">
  126. <SubType>Form</SubType>
  127. </Compile>
  128. <Compile Include="ExportExcel\UPOI\definepaper.cs" />
  129. <Compile Include="ExportExcel\UPOI\DGVtoExcel2003.cs" />
  130. <Compile Include="ExportExcel\UPOI\DGVtoExcel.cs" />
  131. <Compile Include="ExportExcel\UPOI\IControl.cs" />
  132. <Compile Include="ExportExcel\UPOI\mbsjmodule.cs" />
  133. <Compile Include="ExportExcel\UPOI\Module1.cs" />
  134. <Compile Include="ExportExcel\UPOI\MyComputer.cs" />
  135. <Compile Include="ExportExcel\UPOI\mymerge.cs" />
  136. <Compile Include="ExportExcel\UPOI\MyProject.cs" />
  137. <Compile Include="ExportExcel\UPOI\mytree.cs" />
  138. <Compile Include="ExportExcel\UPOI\mywait.cs">
  139. <SubType>Form</SubType>
  140. </Compile>
  141. <Compile Include="ExportExcel\UPOI\newDGVtoExcel.cs" />
  142. <Compile Include="ExportExcel\UPOI\progress.cs">
  143. <SubType>Form</SubType>
  144. </Compile>
  145. <Compile Include="ExportExcel\UPOI\progress2.cs">
  146. <SubType>Form</SubType>
  147. </Compile>
  148. <Compile Include="ExportExcel\UPOI\progressexcel.cs">
  149. <SubType>Form</SubType>
  150. </Compile>
  151. <Compile Include="ExportExcel\UPOI\Ruler.cs">
  152. <SubType>UserControl</SubType>
  153. </Compile>
  154. <Compile Include="ExportExcel\UPOI\TextEdit.cs">
  155. <SubType>Form</SubType>
  156. </Compile>
  157. <Compile Include="ExportExcel\UPOI\TextEdit_Express.cs">
  158. <SubType>Form</SubType>
  159. </Compile>
  160. <Compile Include="ExportExcel\UPOI\U_Bar.cs">
  161. <SubType>UserControl</SubType>
  162. </Compile>
  163. <Compile Include="ExportExcel\UPOI\U_Bias.cs">
  164. <SubType>UserControl</SubType>
  165. </Compile>
  166. <Compile Include="ExportExcel\UPOI\U_Comput.cs">
  167. <SubType>UserControl</SubType>
  168. </Compile>
  169. <Compile Include="ExportExcel\UPOI\U_Editor.cs" />
  170. <Compile Include="ExportExcel\UPOI\U_Editor_express.cs" />
  171. <Compile Include="ExportExcel\UPOI\U_Ellipse.cs">
  172. <SubType>UserControl</SubType>
  173. </Compile>
  174. <Compile Include="ExportExcel\UPOI\U_Express.cs">
  175. <SubType>UserControl</SubType>
  176. </Compile>
  177. <Compile Include="ExportExcel\UPOI\U_fBias.cs">
  178. <SubType>UserControl</SubType>
  179. </Compile>
  180. <Compile Include="ExportExcel\UPOI\U_Field.cs">
  181. <SubType>UserControl</SubType>
  182. </Compile>
  183. <Compile Include="ExportExcel\UPOI\U_HLine.cs">
  184. <SubType>UserControl</SubType>
  185. </Compile>
  186. <Compile Include="ExportExcel\UPOI\U_Image.cs">
  187. <SubType>UserControl</SubType>
  188. </Compile>
  189. <Compile Include="ExportExcel\UPOI\U_QC.cs">
  190. <SubType>UserControl</SubType>
  191. </Compile>
  192. <Compile Include="ExportExcel\UPOI\U_Rect.cs">
  193. <SubType>UserControl</SubType>
  194. </Compile>
  195. <Compile Include="ExportExcel\UPOI\U_Text.cs">
  196. <SubType>UserControl</SubType>
  197. </Compile>
  198. <Compile Include="ExportExcel\UPOI\U_VLine.cs">
  199. <SubType>UserControl</SubType>
  200. </Compile>
  201. <Compile Include="ListBox\C_ListBox.cs">
  202. <SubType>Component</SubType>
  203. </Compile>
  204. <Compile Include="ListBox\C_ListBox.Designer.cs">
  205. <DependentUpon>C_ListBox.cs</DependentUpon>
  206. </Compile>
  207. <Compile Include="MessageBox\DKMessageBox.cs" />
  208. <Compile Include="TextBox\C_TXT_BarCode.cs">
  209. <SubType>Component</SubType>
  210. </Compile>
  211. <Compile Include="TextBox\C_TXT_BarCode.Designer.cs">
  212. <DependentUpon>C_TXT_BarCode.cs</DependentUpon>
  213. </Compile>
  214. <Compile Include="TextBox\C_TXT_CodeEx.cs">
  215. <SubType>Component</SubType>
  216. </Compile>
  217. <Compile Include="TextBox\C_TXT_CodeEx.Designer.cs">
  218. <DependentUpon>C_TXT_CodeEx.cs</DependentUpon>
  219. </Compile>
  220. <Compile Include="TextBox\DKTextBoxBase.cs">
  221. <SubType>Component</SubType>
  222. </Compile>
  223. <Compile Include="TextBox\DKTextBoxBase.Designer.cs">
  224. <DependentUpon>DKTextBoxBase.cs</DependentUpon>
  225. </Compile>
  226. <Compile Include="UserControls\DKCheckBoxComboBox\DKListBoxComboBox.cs">
  227. <SubType>Component</SubType>
  228. </Compile>
  229. <Compile Include="UserControls\DKCheckBoxComboBox\DKListBoxComboBox.Designer.cs">
  230. <DependentUpon>DKListBoxComboBox.cs</DependentUpon>
  231. </Compile>
  232. <Compile Include="UserControls\DKCheckBoxComboBox\DKCheckedListBoxComboBox.cs">
  233. <SubType>Component</SubType>
  234. </Compile>
  235. <Compile Include="UserControls\DKCheckBoxComboBox\DKCheckedListBoxComboBox.Designer.cs">
  236. <DependentUpon>DKCheckedListBoxComboBox.cs</DependentUpon>
  237. </Compile>
  238. <Compile Include="UserControls\DKCheckBoxComboBox\DKCheckBoxComboBox.cs">
  239. <SubType>Component</SubType>
  240. </Compile>
  241. <Compile Include="UserControls\DKCheckBoxComboBox\DKCheckBoxComboBox.Designer.cs">
  242. <DependentUpon>DKCheckBoxComboBox.cs</DependentUpon>
  243. </Compile>
  244. <Compile Include="UserControls\DKCheckBoxComboBox\GripBounds.cs" />
  245. <Compile Include="UserControls\DKCheckBoxComboBox\ListControlContainer.cs">
  246. <SubType>UserControl</SubType>
  247. </Compile>
  248. <Compile Include="UserControls\DKCheckBoxComboBox\ListControlContainer.Designer.cs">
  249. <DependentUpon>ListControlContainer.cs</DependentUpon>
  250. </Compile>
  251. <Compile Include="UserControls\DKCheckBoxComboBox\NativeMethods.cs" />
  252. <Compile Include="UserControls\DKCheckBoxComboBox\Popup.cs">
  253. <SubType>Component</SubType>
  254. </Compile>
  255. <Compile Include="UserControls\DKCheckBoxComboBox\Popup.Designer.cs">
  256. <DependentUpon>Popup.cs</DependentUpon>
  257. </Compile>
  258. <Compile Include="UserControls\DKCheckBoxComboBox\PopupComboBox.cs">
  259. <SubType>Component</SubType>
  260. </Compile>
  261. <Compile Include="UserControls\DKCheckBoxComboBox\PopupComboBox.Designer.cs">
  262. <DependentUpon>PopupComboBox.cs</DependentUpon>
  263. </Compile>
  264. <Compile Include="UserControls\DKCheckBoxComboBox\Selection Wrappers\DataTableWrappers.cs" />
  265. <Compile Include="UserControls\DKCheckBoxComboBox\Selection Wrappers\ListSelectionWrapper.cs" />
  266. <Compile Include="UserControls\DKCheckBoxComboBox\Selection Wrappers\ObjectSelectionWrapper.cs" />
  267. <Compile Include="UserControls\DKButtonTreeView.cs">
  268. <SubType>UserControl</SubType>
  269. </Compile>
  270. <Compile Include="UserControls\DKButtonTreeView.Designer.cs">
  271. <DependentUpon>DKButtonTreeView.cs</DependentUpon>
  272. </Compile>
  273. <Compile Include="Base\DKCheckBox.cs">
  274. <SubType>Component</SubType>
  275. </Compile>
  276. <Compile Include="Base\DKCheckBox.Designer.cs">
  277. <DependentUpon>DKCheckBox.cs</DependentUpon>
  278. </Compile>
  279. <Compile Include="Base\DKCheckedListBox.cs">
  280. <SubType>Component</SubType>
  281. </Compile>
  282. <Compile Include="Base\DKCheckedListBox.Designer.cs">
  283. <DependentUpon>DKCheckedListBox.cs</DependentUpon>
  284. </Compile>
  285. <Compile Include="Base\DKComboBox.cs">
  286. <SubType>Component</SubType>
  287. </Compile>
  288. <Compile Include="Base\DKComboBox.Designer.cs">
  289. <DependentUpon>DKComboBox.cs</DependentUpon>
  290. </Compile>
  291. <Compile Include="Base\ControlsConst.cs" />
  292. <Compile Include="Base\DKButton.cs">
  293. <SubType>Component</SubType>
  294. </Compile>
  295. <Compile Include="Base\DKButton.Designer.cs">
  296. <DependentUpon>DKButton.cs</DependentUpon>
  297. </Compile>
  298. <Compile Include="Base\DKDataGridView.cs">
  299. <SubType>Component</SubType>
  300. </Compile>
  301. <Compile Include="Base\DKDataGridView.Designer.cs">
  302. <DependentUpon>DKDataGridView.cs</DependentUpon>
  303. </Compile>
  304. <Compile Include="Base\DKDateTimePicker.cs">
  305. <SubType>Component</SubType>
  306. </Compile>
  307. <Compile Include="Base\DKDateTimePicker.Designer.cs">
  308. <DependentUpon>DKDateTimePicker.cs</DependentUpon>
  309. </Compile>
  310. <Compile Include="Base\DKForm.cs">
  311. <SubType>Form</SubType>
  312. </Compile>
  313. <Compile Include="Base\DKForm.Designer.cs">
  314. <DependentUpon>DKForm.cs</DependentUpon>
  315. </Compile>
  316. <Compile Include="Base\DKGroupBox.cs">
  317. <SubType>Component</SubType>
  318. </Compile>
  319. <Compile Include="Base\DKGroupBox.Designer.cs">
  320. <DependentUpon>DKGroupBox.cs</DependentUpon>
  321. </Compile>
  322. <Compile Include="Base\DKLabel.cs">
  323. <SubType>Component</SubType>
  324. </Compile>
  325. <Compile Include="Base\DKLabel.Designer.cs">
  326. <DependentUpon>DKLabel.cs</DependentUpon>
  327. </Compile>
  328. <Compile Include="Base\DKRadioButton.cs">
  329. <SubType>Component</SubType>
  330. </Compile>
  331. <Compile Include="Base\DKRadioButton.Designer.cs">
  332. <DependentUpon>DKRadioButton.cs</DependentUpon>
  333. </Compile>
  334. <Compile Include="Base\DKTextBox.cs">
  335. <SubType>Component</SubType>
  336. </Compile>
  337. <Compile Include="Base\DKTextBox.Designer.cs">
  338. <DependentUpon>DKTextBox.cs</DependentUpon>
  339. </Compile>
  340. <Compile Include="Base\DKToolStrip.cs">
  341. <SubType>Component</SubType>
  342. </Compile>
  343. <Compile Include="Base\DKToolStrip.Designer.cs">
  344. <DependentUpon>DKToolStrip.cs</DependentUpon>
  345. </Compile>
  346. <Compile Include="Base\IDKControl.cs" />
  347. <Compile Include="Button\C_Button.cs">
  348. <SubType>Component</SubType>
  349. </Compile>
  350. <Compile Include="Button\C_Button.designer.cs">
  351. <DependentUpon>C_Button.cs</DependentUpon>
  352. </Compile>
  353. <Compile Include="CheckBox\C_CheckBox.cs">
  354. <SubType>Component</SubType>
  355. </Compile>
  356. <Compile Include="CheckBox\C_CheckBox.Designer.cs">
  357. <DependentUpon>C_CheckBox.cs</DependentUpon>
  358. </Compile>
  359. <Compile Include="CheckedListBox\CheckedBoxListEx.cs">
  360. <SubType>UserControl</SubType>
  361. </Compile>
  362. <Compile Include="CheckedListBox\CheckedBoxListEx.Designer.cs">
  363. <DependentUpon>CheckedBoxListEx.cs</DependentUpon>
  364. </Compile>
  365. <Compile Include="CheckedListBox\C_CheckedListBox.cs">
  366. <SubType>Component</SubType>
  367. </Compile>
  368. <Compile Include="CheckedListBox\C_CheckedListBox.Designer.cs">
  369. <DependentUpon>C_CheckedListBox.cs</DependentUpon>
  370. </Compile>
  371. <Compile Include="CheckedListBox\C_StatusCheckBox.cs">
  372. <SubType>UserControl</SubType>
  373. </Compile>
  374. <Compile Include="CheckedListBox\C_StatusCheckBox.Designer.cs">
  375. <DependentUpon>C_StatusCheckBox.cs</DependentUpon>
  376. </Compile>
  377. <Compile Include="CheckedListBox\C_ValidCheckedBoxList.cs">
  378. <SubType>UserControl</SubType>
  379. </Compile>
  380. <Compile Include="CheckedListBox\C_ValidCheckedBoxList.Designer.cs">
  381. <DependentUpon>C_ValidCheckedBoxList.cs</DependentUpon>
  382. </Compile>
  383. <Compile Include="ComboBox\C_ComboBox.cs">
  384. <SubType>Component</SubType>
  385. </Compile>
  386. <Compile Include="ComboBox\C_ComboBox.Designer.cs">
  387. <DependentUpon>C_ComboBox.cs</DependentUpon>
  388. </Compile>
  389. <Compile Include="DataGridView\C_DataGridView.cs">
  390. <SubType>Component</SubType>
  391. </Compile>
  392. <Compile Include="DataGridView\C_DataGridView.Designer.cs">
  393. <DependentUpon>C_DataGridView.cs</DependentUpon>
  394. </Compile>
  395. <Compile Include="DataGridView\C_DGV_Code\C_DGV_Cell_Code.cs" />
  396. <Compile Include="DataGridView\C_DGV_Code\C_DGV_Code.cs">
  397. <SubType>Component</SubType>
  398. </Compile>
  399. <Compile Include="DataGridView\C_DGV_Code\C_DGV_Column_Code.cs" />
  400. <Compile Include="DataGridView\C_DGV_Digital\C_DGV_Cell_Digital.cs" />
  401. <Compile Include="DataGridView\C_DGV_Digital\C_DGV_Column_Digital.cs" />
  402. <Compile Include="DataGridView\C_DGV_Digital\C_DGV_Digital.cs">
  403. <SubType>Component</SubType>
  404. </Compile>
  405. <Compile Include="DataGridView\C_DGV_DropDownList\C_DGV_Cell_DropDownList.cs" />
  406. <Compile Include="DataGridView\C_DGV_DropDownList\C_DGV_Column_DropDownList.cs" />
  407. <Compile Include="DataGridView\C_DGV_DropDownList\C_DGV_DropDownList.cs">
  408. <SubType>Component</SubType>
  409. </Compile>
  410. <Compile Include="DateTime\C_DateTimePicker.cs">
  411. <SubType>Component</SubType>
  412. </Compile>
  413. <Compile Include="DateTime\C_DateTimePicker.Designer.cs">
  414. <DependentUpon>C_DateTimePicker.cs</DependentUpon>
  415. </Compile>
  416. <Compile Include="Form\dkStatusStrip.cs">
  417. <SubType>Component</SubType>
  418. </Compile>
  419. <Compile Include="Form\dkStatusStrip.Designer.cs">
  420. <DependentUpon>dkStatusStrip.cs</DependentUpon>
  421. </Compile>
  422. <Compile Include="Form\FormBase.cs">
  423. <SubType>Form</SubType>
  424. </Compile>
  425. <Compile Include="Form\FormBase.Designer.cs">
  426. <DependentUpon>FormBase.cs</DependentUpon>
  427. </Compile>
  428. <Compile Include="GroupBox\C_GroupBox.cs">
  429. <SubType>Component</SubType>
  430. </Compile>
  431. <Compile Include="GroupBox\C_GroupBox.Designer.cs">
  432. <DependentUpon>C_GroupBox.cs</DependentUpon>
  433. </Compile>
  434. <Compile Include="Label\C_Label.cs">
  435. <SubType>Component</SubType>
  436. </Compile>
  437. <Compile Include="Label\C_Label.Designer.cs">
  438. <DependentUpon>C_Label.cs</DependentUpon>
  439. </Compile>
  440. <Compile Include="Properties\AssemblyInfo.cs" />
  441. <Compile Include="RadioButton\C_RadioButton.cs">
  442. <SubType>Component</SubType>
  443. </Compile>
  444. <Compile Include="RadioButton\C_RadioButton.Designer.cs">
  445. <DependentUpon>C_RadioButton.cs</DependentUpon>
  446. </Compile>
  447. <Compile Include="Resource.Designer.cs">
  448. <AutoGen>True</AutoGen>
  449. <DesignTime>True</DesignTime>
  450. <DependentUpon>Resource.resx</DependentUpon>
  451. </Compile>
  452. <Compile Include="TextBox\C_TextBox.cs">
  453. <SubType>Component</SubType>
  454. </Compile>
  455. <Compile Include="TextBox\C_TextBox.Designer.cs">
  456. <DependentUpon>C_TextBox.cs</DependentUpon>
  457. </Compile>
  458. <Compile Include="TextBox\C_TXT_Code.cs">
  459. <SubType>Component</SubType>
  460. </Compile>
  461. <Compile Include="TextBox\C_TXT_Code.Designer.cs">
  462. <DependentUpon>C_TXT_Code.cs</DependentUpon>
  463. </Compile>
  464. <Compile Include="TextBox\C_TXT_Digital.cs">
  465. <SubType>Component</SubType>
  466. </Compile>
  467. <Compile Include="TextBox\C_TXT_Digital.Designer.cs">
  468. <DependentUpon>C_TXT_Digital.cs</DependentUpon>
  469. </Compile>
  470. <Compile Include="TextBox\C_TXT_DropDownList.cs">
  471. <SubType>Component</SubType>
  472. </Compile>
  473. <Compile Include="TextBox\C_TXT_DropDownList.Designer.cs">
  474. <DependentUpon>C_TXT_DropDownList.cs</DependentUpon>
  475. </Compile>
  476. <Compile Include="TextBox\C_TXT_Email.cs">
  477. <SubType>Component</SubType>
  478. </Compile>
  479. <Compile Include="TextBox\C_TXT_Email.Designer.cs">
  480. <DependentUpon>C_TXT_Email.cs</DependentUpon>
  481. </Compile>
  482. <Compile Include="TextBox\C_TXT_IDCard.cs">
  483. <SubType>Component</SubType>
  484. </Compile>
  485. <Compile Include="TextBox\C_TXT_IDCard.Designer.cs">
  486. <DependentUpon>C_TXT_IDCard.cs</DependentUpon>
  487. </Compile>
  488. <Compile Include="TextBox\C_TXT_PostalCode.cs">
  489. <SubType>Component</SubType>
  490. </Compile>
  491. <Compile Include="TextBox\C_TXT_PostalCode.Designer.cs">
  492. <DependentUpon>C_TXT_PostalCode.cs</DependentUpon>
  493. </Compile>
  494. <Compile Include="TextBox\C_TXT_Tel.cs">
  495. <SubType>Component</SubType>
  496. </Compile>
  497. <Compile Include="TextBox\C_TXT_Tel.Designer.cs">
  498. <DependentUpon>C_TXT_Tel.cs</DependentUpon>
  499. </Compile>
  500. <Compile Include="ToolStrip\C_ToolStrip.cs">
  501. <SubType>Component</SubType>
  502. </Compile>
  503. <Compile Include="ToolStrip\C_ToolStrip.Designer.cs">
  504. <DependentUpon>C_ToolStrip.cs</DependentUpon>
  505. </Compile>
  506. </ItemGroup>
  507. <ItemGroup>
  508. <ProjectReference Include="..\BaseResources\BaseResources.csproj">
  509. <Project>{61710211-9b80-45c1-b338-fdf984c9ae43}</Project>
  510. <Name>BaseResources</Name>
  511. </ProjectReference>
  512. <ProjectReference Include="..\Library\Library.csproj">
  513. <Project>{922d0f0f-01c2-4fa5-a4ad-00064232f455}</Project>
  514. <Name>Library</Name>
  515. </ProjectReference>
  516. </ItemGroup>
  517. <ItemGroup>
  518. <Reference Include="Curtain.Core.net4">
  519. <HintPath>..\..\DLL\Curtain.Core.net4.dll</HintPath>
  520. </Reference>
  521. <Reference Include="EPPlus, Version=5.2.0.0, Culture=neutral, PublicKeyToken=ea159fdaa78159a1, processorArchitecture=MSIL">
  522. <SpecificVersion>False</SpecificVersion>
  523. <HintPath>DLL\EPPlus.dll</HintPath>
  524. </Reference>
  525. <Reference Include="ExportExcel, Version=1.0.0.0, Culture=neutral, processorArchitecture=x86">
  526. <SpecificVersion>False</SpecificVersion>
  527. <HintPath>DLL\ExportExcel.dll</HintPath>
  528. </Reference>
  529. <Reference Include="ICSharpCode.SharpZipLib, Version=0.86.0.518, Culture=neutral, PublicKeyToken=1b03e6acf1164f73, processorArchitecture=MSIL">
  530. <SpecificVersion>False</SpecificVersion>
  531. <HintPath>DLL\ICSharpCode.SharpZipLib.dll</HintPath>
  532. </Reference>
  533. <Reference Include="Microsoft.VisualBasic" />
  534. <Reference Include="NPOI, Version=2.4.1.0, Culture=neutral, PublicKeyToken=0df73ec7942b34e1, processorArchitecture=MSIL">
  535. <SpecificVersion>False</SpecificVersion>
  536. <HintPath>DLL\NPOI.dll</HintPath>
  537. </Reference>
  538. <Reference Include="NPOI.OOXML">
  539. <HintPath>DLL\NPOI.OOXML.dll</HintPath>
  540. </Reference>
  541. <Reference Include="NPOI.OpenXml4Net">
  542. <HintPath>DLL\NPOI.OpenXml4Net.dll</HintPath>
  543. </Reference>
  544. <Reference Include="NPOI.OpenXmlFormats">
  545. <HintPath>DLL\NPOI.OpenXmlFormats.dll</HintPath>
  546. </Reference>
  547. <Reference Include="System" />
  548. <Reference Include="System.Data" />
  549. <Reference Include="System.Drawing" />
  550. <Reference Include="System.Windows.Forms" />
  551. <Reference Include="System.Xml" />
  552. </ItemGroup>
  553. <ItemGroup>
  554. <EmbeddedResource Include="Base\DKForm.resx">
  555. <DependentUpon>DKForm.cs</DependentUpon>
  556. </EmbeddedResource>
  557. <EmbeddedResource Include="CheckedListBox\C_ValidCheckedBoxList.resx">
  558. <DependentUpon>C_ValidCheckedBoxList.cs</DependentUpon>
  559. </EmbeddedResource>
  560. <EmbeddedResource Include="ExportExcel\ExportExcelProgress.resx">
  561. <DependentUpon>ExportExcelProgress.cs</DependentUpon>
  562. </EmbeddedResource>
  563. <EmbeddedResource Include="UserControls\DKCheckBoxComboBox\PopupComboBox.resx">
  564. <DependentUpon>PopupComboBox.cs</DependentUpon>
  565. </EmbeddedResource>
  566. <EmbeddedResource Include="UserControls\DKButtonTreeView.resx">
  567. <DependentUpon>DKButtonTreeView.cs</DependentUpon>
  568. </EmbeddedResource>
  569. <EmbeddedResource Include="Button\C_Button.resx">
  570. <DependentUpon>C_Button.cs</DependentUpon>
  571. </EmbeddedResource>
  572. <EmbeddedResource Include="CheckedListBox\C_StatusCheckBox.resx">
  573. <DependentUpon>C_StatusCheckBox.cs</DependentUpon>
  574. </EmbeddedResource>
  575. <EmbeddedResource Include="Form\dkStatusStrip.resx">
  576. <DependentUpon>dkStatusStrip.cs</DependentUpon>
  577. </EmbeddedResource>
  578. <EmbeddedResource Include="Form\FormBase.resx">
  579. <DependentUpon>FormBase.cs</DependentUpon>
  580. </EmbeddedResource>
  581. <EmbeddedResource Include="Resource.resx">
  582. <Generator>ResXFileCodeGenerator</Generator>
  583. <LastGenOutput>Resource.Designer.cs</LastGenOutput>
  584. </EmbeddedResource>
  585. </ItemGroup>
  586. <ItemGroup>
  587. <None Include="Resources\bg.png" />
  588. </ItemGroup>
  589. <ItemGroup>
  590. <None Include="Resources\searchButton.png" />
  591. </ItemGroup>
  592. <ItemGroup>
  593. <Content Include="DLL\EPPlus.dll" />
  594. <Content Include="DLL\ExportExcel.dll" />
  595. <Content Include="DLL\ICSharpCode.SharpZipLib.dll" />
  596. <Content Include="DLL\NPOI.dll" />
  597. <Content Include="DLL\NPOI.OOXML.dll" />
  598. <Content Include="DLL\NPOI.OpenXml4Net.dll" />
  599. <Content Include="DLL\NPOI.OpenXmlFormats.dll" />
  600. </ItemGroup>
  601. <ItemGroup />
  602. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  603. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  604. Other similar extension points exist, see Microsoft.Common.targets.
  605. <Target Name="BeforeBuild">
  606. </Target>
  607. <Target Name="AfterBuild">
  608. </Target>
  609. -->
  610. </Project>