UICore.csproj 59 KB

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