UICore.csproj 52 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303
  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>{2C9E1DF3-1ABA-4972-BE60-41DD9B3C47A7}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>MECF.Framework.UI.Core</RootNamespace>
  11. <AssemblyName>MECF.Framework.UI.Core</AssemblyName>
  12. <TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <TargetFrameworkProfile />
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  17. <DebugSymbols>true</DebugSymbols>
  18. <DebugType>full</DebugType>
  19. <Optimize>false</Optimize>
  20. <OutputPath>..\Output\MECF.Framework\</OutputPath>
  21. <DefineConstants>DEBUG;TRACE</DefineConstants>
  22. <ErrorReport>prompt</ErrorReport>
  23. <WarningLevel>4</WarningLevel>
  24. </PropertyGroup>
  25. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  26. <DebugType>pdbonly</DebugType>
  27. <Optimize>true</Optimize>
  28. <OutputPath>bin\Release\</OutputPath>
  29. <DefineConstants>TRACE</DefineConstants>
  30. <ErrorReport>prompt</ErrorReport>
  31. <WarningLevel>4</WarningLevel>
  32. </PropertyGroup>
  33. <ItemGroup>
  34. <Reference Include="Autofac">
  35. <HintPath>..\..\ThirdParty\dlls\Autofac.dll</HintPath>
  36. </Reference>
  37. <Reference Include="log4net, Version=1.2.10.0, Culture=neutral, PublicKeyToken=1b44e1d426115821, processorArchitecture=MSIL">
  38. <SpecificVersion>False</SpecificVersion>
  39. <HintPath>..\..\ThirdParty\dlls\log4net.dll</HintPath>
  40. </Reference>
  41. <Reference Include="Microsoft.Expression.Interactions, Version=4.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  42. <SpecificVersion>False</SpecificVersion>
  43. <HintPath>..\..\ThirdParty\dlls\Microsoft.Expression.Interactions.dll</HintPath>
  44. </Reference>
  45. <Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
  46. <SpecificVersion>False</SpecificVersion>
  47. <HintPath>..\..\ThirdParty\dlls\Newtonsoft.Json.dll</HintPath>
  48. </Reference>
  49. <Reference Include="PresentationCore" />
  50. <Reference Include="PresentationFramework" />
  51. <Reference Include="PresentationFramework.Aero" />
  52. <Reference Include="SciChart.Charting, Version=6.0.1.12982, Culture=neutral, PublicKeyToken=b55dd9efe817e823, processorArchitecture=MSIL">
  53. <SpecificVersion>False</SpecificVersion>
  54. <HintPath>..\..\ThirdParty\dlls\SciCart\SciChart.Charting.dll</HintPath>
  55. </Reference>
  56. <Reference Include="SciChart.Core, Version=6.0.1.12982, Culture=neutral, PublicKeyToken=b55dd9efe817e823, processorArchitecture=MSIL">
  57. <SpecificVersion>False</SpecificVersion>
  58. <HintPath>..\..\ThirdParty\dlls\SciCart\SciChart.Core.dll</HintPath>
  59. </Reference>
  60. <Reference Include="SciChart.Data, Version=6.0.1.12982, Culture=neutral, PublicKeyToken=b55dd9efe817e823, processorArchitecture=MSIL">
  61. <SpecificVersion>False</SpecificVersion>
  62. <HintPath>..\..\ThirdParty\dlls\SciCart\SciChart.Data.dll</HintPath>
  63. </Reference>
  64. <Reference Include="SciChart.Drawing, Version=6.0.1.12982, Culture=neutral, PublicKeyToken=b55dd9efe817e823, processorArchitecture=MSIL">
  65. <SpecificVersion>False</SpecificVersion>
  66. <HintPath>..\..\ThirdParty\dlls\SciCart\SciChart.Drawing.dll</HintPath>
  67. </Reference>
  68. <Reference Include="System" />
  69. <Reference Include="System.Activities" />
  70. <Reference Include="System.Activities.Core.Presentation" />
  71. <Reference Include="System.Activities.Presentation" />
  72. <Reference Include="System.Core" />
  73. <Reference Include="System.Drawing" />
  74. <Reference Include="System.Runtime.Serialization" />
  75. <Reference Include="System.ServiceModel" />
  76. <Reference Include="System.Web.Extensions" />
  77. <Reference Include="System.Windows.Forms" />
  78. <Reference Include="System.Windows.Interactivity">
  79. <HintPath>..\..\ThirdParty\dlls\System.Windows.Interactivity.dll</HintPath>
  80. </Reference>
  81. <Reference Include="System.Windows.Presentation" />
  82. <Reference Include="System.Xaml" />
  83. <Reference Include="System.Xml.Linq" />
  84. <Reference Include="System.Data.DataSetExtensions" />
  85. <Reference Include="Microsoft.CSharp" />
  86. <Reference Include="System.Data" />
  87. <Reference Include="System.Net.Http" />
  88. <Reference Include="System.Xml" />
  89. <Reference Include="WindowsBase" />
  90. <Reference Include="WindowsFormsIntegration" />
  91. <Reference Include="WPFToolkit">
  92. <HintPath>..\..\ThirdParty\dlls\WPFToolkit.dll</HintPath>
  93. </Reference>
  94. <Reference Include="Xceed.Wpf.DataGrid">
  95. <HintPath>..\..\ThirdParty\dlls\Xceed.Wpf.DataGrid.dll</HintPath>
  96. </Reference>
  97. <Reference Include="Xceed.Wpf.Toolkit">
  98. <HintPath>..\..\ThirdParty\dlls\Xceed.Wpf.Toolkit.dll</HintPath>
  99. </Reference>
  100. </ItemGroup>
  101. <ItemGroup>
  102. <Compile Include="Accounts\AccountCreation.xaml.cs">
  103. <DependentUpon>AccountCreation.xaml</DependentUpon>
  104. </Compile>
  105. <Compile Include="Accounts\AccountManagerView.xaml.cs">
  106. <DependentUpon>AccountManagerView.xaml</DependentUpon>
  107. </Compile>
  108. <Compile Include="Accounts\AccountViewModel.cs" />
  109. <Compile Include="Accounts\CurrentLogInUsers.xaml.cs">
  110. <DependentUpon>CurrentLogInUsers.xaml</DependentUpon>
  111. </Compile>
  112. <Compile Include="Accounts\GonaMainLogin.xaml.cs">
  113. <DependentUpon>GonaMainLogin.xaml</DependentUpon>
  114. </Compile>
  115. <Compile Include="Accounts\LoginViewModel.cs" />
  116. <Compile Include="Accounts\PasswordMsgBox.xaml.cs">
  117. <DependentUpon>PasswordMsgBox.xaml</DependentUpon>
  118. </Compile>
  119. <Compile Include="Accounts\MainLogin.xaml.cs">
  120. <DependentUpon>MainLogin.xaml</DependentUpon>
  121. </Compile>
  122. <Compile Include="Accounts\MyAccount.xaml.cs">
  123. <DependentUpon>MyAccount.xaml</DependentUpon>
  124. </Compile>
  125. <Compile Include="Accounts\PasswordMsgBoxModel.cs" />
  126. <Compile Include="Accounts\RoleEditView.xaml.cs">
  127. <DependentUpon>RoleEditView.xaml</DependentUpon>
  128. </Compile>
  129. <Compile Include="Accounts\RolePermissionEdit.xaml.cs">
  130. <DependentUpon>RolePermissionEdit.xaml</DependentUpon>
  131. </Compile>
  132. <Compile Include="Accounts\UserAccountEdit.xaml.cs">
  133. <DependentUpon>UserAccountEdit.xaml</DependentUpon>
  134. </Compile>
  135. <Compile Include="Accounts\UserControlBase.cs" />
  136. <Compile Include="Accounts\UserPwdChangeView.xaml.cs">
  137. <DependentUpon>UserPwdChangeView.xaml</DependentUpon>
  138. </Compile>
  139. <Compile Include="Applications\IUiInstance.cs" />
  140. <Compile Include="Applications\UiApplication.cs" />
  141. <Compile Include="CommonControl\AITInterlockSensor.xaml.cs">
  142. <DependentUpon>AITInterlockSensor.xaml</DependentUpon>
  143. </Compile>
  144. <Compile Include="CommonControl\AITScBoolRow.xaml.cs">
  145. <DependentUpon>AITScBoolRow.xaml</DependentUpon>
  146. </Compile>
  147. <Compile Include="CommonControl\AITScDoubleRow.xaml.cs">
  148. <DependentUpon>AITScDoubleRow.xaml</DependentUpon>
  149. </Compile>
  150. <Compile Include="CommonControl\AITScReadOnlyDoubleRow.xaml.cs">
  151. <DependentUpon>AITScReadOnlyDoubleRow.xaml</DependentUpon>
  152. </Compile>
  153. <Compile Include="CommonControl\AITScStringRow.xaml.cs">
  154. <DependentUpon>AITScStringRow.xaml</DependentUpon>
  155. </Compile>
  156. <Compile Include="Control\CheckValue2.xaml.cs">
  157. <DependentUpon>CheckValue2.xaml</DependentUpon>
  158. </Compile>
  159. <Compile Include="Control\GasSplitterControl.xaml.cs">
  160. <DependentUpon>GasSplitterControl.xaml</DependentUpon>
  161. </Compile>
  162. <Compile Include="Control\AnalogControl.xaml.cs">
  163. <DependentUpon>AnalogControl.xaml</DependentUpon>
  164. </Compile>
  165. <Compile Include="Control\AnalogControl2.xaml.cs">
  166. <DependentUpon>AnalogControl2.xaml</DependentUpon>
  167. </Compile>
  168. <Compile Include="Control\Arrow.xaml.cs">
  169. <DependentUpon>Arrow.xaml</DependentUpon>
  170. </Compile>
  171. <Compile Include="Control\Bath.xaml.cs">
  172. <DependentUpon>Bath.xaml</DependentUpon>
  173. </Compile>
  174. <Compile Include="Control\CheckValve.xaml.cs">
  175. <DependentUpon>CheckValve.xaml</DependentUpon>
  176. </Compile>
  177. <Compile Include="Control\Common.cs" />
  178. <Compile Include="Control\AiItemEditor.xaml.cs">
  179. <DependentUpon>AiItemEditor.xaml</DependentUpon>
  180. </Compile>
  181. <Compile Include="Control\AoItemEditor.xaml.cs">
  182. <DependentUpon>AoItemEditor.xaml</DependentUpon>
  183. </Compile>
  184. <Compile Include="Control\DiItemEditor.xaml.cs">
  185. <DependentUpon>DiItemEditor.xaml</DependentUpon>
  186. </Compile>
  187. <Compile Include="Control\DoItemEditor.xaml.cs">
  188. <DependentUpon>DoItemEditor.xaml</DependentUpon>
  189. </Compile>
  190. <Compile Include="Control\Filter.xaml.cs">
  191. <DependentUpon>Filter.xaml</DependentUpon>
  192. </Compile>
  193. <Compile Include="Control\FlowPipe.xaml.cs">
  194. <DependentUpon>FlowPipe.xaml</DependentUpon>
  195. </Compile>
  196. <Compile Include="Control\FlowPipeV2.xaml.cs">
  197. <DependentUpon>FlowPipeV2.xaml</DependentUpon>
  198. </Compile>
  199. <Compile Include="Control\GasFlowButton.xaml.cs">
  200. <DependentUpon>GasFlowButton.xaml</DependentUpon>
  201. </Compile>
  202. <Compile Include="Control\GasFlowChart.xaml.cs">
  203. <DependentUpon>GasFlowChart.xaml</DependentUpon>
  204. </Compile>
  205. <Compile Include="Control\GasValve.xaml.cs">
  206. <DependentUpon>GasValve.xaml</DependentUpon>
  207. </Compile>
  208. <Compile Include="Control\GasValveBig.xaml.cs">
  209. <DependentUpon>GasValveBig.xaml</DependentUpon>
  210. </Compile>
  211. <Compile Include="Control\GasValveV2.xaml.cs">
  212. <DependentUpon>GasValveV2.xaml</DependentUpon>
  213. </Compile>
  214. <Compile Include="Control\GasValveV3.xaml.cs">
  215. <DependentUpon>GasValveV3.xaml</DependentUpon>
  216. </Compile>
  217. <Compile Include="Control\GasValveV6.xaml.cs">
  218. <DependentUpon>GasValveV6.xaml</DependentUpon>
  219. </Compile>
  220. <Compile Include="Control\GateValve.xaml.cs">
  221. <DependentUpon>GateValve.xaml</DependentUpon>
  222. </Compile>
  223. <Compile Include="Control\GaugeControl.xaml.cs">
  224. <DependentUpon>GaugeControl.xaml</DependentUpon>
  225. </Compile>
  226. <Compile Include="Control\HandValve.xaml.cs">
  227. <DependentUpon>HandValve.xaml</DependentUpon>
  228. </Compile>
  229. <Compile Include="Control\Identifier.xaml.cs">
  230. <DependentUpon>Identifier.xaml</DependentUpon>
  231. </Compile>
  232. <Compile Include="Control\InputDialogBox.xaml.cs">
  233. <DependentUpon>InputDialogBox.xaml</DependentUpon>
  234. </Compile>
  235. <Compile Include="Control\Knot.xaml.cs">
  236. <DependentUpon>Knot.xaml</DependentUpon>
  237. </Compile>
  238. <Compile Include="Control\MessageControl.xaml.cs">
  239. <DependentUpon>MessageControl.xaml</DependentUpon>
  240. </Compile>
  241. <Compile Include="Control\MfcControl.xaml.cs">
  242. <DependentUpon>MfcControl.xaml</DependentUpon>
  243. </Compile>
  244. <Compile Include="Control\PC.xaml.cs">
  245. <DependentUpon>PC.xaml</DependentUpon>
  246. </Compile>
  247. <Compile Include="Control\PcControl.xaml.cs">
  248. <DependentUpon>PcControl.xaml</DependentUpon>
  249. </Compile>
  250. <Compile Include="Control\PipeControl.xaml.cs">
  251. <DependentUpon>PipeControl.xaml</DependentUpon>
  252. </Compile>
  253. <Compile Include="Control\LineDataChart.xaml.cs">
  254. <DependentUpon>LineDataChart.xaml</DependentUpon>
  255. </Compile>
  256. <Compile Include="Control\PocketProcessDataChart.xaml.cs">
  257. <DependentUpon>PocketProcessDataChart.xaml</DependentUpon>
  258. </Compile>
  259. <Compile Include="Control\PolygonAngle90.xaml.cs">
  260. <DependentUpon>PolygonAngle90.xaml</DependentUpon>
  261. </Compile>
  262. <Compile Include="Control\PressureSwitch.xaml.cs">
  263. <DependentUpon>PressureSwitch.xaml</DependentUpon>
  264. </Compile>
  265. <Compile Include="Control\PressureSwitchBig.xaml.cs">
  266. <DependentUpon>PressureSwitchBig.xaml</DependentUpon>
  267. </Compile>
  268. <Compile Include="Control\PressureTransducer.xaml.cs">
  269. <DependentUpon>PressureTransducer.xaml</DependentUpon>
  270. </Compile>
  271. <Compile Include="Control\Pump.xaml.cs">
  272. <DependentUpon>Pump.xaml</DependentUpon>
  273. </Compile>
  274. <Compile Include="Control\RawDataChart.xaml.cs">
  275. <DependentUpon>RawDataChart.xaml</DependentUpon>
  276. </Compile>
  277. <Compile Include="Control\ReadonlyGauge.xaml.cs">
  278. <DependentUpon>ReadonlyGauge.xaml</DependentUpon>
  279. </Compile>
  280. <Compile Include="Control\RFGenerator.xaml.cs">
  281. <DependentUpon>RFGenerator.xaml</DependentUpon>
  282. </Compile>
  283. <Compile Include="Control\SCItemEditor.xaml.cs">
  284. <DependentUpon>SCItemEditor.xaml</DependentUpon>
  285. </Compile>
  286. <Compile Include="Control\SignalTower.xaml.cs">
  287. <DependentUpon>SignalTower.xaml</DependentUpon>
  288. </Compile>
  289. <Compile Include="Control\SimulatorAiItemEditor.xaml.cs">
  290. <DependentUpon>SimulatorAiItemEditor.xaml</DependentUpon>
  291. </Compile>
  292. <Compile Include="Control\SimulatorDoItemEditor.xaml.cs">
  293. <DependentUpon>SimulatorDoItemEditor.xaml</DependentUpon>
  294. </Compile>
  295. <Compile Include="Control\SimulatorDiItemEditor.xaml.cs">
  296. <DependentUpon>SimulatorDiItemEditor.xaml</DependentUpon>
  297. </Compile>
  298. <Compile Include="Control\TcControl.xaml.cs">
  299. <DependentUpon>TcControl.xaml</DependentUpon>
  300. </Compile>
  301. <Compile Include="Control\ThrottleValveBig.xaml.cs">
  302. <DependentUpon>ThrottleValveBig.xaml</DependentUpon>
  303. </Compile>
  304. <Compile Include="Control\ThrottleValveControl.xaml.cs">
  305. <DependentUpon>ThrottleValveControl.xaml</DependentUpon>
  306. </Compile>
  307. <Compile Include="Control\VacuumPump.xaml.cs">
  308. <DependentUpon>VacuumPump.xaml</DependentUpon>
  309. </Compile>
  310. <Compile Include="Control\ValveBig.xaml.cs">
  311. <DependentUpon>ValveBig.xaml</DependentUpon>
  312. </Compile>
  313. <Compile Include="Control\Valve.xaml.cs">
  314. <DependentUpon>Valve.xaml</DependentUpon>
  315. </Compile>
  316. <Compile Include="Control\ValveRound.xaml.cs">
  317. <DependentUpon>ValveRound.xaml</DependentUpon>
  318. </Compile>
  319. <Compile Include="Converters\BoolMutiConverter.cs" />
  320. <Compile Include="Converters\RotateTransformConverter.cs" />
  321. <Compile Include="Converters\BoolSensorConverter.cs" />
  322. <Compile Include="Converters\CenterBorderGapMaskConverter.cs" />
  323. <Compile Include="Converters\ColorToBrushConverter.cs" />
  324. <Compile Include="Converters\GeneralConverter.cs" />
  325. <Compile Include="Converters\RolloverDataPointerInfoConverter.cs" />
  326. <Compile Include="Converters\ServiceModeConvert.cs" />
  327. <Compile Include="Converters\TabSizeConverter.cs" />
  328. <Compile Include="Converters\TimeSpanConverter.cs" />
  329. <Compile Include="Converters\ValveVisibleConvert.cs" />
  330. <Compile Include="Converters\VisibilityConverter.cs" />
  331. <Compile Include="Converters\WidthMoreConvertor.cs" />
  332. <Compile Include="DeviceControl\AITBarcodeTextBox.xaml.cs">
  333. <DependentUpon>AITBarcodeTextBox.xaml</DependentUpon>
  334. </Compile>
  335. <Compile Include="DeviceControl\AITBoostPumpInputDialogBox.xaml.cs">
  336. <DependentUpon>AITBoostPumpInputDialogBox.xaml</DependentUpon>
  337. </Compile>
  338. <Compile Include="DeviceControl\AITChillerControl.xaml.cs">
  339. <DependentUpon>AITChillerControl.xaml</DependentUpon>
  340. </Compile>
  341. <Compile Include="DeviceControl\AITFlowMeter.xaml.cs">
  342. <DependentUpon>AITFlowMeter.xaml</DependentUpon>
  343. </Compile>
  344. <Compile Include="DeviceControl\AITIsoGasValve.xaml.cs">
  345. <DependentUpon>AITIsoGasValve.xaml</DependentUpon>
  346. </Compile>
  347. <Compile Include="DeviceControl\AITGasValve.xaml.cs">
  348. <DependentUpon>AITGasValve.xaml</DependentUpon>
  349. </Compile>
  350. <Compile Include="DeviceControl\AITHeaterControl.xaml.cs">
  351. <DependentUpon>AITHeaterControl.xaml</DependentUpon>
  352. </Compile>
  353. <Compile Include="DeviceControl\AITHeaterInputDialogBox.xaml.cs">
  354. <DependentUpon>AITHeaterInputDialogBox.xaml</DependentUpon>
  355. </Compile>
  356. <Compile Include="DeviceControl\AITParameterCheckBox.xaml.cs">
  357. <DependentUpon>AITParameterCheckBox.xaml</DependentUpon>
  358. </Compile>
  359. <Compile Include="DeviceControl\AITPressureMeter.xaml.cs">
  360. <DependentUpon>AITPressureMeter.xaml</DependentUpon>
  361. </Compile>
  362. <Compile Include="DeviceControl\AITPressureSensor.xaml.cs">
  363. <DependentUpon>AITPressureSensor.xaml</DependentUpon>
  364. </Compile>
  365. <Compile Include="DeviceControl\AITPump.xaml.cs">
  366. <DependentUpon>AITPump.xaml</DependentUpon>
  367. </Compile>
  368. <Compile Include="DeviceControl\AITPump25.xaml.cs">
  369. <DependentUpon>AITPump25.xaml</DependentUpon>
  370. </Compile>
  371. <Compile Include="DeviceControl\AITRf.xaml.cs">
  372. <DependentUpon>AITRf.xaml</DependentUpon>
  373. </Compile>
  374. <Compile Include="DeviceControl\AITRfGenerator.xaml.cs">
  375. <DependentUpon>AITRfGenerator.xaml</DependentUpon>
  376. </Compile>
  377. <Compile Include="DeviceControl\AITRfInputDialogBox.xaml.cs">
  378. <DependentUpon>AITRfInputDialogBox.xaml</DependentUpon>
  379. </Compile>
  380. <Compile Include="DeviceControl\AITSensor.xaml.cs">
  381. <DependentUpon>AITSensor.xaml</DependentUpon>
  382. </Compile>
  383. <Compile Include="DeviceControl\AITSignalTower.xaml.cs">
  384. <DependentUpon>AITSignalTower.xaml</DependentUpon>
  385. </Compile>
  386. <Compile Include="DeviceControl\AITThermalCouple.xaml.cs">
  387. <DependentUpon>AITThermalCouple.xaml</DependentUpon>
  388. </Compile>
  389. <Compile Include="DeviceControl\AITThrottleValve.xaml.cs">
  390. <DependentUpon>AITThrottleValve.xaml</DependentUpon>
  391. </Compile>
  392. <Compile Include="DeviceControl\AITThrottleValve2.xaml.cs">
  393. <DependentUpon>AITThrottleValve2.xaml</DependentUpon>
  394. </Compile>
  395. <Compile Include="DeviceControl\AITThrottleValveInputDialogBox.xaml.cs">
  396. <DependentUpon>AITThrottleValveInputDialogBox.xaml</DependentUpon>
  397. </Compile>
  398. <Compile Include="DeviceControl\AITValve.xaml.cs">
  399. <DependentUpon>AITValve.xaml</DependentUpon>
  400. </Compile>
  401. <Compile Include="DeviceControl\AITWaterFlowSensor.xaml.cs">
  402. <DependentUpon>AITWaterFlowSensor.xaml</DependentUpon>
  403. </Compile>
  404. <Compile Include="DeviceControl\EventLogComboView.xaml.cs">
  405. <DependentUpon>EventLogComboView.xaml</DependentUpon>
  406. </Compile>
  407. <Compile Include="DeviceControl\ModuleControl.xaml.cs">
  408. <DependentUpon>ModuleControl.xaml</DependentUpon>
  409. </Compile>
  410. <Compile Include="Dialog\MessageBoxEx.cs" />
  411. <Compile Include="Dialog\TerminalDialog.xaml.cs">
  412. <DependentUpon>TerminalDialog.xaml</DependentUpon>
  413. </Compile>
  414. <Compile Include="Dialog\NotificationDialog.xaml.cs">
  415. <DependentUpon>NotificationDialog.xaml</DependentUpon>
  416. </Compile>
  417. <Compile Include="Dialog\RecipeAlarmedDialog.xaml.cs">
  418. <DependentUpon>RecipeAlarmedDialog.xaml</DependentUpon>
  419. </Compile>
  420. <Compile Include="Dialog\RecipeSelectDialog.xaml.cs">
  421. <DependentUpon>RecipeSelectDialog.xaml</DependentUpon>
  422. </Compile>
  423. <Compile Include="E95Template\DefaultTopView.xaml.cs">
  424. <DependentUpon>DefaultTopView.xaml</DependentUpon>
  425. </Compile>
  426. <Compile Include="ExtendedControls\BindingProxy.cs" />
  427. <Compile Include="ExtendedControls\ObjectInTreeView.xaml.cs">
  428. <DependentUpon>ObjectInTreeView.xaml</DependentUpon>
  429. </Compile>
  430. <Compile Include="ExtendedControls\ObjectTreeNode.cs" />
  431. <Compile Include="ExtendedControls\TreeViewHelper.cs" />
  432. <Compile Include="Properties\AssemblyInfo.cs" />
  433. <Compile Include="Properties\Resources.Designer.cs">
  434. <AutoGen>True</AutoGen>
  435. <DesignTime>True</DesignTime>
  436. <DependentUpon>Resources.resx</DependentUpon>
  437. </Compile>
  438. <Compile Include="ExtendedControls\WpfPropertyGrid.cs" />
  439. <Compile Include="Style\GridHelper.cs" />
  440. <Compile Include="Style\HeaderPanel.cs" />
  441. <Compile Include="ValidationRules\ValidateEmailAddress.cs" />
  442. <Compile Include="ValidationRules\ValidatePhoneNumber.cs" />
  443. <Compile Include="ValidationRules\ValidateUserName.cs" />
  444. <Compile Include="View\Common\EventView.xaml.cs">
  445. <DependentUpon>EventView.xaml</DependentUpon>
  446. </Compile>
  447. <Compile Include="View\Common\EventViewModel.cs" />
  448. <Compile Include="View\Common\FolderTreeViewItem.cs" />
  449. <Compile Include="View\Common\MonitorView.xaml.cs">
  450. <DependentUpon>MonitorView.xaml</DependentUpon>
  451. </Compile>
  452. <Compile Include="View\Common\MonitorViewModel.cs" />
  453. <Compile Include="View\Common\PageSCValue.cs" />
  454. <Compile Include="View\Common\ParameterView.xaml.cs">
  455. <DependentUpon>ParameterView.xaml</DependentUpon>
  456. </Compile>
  457. <Compile Include="View\Common\ParameterViewModel.cs" />
  458. <Compile Include="E95Template\BottomView.xaml.cs">
  459. <DependentUpon>BottomView.xaml</DependentUpon>
  460. </Compile>
  461. <Compile Include="E95Template\CenterTabView.xaml.cs">
  462. <DependentUpon>CenterTabView.xaml</DependentUpon>
  463. </Compile>
  464. <Compile Include="E95Template\CenterView.xaml.cs">
  465. <DependentUpon>CenterView.xaml</DependentUpon>
  466. </Compile>
  467. <Compile Include="E95Template\ITopView.cs" />
  468. <Compile Include="E95Template\StandardFrameWindow.xaml.cs">
  469. <DependentUpon>StandardFrameWindow.xaml</DependentUpon>
  470. </Compile>
  471. <Compile Include="E95Template\UILayoutParser.cs" />
  472. <Compile Include="E95Template\ViewManager.cs" />
  473. <Compile Include="View\IBaseModel.cs" />
  474. <Compile Include="View\IBaseView.cs" />
  475. </ItemGroup>
  476. <ItemGroup>
  477. <Page Include="Accounts\AccountCreation.xaml">
  478. <Generator>MSBuild:Compile</Generator>
  479. <SubType>Designer</SubType>
  480. </Page>
  481. <Page Include="Accounts\AccountManagerView.xaml">
  482. <Generator>MSBuild:Compile</Generator>
  483. <SubType>Designer</SubType>
  484. </Page>
  485. <Page Include="Accounts\CurrentLogInUsers.xaml">
  486. <Generator>MSBuild:Compile</Generator>
  487. <SubType>Designer</SubType>
  488. </Page>
  489. <Page Include="Accounts\GonaMainLogin.xaml">
  490. <Generator>MSBuild:Compile</Generator>
  491. <SubType>Designer</SubType>
  492. </Page>
  493. <Page Include="Accounts\PasswordMsgBox.xaml">
  494. <Generator>MSBuild:Compile</Generator>
  495. <SubType>Designer</SubType>
  496. </Page>
  497. <Page Include="Accounts\MainLogin.xaml">
  498. <Generator>MSBuild:Compile</Generator>
  499. <SubType>Designer</SubType>
  500. </Page>
  501. <Page Include="Accounts\MyAccount.xaml">
  502. <Generator>MSBuild:Compile</Generator>
  503. <SubType>Designer</SubType>
  504. </Page>
  505. <Page Include="Accounts\RoleEditView.xaml">
  506. <Generator>MSBuild:Compile</Generator>
  507. <SubType>Designer</SubType>
  508. </Page>
  509. <Page Include="Accounts\RolePermissionEdit.xaml">
  510. <Generator>MSBuild:Compile</Generator>
  511. <SubType>Designer</SubType>
  512. </Page>
  513. <Page Include="Accounts\UserAccountEdit.xaml">
  514. <Generator>MSBuild:Compile</Generator>
  515. <SubType>Designer</SubType>
  516. </Page>
  517. <Page Include="Accounts\UserPwdChangeView.xaml">
  518. <Generator>MSBuild:Compile</Generator>
  519. <SubType>Designer</SubType>
  520. </Page>
  521. <Page Include="CommonControl\AITInterlockSensor.xaml">
  522. <Generator>MSBuild:Compile</Generator>
  523. <SubType>Designer</SubType>
  524. </Page>
  525. <Page Include="CommonControl\AITScBoolRow.xaml">
  526. <Generator>MSBuild:Compile</Generator>
  527. <SubType>Designer</SubType>
  528. </Page>
  529. <Page Include="CommonControl\AITScDoubleRow.xaml">
  530. <Generator>MSBuild:Compile</Generator>
  531. <SubType>Designer</SubType>
  532. </Page>
  533. <Page Include="CommonControl\AITScReadOnlyDoubleRow.xaml">
  534. <Generator>MSBuild:Compile</Generator>
  535. <SubType>Designer</SubType>
  536. </Page>
  537. <Page Include="CommonControl\AITScStringRow.xaml">
  538. <Generator>MSBuild:Compile</Generator>
  539. <SubType>Designer</SubType>
  540. </Page>
  541. <Page Include="Control\CheckValue2.xaml">
  542. <SubType>Designer</SubType>
  543. <Generator>MSBuild:Compile</Generator>
  544. </Page>
  545. <Page Include="Control\GasSplitterControl.xaml">
  546. <Generator>MSBuild:Compile</Generator>
  547. <SubType>Designer</SubType>
  548. </Page>
  549. <Page Include="Control\AnalogControl.xaml">
  550. <Generator>MSBuild:Compile</Generator>
  551. <SubType>Designer</SubType>
  552. </Page>
  553. <Page Include="Control\AnalogControl2.xaml">
  554. <SubType>Designer</SubType>
  555. <Generator>MSBuild:Compile</Generator>
  556. </Page>
  557. <Page Include="Control\Arrow.xaml">
  558. <Generator>MSBuild:Compile</Generator>
  559. <SubType>Designer</SubType>
  560. </Page>
  561. <Page Include="Control\Bath.xaml">
  562. <Generator>MSBuild:Compile</Generator>
  563. <SubType>Designer</SubType>
  564. </Page>
  565. <Page Include="Control\CheckValve.xaml">
  566. <Generator>MSBuild:Compile</Generator>
  567. <SubType>Designer</SubType>
  568. </Page>
  569. <Page Include="Control\AiItemEditor.xaml">
  570. <Generator>MSBuild:Compile</Generator>
  571. <SubType>Designer</SubType>
  572. </Page>
  573. <Page Include="Control\AoItemEditor.xaml">
  574. <Generator>MSBuild:Compile</Generator>
  575. <SubType>Designer</SubType>
  576. </Page>
  577. <Page Include="Control\DiItemEditor.xaml">
  578. <SubType>Designer</SubType>
  579. <Generator>MSBuild:Compile</Generator>
  580. </Page>
  581. <Page Include="Control\DoItemEditor.xaml">
  582. <SubType>Designer</SubType>
  583. <Generator>MSBuild:Compile</Generator>
  584. </Page>
  585. <Page Include="Control\Filter.xaml">
  586. <Generator>MSBuild:Compile</Generator>
  587. <SubType>Designer</SubType>
  588. </Page>
  589. <Page Include="Control\FlowPipe.xaml">
  590. <Generator>MSBuild:Compile</Generator>
  591. <SubType>Designer</SubType>
  592. </Page>
  593. <Page Include="Control\FlowPipeV2.xaml">
  594. <Generator>MSBuild:Compile</Generator>
  595. <SubType>Designer</SubType>
  596. </Page>
  597. <Page Include="Control\GasFlowButton.xaml">
  598. <Generator>MSBuild:Compile</Generator>
  599. <SubType>Designer</SubType>
  600. </Page>
  601. <Page Include="Control\GasFlowChart.xaml">
  602. <Generator>MSBuild:Compile</Generator>
  603. <SubType>Designer</SubType>
  604. </Page>
  605. <Page Include="Control\GasValve.xaml">
  606. <Generator>MSBuild:Compile</Generator>
  607. <SubType>Designer</SubType>
  608. </Page>
  609. <Page Include="Control\GasValveBig.xaml">
  610. <Generator>MSBuild:Compile</Generator>
  611. <SubType>Designer</SubType>
  612. </Page>
  613. <Page Include="Control\GasValveV2.xaml">
  614. <Generator>MSBuild:Compile</Generator>
  615. <SubType>Designer</SubType>
  616. </Page>
  617. <Page Include="Control\GasValveV3.xaml">
  618. <Generator>MSBuild:Compile</Generator>
  619. <SubType>Designer</SubType>
  620. </Page>
  621. <Page Include="Control\GasValveV6.xaml">
  622. <Generator>MSBuild:Compile</Generator>
  623. <SubType>Designer</SubType>
  624. </Page>
  625. <Page Include="Control\GateValve.xaml">
  626. <Generator>MSBuild:Compile</Generator>
  627. <SubType>Designer</SubType>
  628. </Page>
  629. <Page Include="Control\GaugeControl.xaml">
  630. <Generator>MSBuild:Compile</Generator>
  631. <SubType>Designer</SubType>
  632. </Page>
  633. <Page Include="Control\HandValve.xaml">
  634. <Generator>MSBuild:Compile</Generator>
  635. <SubType>Designer</SubType>
  636. </Page>
  637. <Page Include="Control\Identifier.xaml">
  638. <Generator>MSBuild:Compile</Generator>
  639. <SubType>Designer</SubType>
  640. </Page>
  641. <Page Include="Control\InputDialogBox.xaml">
  642. <Generator>MSBuild:Compile</Generator>
  643. <SubType>Designer</SubType>
  644. </Page>
  645. <Page Include="Control\Knot.xaml">
  646. <Generator>MSBuild:Compile</Generator>
  647. <SubType>Designer</SubType>
  648. </Page>
  649. <Page Include="Control\MessageControl.xaml">
  650. <Generator>MSBuild:Compile</Generator>
  651. <SubType>Designer</SubType>
  652. </Page>
  653. <Page Include="Control\MfcControl.xaml">
  654. <Generator>MSBuild:Compile</Generator>
  655. <SubType>Designer</SubType>
  656. </Page>
  657. <Page Include="Control\PC.xaml">
  658. <Generator>MSBuild:Compile</Generator>
  659. <SubType>Designer</SubType>
  660. </Page>
  661. <Page Include="Control\PcControl.xaml">
  662. <Generator>MSBuild:Compile</Generator>
  663. <SubType>Designer</SubType>
  664. </Page>
  665. <Page Include="Control\PipeControl.xaml">
  666. <Generator>MSBuild:Compile</Generator>
  667. <SubType>Designer</SubType>
  668. </Page>
  669. <Page Include="Control\LineDataChart.xaml">
  670. <Generator>MSBuild:Compile</Generator>
  671. <SubType>Designer</SubType>
  672. </Page>
  673. <Page Include="Control\PocketProcessDataChart.xaml">
  674. <SubType>Designer</SubType>
  675. <Generator>MSBuild:Compile</Generator>
  676. </Page>
  677. <Page Include="Control\PolygonAngle90.xaml">
  678. <Generator>MSBuild:Compile</Generator>
  679. <SubType>Designer</SubType>
  680. </Page>
  681. <Page Include="Control\PressureSwitch.xaml">
  682. <Generator>MSBuild:Compile</Generator>
  683. <SubType>Designer</SubType>
  684. </Page>
  685. <Page Include="Control\PressureSwitchBig.xaml">
  686. <Generator>MSBuild:Compile</Generator>
  687. <SubType>Designer</SubType>
  688. </Page>
  689. <Page Include="Control\PressureTransducer.xaml">
  690. <Generator>MSBuild:Compile</Generator>
  691. <SubType>Designer</SubType>
  692. </Page>
  693. <Page Include="Control\Pump.xaml">
  694. <Generator>MSBuild:Compile</Generator>
  695. <SubType>Designer</SubType>
  696. </Page>
  697. <Page Include="Control\RawDataChart.xaml">
  698. <Generator>MSBuild:Compile</Generator>
  699. <SubType>Designer</SubType>
  700. </Page>
  701. <Page Include="Control\ReadonlyGauge.xaml">
  702. <Generator>MSBuild:Compile</Generator>
  703. <SubType>Designer</SubType>
  704. </Page>
  705. <Page Include="Control\RFGenerator.xaml">
  706. <Generator>MSBuild:Compile</Generator>
  707. <SubType>Designer</SubType>
  708. </Page>
  709. <Page Include="Control\SCItemEditor.xaml">
  710. <SubType>Designer</SubType>
  711. <Generator>MSBuild:Compile</Generator>
  712. </Page>
  713. <Page Include="Control\SignalTower.xaml">
  714. <Generator>MSBuild:Compile</Generator>
  715. <SubType>Designer</SubType>
  716. </Page>
  717. <Page Include="Control\SimulatorAiItemEditor.xaml">
  718. <Generator>MSBuild:Compile</Generator>
  719. <SubType>Designer</SubType>
  720. </Page>
  721. <Page Include="Control\SimulatorDoItemEditor.xaml">
  722. <Generator>MSBuild:Compile</Generator>
  723. <SubType>Designer</SubType>
  724. </Page>
  725. <Page Include="Control\SimulatorDiItemEditor.xaml">
  726. <SubType>Designer</SubType>
  727. <Generator>MSBuild:Compile</Generator>
  728. </Page>
  729. <Page Include="Control\TcControl.xaml">
  730. <Generator>MSBuild:Compile</Generator>
  731. <SubType>Designer</SubType>
  732. </Page>
  733. <Page Include="Control\ThrottleValveBig.xaml">
  734. <Generator>MSBuild:Compile</Generator>
  735. <SubType>Designer</SubType>
  736. </Page>
  737. <Page Include="Control\ThrottleValveControl.xaml">
  738. <Generator>MSBuild:Compile</Generator>
  739. <SubType>Designer</SubType>
  740. </Page>
  741. <Page Include="Control\VacuumPump.xaml">
  742. <Generator>MSBuild:Compile</Generator>
  743. <SubType>Designer</SubType>
  744. </Page>
  745. <Page Include="Control\ValveBig.xaml">
  746. <Generator>MSBuild:Compile</Generator>
  747. <SubType>Designer</SubType>
  748. </Page>
  749. <Page Include="Control\Valve.xaml">
  750. <Generator>MSBuild:Compile</Generator>
  751. <SubType>Designer</SubType>
  752. </Page>
  753. <Page Include="Control\ValveRound.xaml">
  754. <Generator>MSBuild:Compile</Generator>
  755. <SubType>Designer</SubType>
  756. </Page>
  757. <Page Include="DeviceControl\AITBarcodeTextBox.xaml">
  758. <Generator>MSBuild:Compile</Generator>
  759. <SubType>Designer</SubType>
  760. </Page>
  761. <Page Include="DeviceControl\AITBoostPumpInputDialogBox.xaml">
  762. <Generator>MSBuild:Compile</Generator>
  763. <SubType>Designer</SubType>
  764. </Page>
  765. <Page Include="DeviceControl\AITChillerControl.xaml">
  766. <SubType>Designer</SubType>
  767. <Generator>MSBuild:Compile</Generator>
  768. </Page>
  769. <Page Include="DeviceControl\AITFlowMeter.xaml">
  770. <Generator>MSBuild:Compile</Generator>
  771. <SubType>Designer</SubType>
  772. </Page>
  773. <Page Include="DeviceControl\AITIsoGasValve.xaml">
  774. <Generator>MSBuild:Compile</Generator>
  775. <SubType>Designer</SubType>
  776. </Page>
  777. <Page Include="DeviceControl\AITGasValve.xaml">
  778. <Generator>MSBuild:Compile</Generator>
  779. <SubType>Designer</SubType>
  780. </Page>
  781. <Page Include="DeviceControl\AITHeaterControl.xaml">
  782. <Generator>MSBuild:Compile</Generator>
  783. <SubType>Designer</SubType>
  784. </Page>
  785. <Page Include="DeviceControl\AITHeaterInputDialogBox.xaml">
  786. <Generator>MSBuild:Compile</Generator>
  787. <SubType>Designer</SubType>
  788. </Page>
  789. <Page Include="DeviceControl\AITParameterCheckBox.xaml">
  790. <Generator>MSBuild:Compile</Generator>
  791. <SubType>Designer</SubType>
  792. </Page>
  793. <Page Include="DeviceControl\AITPressureMeter.xaml">
  794. <Generator>MSBuild:Compile</Generator>
  795. <SubType>Designer</SubType>
  796. </Page>
  797. <Page Include="DeviceControl\AITPressureSensor.xaml">
  798. <Generator>MSBuild:Compile</Generator>
  799. <SubType>Designer</SubType>
  800. </Page>
  801. <Page Include="DeviceControl\AITPump.xaml">
  802. <Generator>MSBuild:Compile</Generator>
  803. <SubType>Designer</SubType>
  804. </Page>
  805. <Page Include="DeviceControl\AITPump25.xaml">
  806. <SubType>Designer</SubType>
  807. <Generator>MSBuild:Compile</Generator>
  808. </Page>
  809. <Page Include="DeviceControl\AITRf.xaml">
  810. <Generator>MSBuild:Compile</Generator>
  811. <SubType>Designer</SubType>
  812. </Page>
  813. <Page Include="DeviceControl\AITRfGenerator.xaml">
  814. <Generator>MSBuild:Compile</Generator>
  815. <SubType>Designer</SubType>
  816. </Page>
  817. <Page Include="DeviceControl\AITRfInputDialogBox.xaml">
  818. <Generator>MSBuild:Compile</Generator>
  819. <SubType>Designer</SubType>
  820. </Page>
  821. <Page Include="DeviceControl\AITSensor.xaml">
  822. <Generator>MSBuild:Compile</Generator>
  823. <SubType>Designer</SubType>
  824. </Page>
  825. <Page Include="DeviceControl\AITSignalTower.xaml">
  826. <Generator>MSBuild:Compile</Generator>
  827. <SubType>Designer</SubType>
  828. </Page>
  829. <Page Include="DeviceControl\AITThermalCouple.xaml">
  830. <Generator>MSBuild:Compile</Generator>
  831. <SubType>Designer</SubType>
  832. </Page>
  833. <Page Include="DeviceControl\AITThrottleValve.xaml">
  834. <Generator>MSBuild:Compile</Generator>
  835. <SubType>Designer</SubType>
  836. </Page>
  837. <Page Include="DeviceControl\AITThrottleValve2.xaml">
  838. <Generator>MSBuild:Compile</Generator>
  839. <SubType>Designer</SubType>
  840. </Page>
  841. <Page Include="DeviceControl\AITThrottleValveInputDialogBox.xaml">
  842. <Generator>MSBuild:Compile</Generator>
  843. <SubType>Designer</SubType>
  844. </Page>
  845. <Page Include="DeviceControl\AITValve.xaml">
  846. <Generator>MSBuild:Compile</Generator>
  847. <SubType>Designer</SubType>
  848. </Page>
  849. <Page Include="DeviceControl\AITWaterFlowSensor.xaml">
  850. <Generator>MSBuild:Compile</Generator>
  851. <SubType>Designer</SubType>
  852. </Page>
  853. <Page Include="DeviceControl\EventLogComboView.xaml">
  854. <SubType>Designer</SubType>
  855. <Generator>MSBuild:Compile</Generator>
  856. </Page>
  857. <Page Include="DeviceControl\ModuleControl.xaml">
  858. <SubType>Designer</SubType>
  859. <Generator>MSBuild:Compile</Generator>
  860. </Page>
  861. <Page Include="Dialog\TerminalDialog.xaml">
  862. <Generator>MSBuild:Compile</Generator>
  863. <SubType>Designer</SubType>
  864. </Page>
  865. <Page Include="Dialog\NotificationDialog.xaml">
  866. <Generator>MSBuild:Compile</Generator>
  867. <SubType>Designer</SubType>
  868. </Page>
  869. <Page Include="Dialog\RecipeAlarmedDialog.xaml">
  870. <Generator>MSBuild:Compile</Generator>
  871. <SubType>Designer</SubType>
  872. </Page>
  873. <Page Include="Dialog\RecipeSelectDialog.xaml">
  874. <Generator>MSBuild:Compile</Generator>
  875. <SubType>Designer</SubType>
  876. </Page>
  877. <Page Include="E95Template\DefaultTopView.xaml">
  878. <SubType>Designer</SubType>
  879. <Generator>MSBuild:Compile</Generator>
  880. </Page>
  881. <Page Include="ExtendedControls\ObjectInTreeView.xaml">
  882. <Generator>MSBuild:Compile</Generator>
  883. <SubType>Designer</SubType>
  884. </Page>
  885. <Page Include="Resources\Language\StringResources.en-US.xaml">
  886. <Generator>MSBuild:Compile</Generator>
  887. <SubType>Designer</SubType>
  888. </Page>
  889. <Page Include="Resources\Language\StringResources.zh-CN.xaml">
  890. <Generator>MSBuild:Compile</Generator>
  891. <SubType>Designer</SubType>
  892. </Page>
  893. <Page Include="Style\ButtonStyle.xaml">
  894. <Generator>MSBuild:Compile</Generator>
  895. <SubType>Designer</SubType>
  896. </Page>
  897. <Page Include="Style\ComboBoxStyle.xaml">
  898. <Generator>MSBuild:Compile</Generator>
  899. <SubType>Designer</SubType>
  900. </Page>
  901. <Page Include="Style\CommonStyle.xaml">
  902. <Generator>MSBuild:Compile</Generator>
  903. <SubType>Designer</SubType>
  904. </Page>
  905. <Page Include="Style\CadetBlue\ButtonStyle.xaml">
  906. <Generator>MSBuild:Compile</Generator>
  907. <SubType>Designer</SubType>
  908. </Page>
  909. <Page Include="Style\CadetBlue\ComboBoxStyle.xaml">
  910. <Generator>MSBuild:Compile</Generator>
  911. <SubType>Designer</SubType>
  912. </Page>
  913. <Page Include="Style\CadetBlue\CommonStyle.xaml">
  914. <Generator>MSBuild:Compile</Generator>
  915. <SubType>Designer</SubType>
  916. </Page>
  917. <Page Include="Style\CadetBlue\GroupBoxStyle.xaml">
  918. <Generator>MSBuild:Compile</Generator>
  919. <SubType>Designer</SubType>
  920. </Page>
  921. <Page Include="Style\CadetBlue\LabelStyle.xaml">
  922. <Generator>MSBuild:Compile</Generator>
  923. <SubType>Designer</SubType>
  924. </Page>
  925. <Page Include="Style\CadetBlue\ListBoxStyle.xaml">
  926. <Generator>MSBuild:Compile</Generator>
  927. <SubType>Designer</SubType>
  928. </Page>
  929. <Page Include="Style\CadetBlue\ListViewStyle.xaml">
  930. <Generator>MSBuild:Compile</Generator>
  931. <SubType>Designer</SubType>
  932. </Page>
  933. <Page Include="Style\CadetBlue\PasswordBoxStyle.xaml">
  934. <Generator>MSBuild:Compile</Generator>
  935. <SubType>Designer</SubType>
  936. </Page>
  937. <Page Include="Style\CadetBlue\StyleA.xaml">
  938. <Generator>MSBuild:Compile</Generator>
  939. <SubType>Designer</SubType>
  940. </Page>
  941. <Page Include="Style\CadetBlue\TabControlStyle.xaml">
  942. <Generator>MSBuild:Compile</Generator>
  943. <SubType>Designer</SubType>
  944. </Page>
  945. <Page Include="Style\CadetBlue\TextBlockStyle.xaml">
  946. <Generator>MSBuild:Compile</Generator>
  947. <SubType>Designer</SubType>
  948. </Page>
  949. <Page Include="Style\CadetBlue\TextBoxStyle.xaml">
  950. <Generator>MSBuild:Compile</Generator>
  951. <SubType>Designer</SubType>
  952. </Page>
  953. <Page Include="Style\CadetBlue\TreeViewStyle.xaml">
  954. <Generator>MSBuild:Compile</Generator>
  955. <SubType>Designer</SubType>
  956. </Page>
  957. <Page Include="Style\CadetBlue\WindowStyle.xaml">
  958. <Generator>MSBuild:Compile</Generator>
  959. <SubType>Designer</SubType>
  960. </Page>
  961. <Page Include="Style\NavyBlue\ButtonStyle.xaml">
  962. <Generator>MSBuild:Compile</Generator>
  963. <SubType>Designer</SubType>
  964. </Page>
  965. <Page Include="Style\NavyBlue\ComboBoxStyle.xaml">
  966. <Generator>MSBuild:Compile</Generator>
  967. <SubType>Designer</SubType>
  968. </Page>
  969. <Page Include="Style\NavyBlue\CommonStyle.xaml">
  970. <Generator>MSBuild:Compile</Generator>
  971. <SubType>Designer</SubType>
  972. </Page>
  973. <Page Include="Style\NavyBlue\DataGridStyle.xaml">
  974. <Generator>MSBuild:Compile</Generator>
  975. <SubType>Designer</SubType>
  976. </Page>
  977. <Page Include="Style\NavyBlue\GroupBoxStyle.xaml">
  978. <Generator>MSBuild:Compile</Generator>
  979. <SubType>Designer</SubType>
  980. </Page>
  981. <Page Include="Style\NavyBlue\LabelStyle.xaml">
  982. <Generator>MSBuild:Compile</Generator>
  983. <SubType>Designer</SubType>
  984. </Page>
  985. <Page Include="Style\NavyBlue\ListBoxStyle.xaml">
  986. <Generator>MSBuild:Compile</Generator>
  987. <SubType>Designer</SubType>
  988. </Page>
  989. <Page Include="Style\NavyBlue\ListViewStyle.xaml">
  990. <Generator>MSBuild:Compile</Generator>
  991. <SubType>Designer</SubType>
  992. </Page>
  993. <Page Include="Style\NavyBlue\PasswordBoxStyle.xaml">
  994. <Generator>MSBuild:Compile</Generator>
  995. <SubType>Designer</SubType>
  996. </Page>
  997. <Page Include="Style\NavyBlue\ScrollbarStyle.xaml">
  998. <Generator>MSBuild:Compile</Generator>
  999. <SubType>Designer</SubType>
  1000. </Page>
  1001. <Page Include="Style\NavyBlue\StyleA.xaml">
  1002. <Generator>MSBuild:Compile</Generator>
  1003. <SubType>Designer</SubType>
  1004. </Page>
  1005. <Page Include="Style\NavyBlue\TabControlStyle.xaml">
  1006. <Generator>MSBuild:Compile</Generator>
  1007. <SubType>Designer</SubType>
  1008. </Page>
  1009. <Page Include="Style\NavyBlue\TextBlockStyle.xaml">
  1010. <Generator>MSBuild:Compile</Generator>
  1011. <SubType>Designer</SubType>
  1012. </Page>
  1013. <Page Include="Style\NavyBlue\TextBoxStyle.xaml">
  1014. <Generator>MSBuild:Compile</Generator>
  1015. <SubType>Designer</SubType>
  1016. </Page>
  1017. <Page Include="Style\NavyBlue\TreeViewStyle.xaml">
  1018. <Generator>MSBuild:Compile</Generator>
  1019. <SubType>Designer</SubType>
  1020. </Page>
  1021. <Page Include="Style\NavyBlue\WindowStyle.xaml">
  1022. <Generator>MSBuild:Compile</Generator>
  1023. <SubType>Designer</SubType>
  1024. </Page>
  1025. <Page Include="Style\SeaBlue\ButtonStyle.xaml">
  1026. <Generator>MSBuild:Compile</Generator>
  1027. <SubType>Designer</SubType>
  1028. </Page>
  1029. <Page Include="Style\SeaBlue\ComboBoxStyle.xaml">
  1030. <Generator>MSBuild:Compile</Generator>
  1031. <SubType>Designer</SubType>
  1032. </Page>
  1033. <Page Include="Style\SeaBlue\CommonStyle.xaml">
  1034. <Generator>MSBuild:Compile</Generator>
  1035. <SubType>Designer</SubType>
  1036. </Page>
  1037. <Page Include="Style\SeaBlue\GroupBoxStyle.xaml">
  1038. <Generator>MSBuild:Compile</Generator>
  1039. <SubType>Designer</SubType>
  1040. </Page>
  1041. <Page Include="Style\SeaBlue\LabelStyle.xaml">
  1042. <Generator>MSBuild:Compile</Generator>
  1043. <SubType>Designer</SubType>
  1044. </Page>
  1045. <Page Include="Style\SeaBlue\ListBoxStyle.xaml">
  1046. <Generator>MSBuild:Compile</Generator>
  1047. <SubType>Designer</SubType>
  1048. </Page>
  1049. <Page Include="Style\SeaBlue\ListViewStyle.xaml">
  1050. <Generator>MSBuild:Compile</Generator>
  1051. <SubType>Designer</SubType>
  1052. </Page>
  1053. <Page Include="Style\SeaBlue\PasswordBoxStyle.xaml">
  1054. <Generator>MSBuild:Compile</Generator>
  1055. <SubType>Designer</SubType>
  1056. </Page>
  1057. <Page Include="Style\SeaBlue\StyleA.xaml">
  1058. <Generator>MSBuild:Compile</Generator>
  1059. <SubType>Designer</SubType>
  1060. </Page>
  1061. <Page Include="Style\SeaBlue\TabControlStyle.xaml">
  1062. <Generator>MSBuild:Compile</Generator>
  1063. <SubType>Designer</SubType>
  1064. </Page>
  1065. <Page Include="Style\SeaBlue\TextBlockStyle.xaml">
  1066. <Generator>MSBuild:Compile</Generator>
  1067. <SubType>Designer</SubType>
  1068. </Page>
  1069. <Page Include="Style\SeaBlue\TextBoxStyle.xaml">
  1070. <Generator>MSBuild:Compile</Generator>
  1071. <SubType>Designer</SubType>
  1072. </Page>
  1073. <Page Include="Style\SeaBlue\TreeViewStyle.xaml">
  1074. <Generator>MSBuild:Compile</Generator>
  1075. <SubType>Designer</SubType>
  1076. </Page>
  1077. <Page Include="Style\SeaBlue\WindowStyle.xaml">
  1078. <Generator>MSBuild:Compile</Generator>
  1079. <SubType>Designer</SubType>
  1080. </Page>
  1081. <Page Include="Style\DeepBlue\ButtonStyle.xaml">
  1082. <Generator>MSBuild:Compile</Generator>
  1083. <SubType>Designer</SubType>
  1084. </Page>
  1085. <Page Include="Style\DeepBlue\ComboBoxStyle.xaml">
  1086. <Generator>MSBuild:Compile</Generator>
  1087. <SubType>Designer</SubType>
  1088. </Page>
  1089. <Page Include="Style\DeepBlue\CommonStyle.xaml">
  1090. <Generator>MSBuild:Compile</Generator>
  1091. <SubType>Designer</SubType>
  1092. </Page>
  1093. <Page Include="Style\DeepBlue\GroupBoxStyle.xaml">
  1094. <Generator>MSBuild:Compile</Generator>
  1095. <SubType>Designer</SubType>
  1096. </Page>
  1097. <Page Include="Style\DeepBlue\LabelStyle.xaml">
  1098. <Generator>MSBuild:Compile</Generator>
  1099. <SubType>Designer</SubType>
  1100. </Page>
  1101. <Page Include="Style\DeepBlue\ListBoxStyle.xaml">
  1102. <Generator>MSBuild:Compile</Generator>
  1103. <SubType>Designer</SubType>
  1104. </Page>
  1105. <Page Include="Style\DeepBlue\ListViewStyle.xaml">
  1106. <Generator>MSBuild:Compile</Generator>
  1107. <SubType>Designer</SubType>
  1108. </Page>
  1109. <Page Include="Style\DeepBlue\PasswordBoxStyle.xaml">
  1110. <Generator>MSBuild:Compile</Generator>
  1111. <SubType>Designer</SubType>
  1112. </Page>
  1113. <Page Include="Style\DeepBlue\StyleA.xaml">
  1114. <Generator>MSBuild:Compile</Generator>
  1115. <SubType>Designer</SubType>
  1116. </Page>
  1117. <Page Include="Style\DeepBlue\TabControlStyle.xaml">
  1118. <Generator>MSBuild:Compile</Generator>
  1119. <SubType>Designer</SubType>
  1120. </Page>
  1121. <Page Include="Style\DeepBlue\TextBlockStyle.xaml">
  1122. <Generator>MSBuild:Compile</Generator>
  1123. <SubType>Designer</SubType>
  1124. </Page>
  1125. <Page Include="Style\DeepBlue\TextBoxStyle.xaml">
  1126. <Generator>MSBuild:Compile</Generator>
  1127. <SubType>Designer</SubType>
  1128. </Page>
  1129. <Page Include="Style\DeepBlue\TreeViewStyle.xaml">
  1130. <Generator>MSBuild:Compile</Generator>
  1131. <SubType>Designer</SubType>
  1132. </Page>
  1133. <Page Include="Style\DeepBlue\WindowStyle.xaml">
  1134. <Generator>MSBuild:Compile</Generator>
  1135. <SubType>Designer</SubType>
  1136. </Page>
  1137. <Page Include="Style\GroupBoxStyle.xaml">
  1138. <Generator>MSBuild:Compile</Generator>
  1139. <SubType>Designer</SubType>
  1140. </Page>
  1141. <Page Include="Style\LabelStyle.xaml">
  1142. <Generator>MSBuild:Compile</Generator>
  1143. <SubType>Designer</SubType>
  1144. </Page>
  1145. <Page Include="Style\ListBoxStyle.xaml">
  1146. <Generator>MSBuild:Compile</Generator>
  1147. <SubType>Designer</SubType>
  1148. </Page>
  1149. <Page Include="Style\ListViewStyle.xaml">
  1150. <Generator>MSBuild:Compile</Generator>
  1151. <SubType>Designer</SubType>
  1152. </Page>
  1153. <Page Include="Style\PasswordBoxStyle.xaml">
  1154. <Generator>MSBuild:Compile</Generator>
  1155. <SubType>Designer</SubType>
  1156. </Page>
  1157. <Page Include="Style\TabControlStyle.xaml">
  1158. <Generator>MSBuild:Compile</Generator>
  1159. <SubType>Designer</SubType>
  1160. </Page>
  1161. <Page Include="Style\TextBlockStyle.xaml">
  1162. <Generator>MSBuild:Compile</Generator>
  1163. <SubType>Designer</SubType>
  1164. </Page>
  1165. <Page Include="Style\TextBoxStyle.xaml">
  1166. <Generator>MSBuild:Compile</Generator>
  1167. <SubType>Designer</SubType>
  1168. </Page>
  1169. <Page Include="Style\TreeViewStyle.xaml">
  1170. <Generator>MSBuild:Compile</Generator>
  1171. <SubType>Designer</SubType>
  1172. </Page>
  1173. <Page Include="Style\StyleA.xaml">
  1174. <Generator>MSBuild:Compile</Generator>
  1175. <SubType>Designer</SubType>
  1176. </Page>
  1177. <Page Include="Style\WindowStyle.xaml">
  1178. <Generator>MSBuild:Compile</Generator>
  1179. <SubType>Designer</SubType>
  1180. </Page>
  1181. <Page Include="View\Common\EventView.xaml">
  1182. <Generator>MSBuild:Compile</Generator>
  1183. <SubType>Designer</SubType>
  1184. </Page>
  1185. <Page Include="View\Common\MonitorView.xaml">
  1186. <Generator>MSBuild:Compile</Generator>
  1187. <SubType>Designer</SubType>
  1188. </Page>
  1189. <Page Include="View\Common\ParameterView.xaml">
  1190. <Generator>MSBuild:Compile</Generator>
  1191. <SubType>Designer</SubType>
  1192. </Page>
  1193. <Page Include="E95Template\BottomView.xaml">
  1194. <Generator>MSBuild:Compile</Generator>
  1195. <SubType>Designer</SubType>
  1196. </Page>
  1197. <Page Include="E95Template\CenterTabView.xaml">
  1198. <Generator>MSBuild:Compile</Generator>
  1199. <SubType>Designer</SubType>
  1200. </Page>
  1201. <Page Include="E95Template\CenterView.xaml">
  1202. <Generator>MSBuild:Compile</Generator>
  1203. <SubType>Designer</SubType>
  1204. </Page>
  1205. <Page Include="E95Template\StandardFrameWindow.xaml">
  1206. <Generator>MSBuild:Compile</Generator>
  1207. <SubType>Designer</SubType>
  1208. </Page>
  1209. </ItemGroup>
  1210. <ItemGroup>
  1211. <Resource Include="Resources\barcode.png" />
  1212. <Resource Include="Resources\Blue.png" />
  1213. <Resource Include="Resources\cb.png" />
  1214. <Resource Include="Resources\closed.png" />
  1215. <Resource Include="Resources\CustomDialogInformation.png" />
  1216. <Resource Include="Resources\Exit.png" />
  1217. <Resource Include="Resources\Gasbox.png" />
  1218. <Resource Include="Resources\Heater.png" />
  1219. <Resource Include="Resources\HeaterShining.png" />
  1220. <Resource Include="Resources\lights.png" />
  1221. <Resource Include="Resources\Lime.png" />
  1222. <Content Include="Resources\default_ui.ico" />
  1223. <Resource Include="Resources\Loading1.gif" />
  1224. <Resource Include="Resources\Login\按钮.png" />
  1225. <Resource Include="Resources\Login\按钮_悬停.png" />
  1226. <Resource Include="Resources\Login\按钮_点击.png" />
  1227. <Resource Include="Resources\Login\输入框.png" />
  1228. <Resource Include="Resources\Login\输入框_选择.png" />
  1229. <Resource Include="Resources\Main\login.png" />
  1230. <Resource Include="Resources\Main\LogoEmpty.png" />
  1231. <Resource Include="Resources\Main\tab.png" />
  1232. <Resource Include="Resources\Main\tab_悬停.png" />
  1233. <Resource Include="Resources\Main\tab次级.png" />
  1234. <Resource Include="Resources\Main\tab次级_悬停.png" />
  1235. <Resource Include="Resources\Main\上一个.png" />
  1236. <Resource Include="Resources\Main\上一个_悬停.png" />
  1237. <Resource Include="Resources\Main\上一个_点击.png" />
  1238. <Resource Include="Resources\Main\下一个.png" />
  1239. <Resource Include="Resources\Main\下一个_悬停.png" />
  1240. <Resource Include="Resources\Main\下一个_点击.png" />
  1241. <Resource Include="Resources\Main\下拉框_底板.png" />
  1242. <Resource Include="Resources\Main\下拉框_底板150.png" />
  1243. <Resource Include="Resources\Main\下拉框_底板JETP.png" />
  1244. <Resource Include="Resources\Main\主界面_切片.png" />
  1245. <Resource Include="Resources\Main\主界面_切片SORTER.png" />
  1246. <Resource Include="Resources\Main\主菜单按钮.png" />
  1247. <Resource Include="Resources\Main\主菜单按钮150.png" />
  1248. <Resource Include="Resources\Main\主菜单按钮_悬停.png" />
  1249. <Resource Include="Resources\Main\主菜单按钮_悬停150.png" />
  1250. <Resource Include="Resources\Main\主菜单按钮_点击.png" />
  1251. <Resource Include="Resources\Main\主菜单按钮_点击150.png" />
  1252. <Resource Include="Resources\Main\主菜单按钮_选中.png" />
  1253. <Resource Include="Resources\Main\主菜单按钮_选中150.png" />
  1254. <Resource Include="Resources\Main\事件按钮.png" />
  1255. <Resource Include="Resources\Main\事件按钮_悬停.png" />
  1256. <Resource Include="Resources\Main\事件按钮_点击.png" />
  1257. <Resource Include="Resources\Main\拖动组件.png" />
  1258. <Resource Include="Resources\opened.png" />
  1259. <Resource Include="Resources\Pump\boost_pump_enabled.png" />
  1260. <Resource Include="Resources\Pump\boost_pump_error.png" />
  1261. <Resource Include="Resources\Pump\boost_pump_off.png" />
  1262. <Resource Include="Resources\Pump\boost_pump_on.png" />
  1263. <Resource Include="Resources\Pump\boost_pump_warning.png" />
  1264. <Resource Include="Resources\Pump\pump_error.png" />
  1265. <Resource Include="Resources\Pump\pump_off.png" />
  1266. <Resource Include="Resources\Pump\pump_on.png" />
  1267. <Resource Include="Resources\Pump\pump_warning.png" />
  1268. <Resource Include="Resources\RecipeFile.png" />
  1269. <Resource Include="Resources\RecipeFolder.png" />
  1270. <Resource Include="Resources\red.png" />
  1271. <Resource Include="Resources\SystemLog\Alarm.png" />
  1272. <Resource Include="Resources\SystemLog\EquipLog.png" />
  1273. <Resource Include="Resources\SystemLog\Information.png" />
  1274. <Resource Include="Resources\SystemLog\UserOperation.png" />
  1275. <Resource Include="Resources\SystemLog\Warning.png" />
  1276. <Content Include="Resources\Valve\FastPumpValve.png" />
  1277. <Content Include="Resources\Valve\PumpBlack.png" />
  1278. <Content Include="Resources\Valve\PumpGray.png" />
  1279. <Content Include="Resources\Valve\PumpGreen.png" />
  1280. <Content Include="Resources\Valve\PumpRed.png" />
  1281. <Content Include="Resources\Valve\SlowPumpValve.png" />
  1282. <Content Include="Resources\Valve\ValveClosed.png" />
  1283. <Content Include="Resources\Valve\valveCloseHorizontal.png" />
  1284. <Content Include="Resources\Valve\valveCloseVertical.png" />
  1285. <Content Include="Resources\Valve\valveOpenHorizontal.png" />
  1286. <Content Include="Resources\Valve\valveOpenVertical.png" />
  1287. <Resource Include="Resources\Yellow.png" />
  1288. <Resource Include="Resources\zoom_all.png" />
  1289. </ItemGroup>
  1290. <ItemGroup>
  1291. <EmbeddedResource Include="Properties\Resources.resx">
  1292. <Generator>ResXFileCodeGenerator</Generator>
  1293. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  1294. </EmbeddedResource>
  1295. </ItemGroup>
  1296. <ItemGroup>
  1297. <ProjectReference Include="..\Common\Common.csproj">
  1298. <Project>{9cd2a6be-1971-4e74-b49e-547982f64034}</Project>
  1299. <Name>Common</Name>
  1300. </ProjectReference>
  1301. </ItemGroup>
  1302. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  1303. </Project>