UIClient.csproj 114 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  4. <PropertyGroup>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7. <ProjectGuid>{1CE52879-0B94-4250-BE8A-5149E9396C54}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>MECF.Framework.UI.Client</RootNamespace>
  11. <AssemblyName>MECF.Framework.UI.Client</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>TRACE;DEBUG;NET,EXPORT_TO_CSV</DefineConstants>
  22. <ErrorReport>prompt</ErrorReport>
  23. <WarningLevel>4</WarningLevel>
  24. <Prefer32Bit>false</Prefer32Bit>
  25. </PropertyGroup>
  26. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  27. <DebugType>pdbonly</DebugType>
  28. <Optimize>true</Optimize>
  29. <OutputPath>bin\Release\</OutputPath>
  30. <DefineConstants>TRACE</DefineConstants>
  31. <ErrorReport>prompt</ErrorReport>
  32. <WarningLevel>4</WarningLevel>
  33. <Prefer32Bit>false</Prefer32Bit>
  34. </PropertyGroup>
  35. <ItemGroup>
  36. <Reference Include="DocumentFormat.OpenXml, Version=2.10.1.0, Culture=neutral, PublicKeyToken=8fb06cb64d019a17, processorArchitecture=MSIL">
  37. <SpecificVersion>False</SpecificVersion>
  38. <HintPath>..\..\ThirdParty\dlls\DocumentFormat.OpenXml.dll</HintPath>
  39. </Reference>
  40. <Reference Include="log4net">
  41. <HintPath>..\..\ThirdParty\dlls\log4net.dll</HintPath>
  42. </Reference>
  43. <Reference Include="Microsoft.DwayneNeed">
  44. <HintPath>..\..\ThirdParty\dlls\Microsoft.DwayneNeed.dll</HintPath>
  45. </Reference>
  46. <Reference Include="Microsoft.Expression.Interactions, Version=4.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  47. <SpecificVersion>False</SpecificVersion>
  48. <HintPath>..\..\ThirdParty\dlls\Microsoft.Expression.Interactions.dll</HintPath>
  49. </Reference>
  50. <Reference Include="Microsoft.VisualBasic" />
  51. <Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
  52. <SpecificVersion>False</SpecificVersion>
  53. <HintPath>..\..\ThirdParty\dlls\Newtonsoft.Json.dll</HintPath>
  54. </Reference>
  55. <Reference Include="PresentationCore" />
  56. <Reference Include="PresentationFramework" />
  57. <Reference Include="PresentationFramework.Aero" />
  58. <Reference Include="SciChart.Charting, Version=6.0.1.12982, Culture=neutral, PublicKeyToken=b55dd9efe817e823, processorArchitecture=MSIL">
  59. <SpecificVersion>False</SpecificVersion>
  60. <HintPath>..\..\ThirdParty\dlls\SciCart\SciChart.Charting.dll</HintPath>
  61. </Reference>
  62. <Reference Include="SciChart.Core, Version=6.0.1.12982, Culture=neutral, PublicKeyToken=b55dd9efe817e823, processorArchitecture=MSIL">
  63. <SpecificVersion>False</SpecificVersion>
  64. <HintPath>..\..\ThirdParty\dlls\SciCart\SciChart.Core.dll</HintPath>
  65. </Reference>
  66. <Reference Include="SciChart.Data, Version=6.0.1.12982, Culture=neutral, PublicKeyToken=b55dd9efe817e823, processorArchitecture=MSIL">
  67. <SpecificVersion>False</SpecificVersion>
  68. <HintPath>..\..\ThirdParty\dlls\SciCart\SciChart.Data.dll</HintPath>
  69. </Reference>
  70. <Reference Include="SciChart.Drawing, Version=6.0.1.12982, Culture=neutral, PublicKeyToken=b55dd9efe817e823, processorArchitecture=MSIL">
  71. <SpecificVersion>False</SpecificVersion>
  72. <HintPath>..\..\ThirdParty\dlls\SciCart\SciChart.Drawing.dll</HintPath>
  73. </Reference>
  74. <Reference Include="System" />
  75. <Reference Include="System.ComponentModel.DataAnnotations" />
  76. <Reference Include="System.Core" />
  77. <Reference Include="System.Drawing" />
  78. <Reference Include="System.Management" />
  79. <Reference Include="System.Runtime.Serialization" />
  80. <Reference Include="System.Windows" />
  81. <Reference Include="System.Windows.Forms" />
  82. <Reference Include="System.Windows.Interactivity, Version=4.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  83. <SpecificVersion>False</SpecificVersion>
  84. <HintPath>..\..\ThirdParty\dlls\System.Windows.Interactivity.dll</HintPath>
  85. </Reference>
  86. <Reference Include="System.Xaml" />
  87. <Reference Include="System.Xml.Linq" />
  88. <Reference Include="System.Data.DataSetExtensions" />
  89. <Reference Include="Microsoft.CSharp" />
  90. <Reference Include="System.Data" />
  91. <Reference Include="System.Xml" />
  92. <Reference Include="UIAutomationProvider" />
  93. <Reference Include="UIAutomationTypes" />
  94. <Reference Include="WindowsBase" />
  95. <Reference Include="WindowsFormsIntegration" />
  96. <Reference Include="Xceed.Wpf.Toolkit, Version=2.0.0.0, Culture=neutral, PublicKeyToken=3e4669d2f30244f4, processorArchitecture=MSIL">
  97. <SpecificVersion>False</SpecificVersion>
  98. <HintPath>..\..\ThirdParty\dlls\Xceed.Wpf.Toolkit.dll</HintPath>
  99. </Reference>
  100. </ItemGroup>
  101. <ItemGroup>
  102. <Compile Include="Caliburn.Micro\Action.cs" />
  103. <Compile Include="Caliburn.Micro\ActionExecutionContext.cs" />
  104. <Compile Include="Caliburn.Micro\ActionMessage.cs" />
  105. <Compile Include="Caliburn.Micro\AssemblySource.cs" />
  106. <Compile Include="Caliburn.Micro\Bind.cs" />
  107. <Compile Include="Caliburn.Micro\BindingScope.cs" />
  108. <Compile Include="Caliburn.Micro\BooleanToVisibilityConverter.cs" />
  109. <Compile Include="Caliburn.Micro\Bootstrapper.cs" />
  110. <Compile Include="Caliburn.Micro\ChildResolver.cs" />
  111. <Compile Include="Caliburn.Micro\ConventionManager.cs" />
  112. <Compile Include="Caliburn.Micro\Core\ActivationEventArgs.cs" />
  113. <Compile Include="Caliburn.Micro\Core\ActivationProcessedEventArgs.cs" />
  114. <Compile Include="Caliburn.Micro\Core\BindableCollection.cs" />
  115. <Compile Include="Caliburn.Micro\Core\Conductor.cs" />
  116. <Compile Include="Caliburn.Micro\Core\ConductorBase.cs" />
  117. <Compile Include="Caliburn.Micro\Core\ConductorBaseWithActiveItem.cs" />
  118. <Compile Include="Caliburn.Micro\Core\ConductorWithCollectionAllActive.cs" />
  119. <Compile Include="Caliburn.Micro\Core\ConductorWithCollectionOneActive.cs" />
  120. <Compile Include="Caliburn.Micro\Core\ContainerExtensions.cs" />
  121. <Compile Include="Caliburn.Micro\Core\ContinueResultDecorator.cs" />
  122. <Compile Include="Caliburn.Micro\Core\Coroutine.cs" />
  123. <Compile Include="Caliburn.Micro\Core\CoroutineExecutionContext.cs" />
  124. <Compile Include="Caliburn.Micro\Core\DeactivationEventArgs.cs" />
  125. <Compile Include="Caliburn.Micro\Core\DebugLog.cs" />
  126. <Compile Include="Caliburn.Micro\Core\DefaultCloseStrategy.cs" />
  127. <Compile Include="Caliburn.Micro\Core\DefaultPlatformProvider.cs" />
  128. <Compile Include="Caliburn.Micro\Core\DelegateResult.cs" />
  129. <Compile Include="Caliburn.Micro\Core\EnumerableExtensions.cs" />
  130. <Compile Include="Caliburn.Micro\Core\EventAggregator.cs" />
  131. <Compile Include="Caliburn.Micro\Core\EventAggregatorExtensions.cs" />
  132. <Compile Include="Caliburn.Micro\Core\Execute.cs" />
  133. <Compile Include="Caliburn.Micro\Core\ExpressionExtensions.cs" />
  134. <Compile Include="Caliburn.Micro\Core\ExtensionMethods.cs" />
  135. <Compile Include="Caliburn.Micro\Core\IActivate.cs" />
  136. <Compile Include="Caliburn.Micro\Core\IChild.cs" />
  137. <Compile Include="Caliburn.Micro\Core\IClose.cs" />
  138. <Compile Include="Caliburn.Micro\Core\ICloseStrategy.cs" />
  139. <Compile Include="Caliburn.Micro\Core\IConductor.cs" />
  140. <Compile Include="Caliburn.Micro\Core\IDeactivate.cs" />
  141. <Compile Include="Caliburn.Micro\Core\IEventAggregator.cs" />
  142. <Compile Include="Caliburn.Micro\Core\IGuardClose.cs" />
  143. <Compile Include="Caliburn.Micro\Core\IHandle.cs" />
  144. <Compile Include="Caliburn.Micro\Core\IHandleWithCoroutine.cs" />
  145. <Compile Include="Caliburn.Micro\Core\IHandleWithTask.cs" />
  146. <Compile Include="Caliburn.Micro\Core\IHaveActiveItem.cs" />
  147. <Compile Include="Caliburn.Micro\Core\IHaveDisplayName.cs" />
  148. <Compile Include="Caliburn.Micro\Core\ILog.cs" />
  149. <Compile Include="Caliburn.Micro\Core\INotifyPropertyChangedEx.cs" />
  150. <Compile Include="Caliburn.Micro\Core\IObservableCollection.cs" />
  151. <Compile Include="Caliburn.Micro\Core\IoC.cs" />
  152. <Compile Include="Caliburn.Micro\Core\IParent.cs" />
  153. <Compile Include="Caliburn.Micro\Core\IPlatformProvider.cs" />
  154. <Compile Include="Caliburn.Micro\Core\IResult.cs" />
  155. <Compile Include="Caliburn.Micro\Core\IScreen.cs" />
  156. <Compile Include="Caliburn.Micro\Core\IViewAware.cs" />
  157. <Compile Include="Caliburn.Micro\Core\LogManager.cs" />
  158. <Compile Include="Caliburn.Micro\Core\NameTransformer.cs" />
  159. <Compile Include="Caliburn.Micro\Core\OverrideCancelResultDecorator.cs" />
  160. <Compile Include="Caliburn.Micro\Core\PlatformProvider.cs" />
  161. <Compile Include="Caliburn.Micro\Core\PortableReflectionExtensions.cs" />
  162. <Compile Include="Caliburn.Micro\Core\PropertyChangedBase.cs" />
  163. <Compile Include="Caliburn.Micro\Core\RegExHelper.cs" />
  164. <Compile Include="Caliburn.Micro\Core\RescueResultDecorator.cs" />
  165. <Compile Include="Caliburn.Micro\Core\ResultCompletionEventArgs.cs" />
  166. <Compile Include="Caliburn.Micro\Core\ResultDecoratorBase.cs" />
  167. <Compile Include="Caliburn.Micro\Core\ResultExtensions.cs" />
  168. <Compile Include="Caliburn.Micro\Core\Screen.cs" />
  169. <Compile Include="Caliburn.Micro\Core\ScreenExtensions.cs" />
  170. <Compile Include="Caliburn.Micro\Core\SequentialResult.cs" />
  171. <Compile Include="Caliburn.Micro\Core\SimpleContainer.cs" />
  172. <Compile Include="Caliburn.Micro\Core\SimpleResult.cs" />
  173. <Compile Include="Caliburn.Micro\Core\StringSplitter.cs" />
  174. <Compile Include="Caliburn.Micro\Core\TaskExtensions.cs" />
  175. <Compile Include="Caliburn.Micro\Core\TaskResult.cs" />
  176. <Compile Include="Caliburn.Micro\Core\TypeMappingConfiguration.cs" />
  177. <Compile Include="Caliburn.Micro\Core\ViewAttachedEventArgs.cs" />
  178. <Compile Include="Caliburn.Micro\Core\ViewAware.cs" />
  179. <Compile Include="Caliburn.Micro\Core\WeakValueDictionary.cs" />
  180. <Compile Include="Caliburn.Micro\DependencyPropertyHelper.cs" />
  181. <Compile Include="Caliburn.Micro\ElementConvention.cs" />
  182. <Compile Include="Caliburn.Micro\IHaveParameters.cs" />
  183. <Compile Include="Caliburn.Micro\Message.cs" />
  184. <Compile Include="Caliburn.Micro\MessageBinder.cs" />
  185. <Compile Include="Caliburn.Micro\net40\AttachedCollection.cs" />
  186. <Compile Include="Caliburn.Micro\net40\Parameter.cs" />
  187. <Compile Include="Caliburn.Micro\net40\WindowManager.cs" />
  188. <Compile Include="Caliburn.Micro\Parser.cs" />
  189. <Compile Include="CenterViews\Alarms\AlarmProvider.cs" />
  190. <Compile Include="CenterViews\Alarms\ModuleAlarm\ModuleAlarmView.xaml.cs">
  191. <DependentUpon>ModuleAlarmView.xaml</DependentUpon>
  192. </Compile>
  193. <Compile Include="CenterViews\Alarms\ModuleAlarm\ModuleAlarmViewModel.cs" />
  194. <Compile Include="CenterViews\Alarms\Alarm\AlarmView.xaml.cs">
  195. <DependentUpon>AlarmView.xaml</DependentUpon>
  196. </Compile>
  197. <Compile Include="CenterViews\Alarms\Alarm\AlarmViewModel.cs" />
  198. <Compile Include="CenterViews\Configs\SignalTowerConfig\RadioCheckBox.xaml.cs">
  199. <DependentUpon>RadioCheckBox.xaml</DependentUpon>
  200. </Compile>
  201. <Compile Include="CenterViews\Configs\SignalTowerConfig\SignalTowerConfigView.xaml.cs">
  202. <DependentUpon>SignalTowerConfigView.xaml</DependentUpon>
  203. </Compile>
  204. <Compile Include="CenterViews\Configs\SignalTowerConfig\SignalTowerConfigViewModel.cs" />
  205. <Compile Include="CenterViews\Configs\DataConfig\DataConfigView.xaml.cs">
  206. <DependentUpon>DataConfigView.xaml</DependentUpon>
  207. </Compile>
  208. <Compile Include="CenterViews\Configs\DataConfig\DataConfigViewModel.cs" />
  209. <Compile Include="CenterViews\Configs\SystemConfig\ShutDonwControlView.xaml.cs">
  210. <DependentUpon>ShutDonwControlView.xaml</DependentUpon>
  211. </Compile>
  212. <Compile Include="CenterViews\Configs\SystemConfig\ShutDonwControlViewModel.cs" />
  213. <Compile Include="CenterViews\Controls\BoatWaferItem.cs" />
  214. <Compile Include="CenterViews\Controls\PaginationList.xaml.cs">
  215. <DependentUpon>PaginationList.xaml</DependentUpon>
  216. </Compile>
  217. <Compile Include="CenterViews\DataLogs\DataHistory\SelectUserDefineView.xaml.cs">
  218. <DependentUpon>SelectUserDefineView.xaml</DependentUpon>
  219. </Compile>
  220. <Compile Include="CenterViews\DataLogs\DataHistory\SelectUserDefineViewModel.cs" />
  221. <Compile Include="CenterViews\DataLogs\Event\SelectDateView.xaml.cs">
  222. <DependentUpon>SelectDateView.xaml</DependentUpon>
  223. </Compile>
  224. <Compile Include="CenterViews\DataLogs\Event\SelectDateViewModel.cs" />
  225. <Compile Include="CenterViews\DataLogs\Event\SelectFilterConditionView.xaml.cs">
  226. <DependentUpon>SelectFilterConditionView.xaml</DependentUpon>
  227. </Compile>
  228. <Compile Include="CenterViews\DataLogs\Event\SelectFilterConditionViewModel.cs" />
  229. <Compile Include="CenterViews\DataLogs\ProcessHistory\BatchDetailView.xaml.cs">
  230. <DependentUpon>BatchDetailView.xaml</DependentUpon>
  231. </Compile>
  232. <Compile Include="CenterViews\DataLogs\ProcessHistory\BatchDetailViewModel.cs" />
  233. <Compile Include="CenterViews\DataLogs\ProcessHistory\CassetteDetailView.xaml.cs">
  234. <DependentUpon>CassetteDetailView.xaml</DependentUpon>
  235. </Compile>
  236. <Compile Include="CenterViews\DataLogs\ProcessHistory\CassetteDetailViewModel.cs" />
  237. <Compile Include="CenterViews\DataLogs\ProcessHistory\ProcessDetailV2View.xaml.cs">
  238. <DependentUpon>ProcessDetailV2View.xaml</DependentUpon>
  239. </Compile>
  240. <Compile Include="CenterViews\DataLogs\ProcessHistory\ProcessDetailV2ViewModel.cs" />
  241. <Compile Include="CenterViews\DataLogs\ProcessHistory\ProcessDetailView.xaml.cs">
  242. <DependentUpon>ProcessDetailView.xaml</DependentUpon>
  243. </Compile>
  244. <Compile Include="CenterViews\DataLogs\ProcessHistory\ProcessDetailViewModel.cs" />
  245. <Compile Include="CenterViews\DataLogs\ProcessHistory\ProcessExportAllView.xaml.cs">
  246. <DependentUpon>ProcessExportAllView.xaml</DependentUpon>
  247. </Compile>
  248. <Compile Include="CenterViews\DataLogs\ProcessHistory\ProcessExportAllViewModel.cs" />
  249. <Compile Include="CenterViews\DataLogs\ProcessHistory\ProcessHistoryTwoView.xaml.cs">
  250. <DependentUpon>ProcessHistoryTwoView.xaml</DependentUpon>
  251. </Compile>
  252. <Compile Include="CenterViews\DataLogs\ProcessHistory\ProcessHistoryTwoViewModel.cs" />
  253. <Compile Include="CenterViews\DataLogs\WaferHistory\WaferHistory2View.xaml.cs">
  254. <DependentUpon>WaferHistory2View.xaml</DependentUpon>
  255. </Compile>
  256. <Compile Include="CenterViews\DataLogs\WaferHistory\WaferHistory2ViewModel.cs" />
  257. <Compile Include="CenterViews\DataLogs\WaferHistory\WaferHistoryDBView.xaml.cs">
  258. <DependentUpon>WaferHistoryDBView.xaml</DependentUpon>
  259. </Compile>
  260. <Compile Include="CenterViews\DataLogs\WaferHistory\WaferHistoryDBViewModel.cs" />
  261. <Compile Include="CenterViews\Dialogs\FullKeyboard.xaml.cs">
  262. <DependentUpon>FullKeyboard.xaml</DependentUpon>
  263. </Compile>
  264. <Compile Include="CenterViews\Dialogs\InputDialogView.xaml.cs">
  265. <DependentUpon>InputDialogView.xaml</DependentUpon>
  266. </Compile>
  267. <Compile Include="CenterViews\Dialogs\InputDialogViewModel.cs" />
  268. <Compile Include="CenterViews\Dialogs\ItemsSelectDialogView.xaml.cs">
  269. <DependentUpon>ItemsSelectDialogView.xaml</DependentUpon>
  270. </Compile>
  271. <Compile Include="CenterViews\Dialogs\ItemsSelectDialogViewModel.cs" />
  272. <Compile Include="CenterViews\Dialogs\ListDialogProView.xaml.cs">
  273. <DependentUpon>ListDialogProView.xaml</DependentUpon>
  274. </Compile>
  275. <Compile Include="CenterViews\Dialogs\ListDialogProViewModel.cs" />
  276. <Compile Include="CenterViews\Dialogs\ListDialogView.xaml.cs">
  277. <DependentUpon>ListDialogView.xaml</DependentUpon>
  278. </Compile>
  279. <Compile Include="CenterViews\Dialogs\ListDialogViewModel.cs" />
  280. <Compile Include="CenterViews\Dialogs\NumberDigitKeyboard.xaml.cs">
  281. <DependentUpon>NumberDigitKeyboard.xaml</DependentUpon>
  282. </Compile>
  283. <Compile Include="CenterViews\Dialogs\NumberKeyboard.xaml.cs">
  284. <DependentUpon>NumberKeyboard.xaml</DependentUpon>
  285. </Compile>
  286. <Compile Include="CenterViews\Dialogs\NumberKeyborardNoMinus.xaml.cs">
  287. <DependentUpon>NumberKeyborardNoMinus.xaml</DependentUpon>
  288. </Compile>
  289. <Compile Include="CenterViews\Dialogs\PresetGroupSaveDialog.xaml.cs" />
  290. <Compile Include="CenterViews\Dialogs\PurgeDialogView.xaml.cs">
  291. <DependentUpon>PurgeDialogView.xaml</DependentUpon>
  292. </Compile>
  293. <Compile Include="CenterViews\Dialogs\PurgeDialogViewModel.cs" />
  294. <Compile Include="CenterViews\Dialogs\TimeKeyboard.xaml.cs">
  295. <DependentUpon>TimeKeyboard.xaml</DependentUpon>
  296. </Compile>
  297. <Compile Include="CenterViews\Editors\ParameterFormatBuilder.cs" />
  298. <Compile Include="CenterViews\Editors\ParameterTreeBuilder.cs" />
  299. <Compile Include="CenterViews\Editors\Parameter\ParameterSelectDialogView.xaml.cs">
  300. <DependentUpon>ParameterSelectDialogView.xaml</DependentUpon>
  301. </Compile>
  302. <Compile Include="CenterViews\Editors\Parameter\ParameterSelectDialogViewModel.cs" />
  303. <Compile Include="CenterViews\Editors\RecipeConfig\RecipeConfigView.xaml.cs">
  304. <DependentUpon>RecipeConfigView.xaml</DependentUpon>
  305. </Compile>
  306. <Compile Include="CenterViews\Editors\RecipeConfig\RecipeConfigViewModel.cs" />
  307. <Compile Include="CenterViews\Editors\Recipe\CGlobal.cs" />
  308. <Compile Include="CenterViews\Editors\Recipe\PopSettingDialogView.xaml.cs">
  309. <DependentUpon>PopSettingDialogView.xaml</DependentUpon>
  310. </Compile>
  311. <Compile Include="CenterViews\Editors\Recipe\RecipeDataBase.cs" />
  312. <Compile Include="CenterViews\Editors\Recipe\RecipeSelectDialogView.xaml.cs">
  313. <DependentUpon>RecipeSelectDialogView.xaml</DependentUpon>
  314. </Compile>
  315. <Compile Include="CenterViews\Editors\Recipe\PopSettingDialogViewModel.cs" />
  316. <Compile Include="CenterViews\Editors\Recipe\RecipeSelectDialogViewModel.cs" />
  317. <Compile Include="CenterViews\Editors\Recipe\RecipeStepTimeView.xaml.cs">
  318. <DependentUpon>RecipeStepTimeView.xaml</DependentUpon>
  319. </Compile>
  320. <Compile Include="CenterViews\Editors\Recipe\RecipeStepTimeViewModel.cs" />
  321. <Compile Include="CenterViews\Editors\Recipe\SaveToDialogView.xaml.cs">
  322. <DependentUpon>SaveToDialogView.xaml</DependentUpon>
  323. </Compile>
  324. <Compile Include="CenterViews\Editors\Recipe\SaveToDialogViewModel.cs" />
  325. <Compile Include="CenterViews\Maitenances\CalibrationTable\CalibrationTableView.xaml.cs">
  326. <DependentUpon>CalibrationTableView.xaml</DependentUpon>
  327. </Compile>
  328. <Compile Include="CenterViews\Maitenances\CalibrationTable\CalibrationTableViewModel.cs" />
  329. <Compile Include="CenterViews\Maitenances\Connections\ConnectionView.xaml.cs">
  330. <DependentUpon>ConnectionView.xaml</DependentUpon>
  331. </Compile>
  332. <Compile Include="CenterViews\Maitenances\Connections\ConnectionViewModel.cs" />
  333. <Compile Include="CenterViews\Maitenances\FFU\FFUView.xaml.cs">
  334. <DependentUpon>FFUView.xaml</DependentUpon>
  335. </Compile>
  336. <Compile Include="CenterViews\Maitenances\FFU\FFUViewModel.cs" />
  337. <Compile Include="CenterViews\Maitenances\IO3\IO3View.xaml.cs">
  338. <DependentUpon>IO3View.xaml</DependentUpon>
  339. </Compile>
  340. <Compile Include="CenterViews\Maitenances\IO3\IO3ViewModel.cs" />
  341. <Compile Include="CenterViews\Maitenances\MFCVerification\MFCVerificationView.xaml.cs">
  342. <DependentUpon>MFCVerificationView.xaml</DependentUpon>
  343. </Compile>
  344. <Compile Include="CenterViews\Maitenances\MFCVerification\MFCVerificationViewModel.cs" />
  345. <Compile Include="CenterViews\Parameter\AlarmConditionParameterData.cs" />
  346. <Compile Include="CenterViews\Parameter\AlarmConditionTable.cs" />
  347. <Compile Include="CenterViews\Parameter\AlarmtableParameterView.xaml.cs">
  348. <DependentUpon>AlarmtableParameterView.xaml</DependentUpon>
  349. </Compile>
  350. <Compile Include="CenterViews\Parameter\AlarmtableParameterViewModel.cs" />
  351. <Compile Include="CenterViews\Parameter\APCPIDParameterData.cs" />
  352. <Compile Include="CenterViews\Parameter\APCPIDTable.cs" />
  353. <Compile Include="CenterViews\Parameter\InterlockActionAutoView.xaml.cs">
  354. <DependentUpon>InterlockActionAutoView.xaml</DependentUpon>
  355. </Compile>
  356. <Compile Include="CenterViews\Parameter\InterlockActionAutoViewModel.cs" />
  357. <Compile Include="CenterViews\Parameter\InterlockAPCView.xaml.cs">
  358. <DependentUpon>InterlockAPCView.xaml</DependentUpon>
  359. </Compile>
  360. <Compile Include="CenterViews\Parameter\InterlockAPCViewModel.cs" />
  361. <Compile Include="CenterViews\Parameter\InterlockCheckView.xaml.cs">
  362. <DependentUpon>InterlockCheckView.xaml</DependentUpon>
  363. </Compile>
  364. <Compile Include="CenterViews\Parameter\InterlockCheckViewModel.cs" />
  365. <Compile Include="CenterViews\Parameter\InterlockConditionView.xaml.cs">
  366. <DependentUpon>InterlockConditionView.xaml</DependentUpon>
  367. </Compile>
  368. <Compile Include="CenterViews\Parameter\InterlockConditionViewModel.cs" />
  369. <Compile Include="CenterViews\Parameter\InterlockFlagView.xaml.cs">
  370. <DependentUpon>InterlockFlagView.xaml</DependentUpon>
  371. </Compile>
  372. <Compile Include="CenterViews\Parameter\InterlockFlagViewModel.cs" />
  373. <Compile Include="CenterViews\Parameter\InterlockMFCView.xaml.cs">
  374. <DependentUpon>InterlockMFCView.xaml</DependentUpon>
  375. </Compile>
  376. <Compile Include="CenterViews\Parameter\InterlockMFCViewModel.cs" />
  377. <Compile Include="CenterViews\Parameter\InterlockMFMView.xaml.cs">
  378. <DependentUpon>InterlockMFMView.xaml</DependentUpon>
  379. </Compile>
  380. <Compile Include="CenterViews\Parameter\InterlockMFMViewModel.cs" />
  381. <Compile Include="CenterViews\Parameter\InterlockSelectItemView.xaml.cs">
  382. <DependentUpon>InterlockSelectItemView.xaml</DependentUpon>
  383. </Compile>
  384. <Compile Include="CenterViews\Parameter\InterlockSelectItemViewModel.cs" />
  385. <Compile Include="CenterViews\Parameter\InterlockSNSView.xaml.cs">
  386. <DependentUpon>InterlockSNSView.xaml</DependentUpon>
  387. </Compile>
  388. <Compile Include="CenterViews\Parameter\InterlockSNSViewModel.cs" />
  389. <Compile Include="CenterViews\Parameter\InterlockTEMPView.xaml.cs">
  390. <DependentUpon>InterlockTEMPView.xaml</DependentUpon>
  391. </Compile>
  392. <Compile Include="CenterViews\Parameter\InterlockTEMPViewModel.cs" />
  393. <Compile Include="CenterViews\Parameter\InterlockView.xaml.cs">
  394. <DependentUpon>InterlockView.xaml</DependentUpon>
  395. </Compile>
  396. <Compile Include="CenterViews\Parameter\InterlockViewModel.cs" />
  397. <Compile Include="CenterViews\Parameter\LeakCheckConditionParameterData.cs" />
  398. <Compile Include="CenterViews\Parameter\LeakCheckConditionTable.cs" />
  399. <Compile Include="CenterViews\Parameter\N2PurgeEditView.xaml.cs">
  400. <DependentUpon>N2PurgeEditView.xaml</DependentUpon>
  401. </Compile>
  402. <Compile Include="CenterViews\Parameter\MainParameterEditView.xaml.cs">
  403. <DependentUpon>MainParameterEditView.xaml</DependentUpon>
  404. </Compile>
  405. <Compile Include="CenterViews\Parameter\N2PurgeEditViewModel.cs" />
  406. <Compile Include="CenterViews\Parameter\MainParameterEditViewModel.cs" />
  407. <Compile Include="CenterViews\Parameter\ParameterDataBase.cs" />
  408. <Compile Include="CenterViews\Parameter\ParameterProvider.cs" />
  409. <Compile Include="CenterViews\Parameter\TempAutoPIDParameterData.cs" />
  410. <Compile Include="CenterViews\Parameter\TempAutoPIDTable.cs" />
  411. <Compile Include="CenterViews\Parameter\TempCorrectionParameterData.cs" />
  412. <Compile Include="CenterViews\Parameter\TempCorrectionTable.cs" />
  413. <Compile Include="CenterViews\Parameter\TempPIDParameterData.cs" />
  414. <Compile Include="CenterViews\Parameter\TempPIDTable.cs" />
  415. <Compile Include="CenterViews\Parameter\TempProfileParameterData.cs" />
  416. <Compile Include="CenterViews\Parameter\TempProfileTable.cs" />
  417. <Compile Include="ClientBase\AttachedProperties\TextBlockHighlighter.cs" />
  418. <Compile Include="ClientBase\AttachedProperties\WatermarkAdorner.cs" />
  419. <Compile Include="ClientBase\AttachedProperties\WatermarkService.cs" />
  420. <Compile Include="ClientBase\BindableBase.cs" />
  421. <Compile Include="ClientBase\BusyIndicateableUiViewModelBase.cs" />
  422. <Compile Include="ClientBase\Charting\ChartingLineSeriesCollection.cs" />
  423. <Compile Include="ClientBase\Charting\FastLineDataSeries.cs" />
  424. <Compile Include="ClientBase\Charting\FastLineSeries.cs" />
  425. <Compile Include="ClientBase\Charting\ParameterNodePoint.cs" />
  426. <Compile Include="ClientBase\Collections\DelayedPresentRollingObservableCollection.cs" />
  427. <Compile Include="ClientBase\Collections\ObservableRangeCollection.cs" />
  428. <Compile Include="ClientBase\Collections\SafeEnumerator.cs" />
  429. <Compile Include="ClientBase\ContextMenuManager.cs" />
  430. <Compile Include="ClientBase\DateRangeHelper.cs" />
  431. <Compile Include="ClientBase\EventArgs\ProgressUpdatingEventArgs.cs" />
  432. <Compile Include="ClientBase\EventArgs\RenderableSeriesDeletingEventArgs.cs" />
  433. <Compile Include="ClientBase\EventArgs\TreeNodeSelectionChangedEventArgs.cs" />
  434. <Compile Include="ClientBase\ModuleManager.cs" />
  435. <Compile Include="ClientBase\Pipelines\PipelineMethodInvoker.cs" />
  436. <Compile Include="ClientBase\Pipelines\TwoStagePipelineBasedTaskExecutor.cs" />
  437. <Compile Include="ClientBase\RoleAccountProvider.cs" />
  438. <Compile Include="ClientBase\Tree\TreeNode.cs" />
  439. <Compile Include="ClientBase\Tree\TreeNodeCollection.cs" />
  440. <Compile Include="ClientBase\Tree\TreeNodeSelectionGroupInfo.cs" />
  441. <Compile Include="ClientBase\UIViewModelBase.cs" />
  442. <Compile Include="ClientBase\CarrierInfoData.cs" />
  443. <Compile Include="ClientBase\UserControls\BusyIndicator.xaml.cs" />
  444. <Compile Include="ClientBase\UserControls\CirclePointRingLoading.cs" />
  445. <Compile Include="ClientBase\UserControls\DataViewChart.xaml.cs" />
  446. <Compile Include="ClientBase\UserControls\DataViewDataGrid.xaml.cs" />
  447. <Compile Include="ClientBase\UserControls\ParameterNodeTreeViewControl.xaml.cs" />
  448. <Compile Include="ClientBase\WaferMoveManager.cs" />
  449. <Compile Include="ClientBase\ModuleDataMonitor.cs" />
  450. <Compile Include="ClientBase\WaferTransferCondition.cs" />
  451. <Compile Include="ClientBase\WaferTransferDialogView.xaml.cs">
  452. <DependentUpon>WaferTransferDialogView.xaml</DependentUpon>
  453. </Compile>
  454. <Compile Include="ClientBase\WaferTransferDialogViewModel.cs" />
  455. <Compile Include="CenterViews\Configs\Accounts\AccountItem.cs" />
  456. <Compile Include="CenterViews\Configs\Accounts\AccountManager.cs" />
  457. <Compile Include="CenterViews\Configs\Accounts\AccountView.xaml.cs">
  458. <DependentUpon>AccountView.xaml</DependentUpon>
  459. </Compile>
  460. <Compile Include="CenterViews\Configs\Accounts\AccountViewModel.cs" />
  461. <Compile Include="CenterViews\Configs\Accounts\RoleSatusItem.cs" />
  462. <Compile Include="CenterViews\Configs\Roles\RoleItem.cs" />
  463. <Compile Include="CenterViews\Configs\Roles\RoleManager.cs" />
  464. <Compile Include="CenterViews\Configs\Roles\RolePermissionMapper.cs" />
  465. <Compile Include="CenterViews\Configs\Roles\RoleView.xaml.cs">
  466. <DependentUpon>RoleView.xaml</DependentUpon>
  467. </Compile>
  468. <Compile Include="CenterViews\Configs\Roles\RoleViewModel.cs" />
  469. <Compile Include="CenterViews\Configs\SystemConfig\ConfigValueTemplateSelector.cs" />
  470. <Compile Include="CenterViews\Configs\SystemConfig\SystemConfigItem.cs" />
  471. <Compile Include="CenterViews\Configs\SystemConfig\SystemConfigProvider.cs" />
  472. <Compile Include="CenterViews\Configs\SystemConfig\SystemConfigView.xaml.cs">
  473. <DependentUpon>SystemConfigView.xaml</DependentUpon>
  474. </Compile>
  475. <Compile Include="CenterViews\Configs\SystemConfig\SystemConfigViewModel.cs" />
  476. <Compile Include="CenterViews\Controls\E84Info.xaml.cs">
  477. <DependentUpon>E84Info.xaml</DependentUpon>
  478. </Compile>
  479. <Compile Include="CenterViews\Controls\LED.xaml.cs">
  480. <DependentUpon>LED.xaml</DependentUpon>
  481. </Compile>
  482. <Compile Include="CenterViews\Controls\ScDoubleRow.xaml.cs">
  483. <DependentUpon>ScDoubleRow.xaml</DependentUpon>
  484. </Compile>
  485. <Compile Include="CenterViews\Controls\ScStringRow.xaml.cs">
  486. <DependentUpon>ScStringRow.xaml</DependentUpon>
  487. </Compile>
  488. <Compile Include="CenterViews\DataLogs\DataHistory\DataView.xaml.cs">
  489. <DependentUpon>DataView.xaml</DependentUpon>
  490. </Compile>
  491. <Compile Include="CenterViews\DataLogs\DataHistory\DataViewModel.cs" />
  492. <Compile Include="CenterViews\DataLogs\Event\EventView.xaml.cs">
  493. <DependentUpon>EventView.xaml</DependentUpon>
  494. </Compile>
  495. <Compile Include="CenterViews\DataLogs\Event\EventViewModel.cs" />
  496. <Compile Include="CenterViews\DataLogs\ProcessHistory\ChartParameter.cs" />
  497. <Compile Include="CenterViews\DataLogs\ProcessHistory\ProcessHistoryProvider.cs" />
  498. <Compile Include="CenterViews\DataLogs\ProcessHistory\ProcessHistoryView.xaml.cs">
  499. <DependentUpon>ProcessHistoryView.xaml</DependentUpon>
  500. </Compile>
  501. <Compile Include="CenterViews\DataLogs\ProcessHistory\ProcessHistoryViewModel.cs" />
  502. <Compile Include="CenterViews\DataLogs\ProcessHistory\SelectDataView.xaml.cs">
  503. <DependentUpon>SelectDataView.xaml</DependentUpon>
  504. </Compile>
  505. <Compile Include="CenterViews\DataLogs\ProcessHistory\SelectDataViewModel.cs" />
  506. <Compile Include="CenterViews\DataLogs\Statistics\StatisticsView.xaml.cs">
  507. <DependentUpon>StatisticsView.xaml</DependentUpon>
  508. </Compile>
  509. <Compile Include="CenterViews\DataLogs\Statistics\StatisticsViewModel.cs" />
  510. <Compile Include="CenterViews\DataLogs\WaferHistory\WaferHistoryView.xaml.cs">
  511. <DependentUpon>WaferHistoryView.xaml</DependentUpon>
  512. </Compile>
  513. <Compile Include="CenterViews\DataLogs\WaferHistory\WaferHistoryViewModel.cs" />
  514. <Compile Include="CenterViews\DataLogs\WaferHistory\YAxisLabelProvider.cs" />
  515. <Compile Include="CenterViews\Editors\EditMode.cs" />
  516. <Compile Include="CenterViews\Editors\FolderOrFileTemplateSelector.cs" />
  517. <Compile Include="CenterViews\Editors\InputFileNameDialogView.xaml.cs">
  518. <DependentUpon>InputFileNameDialogView.xaml</DependentUpon>
  519. </Compile>
  520. <Compile Include="CenterViews\Editors\InputFileNameDialogViewModel.cs" />
  521. <Compile Include="CenterViews\Editors\RecipeSequenceSelectDialogView.xaml.cs">
  522. <DependentUpon>RecipeSequenceSelectDialogView.xaml</DependentUpon>
  523. </Compile>
  524. <Compile Include="CenterViews\Editors\RecipeSequenceSelectDialogViewModel.cs" />
  525. <Compile Include="CenterViews\Editors\RecipeSequenceTreeBuilder.cs" />
  526. <Compile Include="CenterViews\Editors\Sequence\SequenceColumnBuilder.cs" />
  527. <Compile Include="CenterViews\Editors\Sequence\SequenceData.cs" />
  528. <Compile Include="CenterViews\Editors\Sequence\SequenceDataProvider.cs" />
  529. <Compile Include="CenterViews\Editors\Sequence\SequenceView.xaml.cs">
  530. <DependentUpon>SequenceView.xaml</DependentUpon>
  531. </Compile>
  532. <Compile Include="CenterViews\Editors\Sequence\SequenceViewModel.cs" />
  533. <Compile Include="CenterViews\LogOnOff\LogoffView.xaml.cs">
  534. <DependentUpon>LogoffView.xaml</DependentUpon>
  535. </Compile>
  536. <Compile Include="CenterViews\LogOnOff\LogoffViewModel.cs" />
  537. <Compile Include="CenterViews\LogOnOff\ShutdownView.xaml.cs">
  538. <DependentUpon>ShutdownView.xaml</DependentUpon>
  539. </Compile>
  540. <Compile Include="CenterViews\LogOnOff\ShutdownViewModel.cs" />
  541. <Compile Include="CenterViews\Maitenances\IO1\IO1View.xaml.cs">
  542. <DependentUpon>IO1View.xaml</DependentUpon>
  543. </Compile>
  544. <Compile Include="CenterViews\Maitenances\IO1\IO1ViewModel.cs" />
  545. <Compile Include="CenterViews\Maitenances\IO2\IO2View.xaml.cs">
  546. <DependentUpon>IO2View.xaml</DependentUpon>
  547. </Compile>
  548. <Compile Include="CenterViews\Maitenances\IO2\IO2ViewModel.cs" />
  549. <Compile Include="CenterViews\Operations\E84\E84View.xaml.cs">
  550. <DependentUpon>E84View.xaml</DependentUpon>
  551. </Compile>
  552. <Compile Include="CenterViews\Operations\E84\E84ViewModel.cs" />
  553. <Compile Include="CenterViews\Operations\FA\FAView.xaml.cs">
  554. <DependentUpon>FAView.xaml</DependentUpon>
  555. </Compile>
  556. <Compile Include="CenterViews\Operations\FA\FAViewModel.cs" />
  557. <Compile Include="CenterViews\Operations\LotHistory\LotHistoryView.xaml.cs">
  558. <DependentUpon>LotHistoryView.xaml</DependentUpon>
  559. </Compile>
  560. <Compile Include="CenterViews\Operations\LotHistory\LotHistoryViewModel.cs" />
  561. <Compile Include="CenterViews\Operations\MonitorJob\MonitorJobView.xaml.cs">
  562. <DependentUpon>MonitorJobView.xaml</DependentUpon>
  563. </Compile>
  564. <Compile Include="CenterViews\Operations\MonitorJob\MonitorJobViewModel.cs" />
  565. <Compile Include="CenterViews\Operations\RealTime\RealtimeProvider.cs" />
  566. <Compile Include="CenterViews\Operations\RealTime\RealTimeView.xaml.cs">
  567. <DependentUpon>RealTimeView.xaml</DependentUpon>
  568. </Compile>
  569. <Compile Include="CenterViews\Operations\RealTime\RealTimeViewModel.cs" />
  570. <Compile Include="CenterViews\Operations\WaferAssociation\SequenceDialogView.xaml.cs">
  571. <DependentUpon>SequenceDialogView.xaml</DependentUpon>
  572. </Compile>
  573. <Compile Include="CenterViews\Operations\WaferAssociation\SequenceDialogViewModel.cs" />
  574. <Compile Include="CenterViews\Operations\WaferAssociation\WaferAssociationInfo.cs" />
  575. <Compile Include="CenterViews\Operations\WaferAssociation\WaferAssociationProvider.cs" />
  576. <Compile Include="CenterViews\Operations\WaferAssociation\WaferAssociationUnit.xaml.cs">
  577. <DependentUpon>WaferAssociationUnit.xaml</DependentUpon>
  578. </Compile>
  579. <Compile Include="CenterViews\Operations\WaferAssociation\WaferAssociationView.xaml.cs">
  580. <DependentUpon>WaferAssociationView.xaml</DependentUpon>
  581. </Compile>
  582. <Compile Include="CenterViews\Operations\WaferAssociation\WaferAssociationViewModel.cs" />
  583. <Compile Include="ClientBase\BaseApp.cs" />
  584. <Compile Include="ClientBase\BaseModel.cs" />
  585. <Compile Include="ClientBase\Command\BaseCommand.cs" />
  586. <Compile Include="ClientBase\Command\CommandParameter.cs" />
  587. <Compile Include="ClientBase\Command\CommandSource.cs" />
  588. <Compile Include="ClientBase\Command\CommandTrigger.cs" />
  589. <Compile Include="ClientBase\Command\CommandTriggerGroup.cs" />
  590. <Compile Include="ClientBase\Command\EventCommandTrigger.cs" />
  591. <Compile Include="ClientBase\Command\PropertyCommandTrigger.cs" />
  592. <Compile Include="ClientBase\CommonEnum.cs" />
  593. <Compile Include="ClientBase\DataErrorInfo.cs" />
  594. <Compile Include="ClientBase\Dialog\Dialogbox.cs" />
  595. <Compile Include="ClientBase\Dialog\DialogViewModel.cs" />
  596. <Compile Include="ClientBase\Dialog\MessageDialog.cs" />
  597. <Compile Include="ClientBase\Dialog\MessageDialogView.xaml.cs">
  598. <DependentUpon>MessageDialogView.xaml</DependentUpon>
  599. </Compile>
  600. <Compile Include="ClientBase\Dialog\MessageDialogViewModel.cs" />
  601. <Compile Include="ClientBase\IHandler.cs" />
  602. <Compile Include="ClientBase\IO\IOItem.cs" />
  603. <Compile Include="ClientBase\ISupportMultipleSystem.cs" />
  604. <Compile Include="ClientBase\MenuManager.cs" />
  605. <Compile Include="ClientBase\ModuleInfo.cs" />
  606. <Compile Include="ClientBase\ModuleWaferManager.cs" />
  607. <Compile Include="ClientBase\ServiceProvider\IProvider.cs" />
  608. <Compile Include="ClientBase\Utility\AssemblyUtil.cs" />
  609. <Compile Include="ClientBase\ValidatorBase.cs" />
  610. <Compile Include="ClientBase\WaferInfo.cs" />
  611. <Compile Include="ClientBase\_MESSAGE.cs" />
  612. <Compile Include="Converter\CheckPortStateConverter.cs" />
  613. <Compile Include="Converter\CheckAccessModeConverter.cs" />
  614. <Compile Include="Converter\FileNameConverter.cs" />
  615. <Compile Include="Core\Container\CachedTypeInfo.cs" />
  616. <Compile Include="Core\Container\ConstructorCache.cs" />
  617. <Compile Include="Core\Container\IContainer.cs" />
  618. <Compile Include="Core\Container\ParameterCache.cs" />
  619. <Compile Include="Core\Container\SimpleContainer.cs" />
  620. <Compile Include="Core\Container\TypeResolver.cs" />
  621. <Compile Include="Ctrlib\Controls\CheckBoxExt.cs" />
  622. <Compile Include="Ctrlib\Controls\ComboBoxExt.cs" />
  623. <Compile Include="Ctrlib\Controls\ComboTextBlock.cs" />
  624. <Compile Include="Ctrlib\Controls\CarrierContentControl.cs" />
  625. <Compile Include="Ctrlib\Controls\VirtualizingWrapPanel.cs" />
  626. <Compile Include="Ctrlib\Controls\Wafer.cs" />
  627. <Compile Include="Ctrlib\Converter\DrawingColorToMediaColorConverter.cs" />
  628. <Compile Include="Ctrlib\Converter\ForeColorConverter.cs" />
  629. <Compile Include="Ctrlib\Converter\MediaColorToSolidColorBrushConverter.cs" />
  630. <Compile Include="Ctrlib\Converter\ParameterNodeStatisticToStringConverter.cs" />
  631. <Compile Include="Ctrlib\Converter\ParameterNodeTreeViewVisibilityMultiBindingConverter.cs" />
  632. <Compile Include="Ctrlib\Converter\SourceNameConverter.cs" />
  633. <Compile Include="Ctrlib\Converter\WaferStatusConverter.cs" />
  634. <Compile Include="Ctrlib\UnitControls\AITMicrowaveSettingDialogView.xaml.cs">
  635. <DependentUpon>AITMicrowaveSettingDialogView.xaml</DependentUpon>
  636. </Compile>
  637. <Compile Include="Ctrlib\UnitControls\AITMicrowaveSettingDialogViewModel.cs" />
  638. <Compile Include="Ctrlib\UnitControls\CassetteTopView.xaml.cs">
  639. <DependentUpon>CassetteTopView.xaml</DependentUpon>
  640. </Compile>
  641. <Compile Include="Ctrlib\UnitControls\FOUPFrontViewPro.xaml.cs">
  642. <DependentUpon>FOUPFrontViewPro.xaml</DependentUpon>
  643. </Compile>
  644. <Compile Include="Ctrlib\UnitControls\RFSimpleControl.xaml.cs">
  645. <DependentUpon>RFSimpleControl.xaml</DependentUpon>
  646. </Compile>
  647. <Compile Include="Ctrlib\UnitControls\ChillerControl.xaml.cs">
  648. <DependentUpon>ChillerControl.xaml</DependentUpon>
  649. </Compile>
  650. <Compile Include="Ctrlib\UnitControls\FoupTopView3.xaml.cs">
  651. <DependentUpon>FoupTopView3.xaml</DependentUpon>
  652. </Compile>
  653. <Compile Include="Ctrlib\UnitControls\MultipleSelectionsCombox.xaml.cs">
  654. <DependentUpon>MultipleSelectionsCombox.xaml</DependentUpon>
  655. </Compile>
  656. <Compile Include="Ctrlib\Converter\DisplayNameConverter.cs" />
  657. <Compile Include="Ctrlib\Converter\UnitStatusBackgroundColorConverter.cs" />
  658. <Compile Include="Ctrlib\Converter\UnitOnlineBorderColorConverter.cs" />
  659. <Compile Include="Ctrlib\Converter\BoolReverseConverter.cs" />
  660. <Compile Include="Ctrlib\UnitControls\AITHeaterControl.xaml.cs">
  661. <DependentUpon>AITHeaterControl.xaml</DependentUpon>
  662. </Compile>
  663. <Compile Include="Ctrlib\UnitControls\AITPressureMeter.xaml.cs">
  664. <DependentUpon>AITPressureMeter.xaml</DependentUpon>
  665. </Compile>
  666. <Compile Include="Ctrlib\UnitControls\AITRf.xaml.cs">
  667. <DependentUpon>AITRf.xaml</DependentUpon>
  668. </Compile>
  669. <Compile Include="Ctrlib\UnitControls\VGPartText.xaml.cs">
  670. <DependentUpon>VGPartText.xaml</DependentUpon>
  671. </Compile>
  672. <Compile Include="Ctrlib\UnitControls\VGPart.xaml.cs">
  673. <DependentUpon>VGPart.xaml</DependentUpon>
  674. </Compile>
  675. <Compile Include="Ctrlib\UnitControls\TVSettingDialogView.xaml.cs">
  676. <DependentUpon>TVSettingDialogView.xaml</DependentUpon>
  677. </Compile>
  678. <Compile Include="Ctrlib\UnitControls\TVSettingDialogViewModel.cs" />
  679. <Compile Include="Ctrlib\UnitControls\TVControl.xaml.cs">
  680. <DependentUpon>TVControl.xaml</DependentUpon>
  681. </Compile>
  682. <Compile Include="Ctrlib\UnitControls\AITThrottleValveInputDialogBox.xaml.cs">
  683. <DependentUpon>AITThrottleValveInputDialogBox.xaml</DependentUpon>
  684. </Compile>
  685. <Compile Include="Ctrlib\UnitControls\Door.xaml.cs">
  686. <DependentUpon>Door.xaml</DependentUpon>
  687. </Compile>
  688. <Compile Include="Ctrlib\UnitControls\FoupTopView.xaml.cs">
  689. <DependentUpon>FoupTopView.xaml</DependentUpon>
  690. </Compile>
  691. <Compile Include="Ctrlib\Controls\EditTextBlock.cs" />
  692. <Compile Include="Ctrlib\Controls\ComboTextBlockAdorner.cs" />
  693. <Compile Include="Ctrlib\Controls\EditTextBlockAdorner.cs" />
  694. <Compile Include="Ctrlib\Controls\Gasline.cs" />
  695. <Compile Include="Ctrlib\Controls\GaslineJoint.cs" />
  696. <Compile Include="Ctrlib\Controls\Slot.cs" />
  697. <Compile Include="Ctrlib\Controls\SwitchButton.cs" />
  698. <Compile Include="Ctrlib\Controls\TextBoxEx.cs" />
  699. <Compile Include="Ctrlib\Controls\Valve.cs" />
  700. <Compile Include="Ctrlib\Controls\WaferSmall.cs" />
  701. <Compile Include="Ctrlib\Controls\XDataGrid.cs" />
  702. <Compile Include="Ctrlib\Converter\BoolVisibilityConverter.cs" />
  703. <Compile Include="Ctrlib\Converter\FOUPStatusConverter.cs" />
  704. <Compile Include="Ctrlib\Converter\DataConverter.cs" />
  705. <Compile Include="Ctrlib\Converter\HideNullConverter.cs" />
  706. <Compile Include="Ctrlib\Converter\SlotBorderConverter.cs" />
  707. <Compile Include="Ctrlib\Converter\VisibilityConverter.cs" />
  708. <Compile Include="Ctrlib\Types\JointType.cs" />
  709. <Compile Include="Ctrlib\Types\ValveState.cs" />
  710. <Compile Include="Ctrlib\UnitControls\FOUPFrontView.xaml.cs">
  711. <DependentUpon>FOUPFrontView.xaml</DependentUpon>
  712. </Compile>
  713. <Compile Include="Ctrlib\UnitControls\FOUPTopView2.xaml.cs">
  714. <DependentUpon>FOUPTopView2.xaml</DependentUpon>
  715. </Compile>
  716. <Compile Include="Ctrlib\UnitControls\InputDialogBox.xaml.cs">
  717. <DependentUpon>InputDialogBox.xaml</DependentUpon>
  718. </Compile>
  719. <Compile Include="Ctrlib\UnitControls\AITRfSettingDialogView.xaml.cs">
  720. <DependentUpon>AITRfSettingDialogView.xaml</DependentUpon>
  721. </Compile>
  722. <Compile Include="Ctrlib\UnitControls\MfcSettingDialogView.xaml.cs">
  723. <DependentUpon>MfcSettingDialogView.xaml</DependentUpon>
  724. </Compile>
  725. <Compile Include="Ctrlib\UnitControls\AITRfSettingDialogViewModel.cs" />
  726. <Compile Include="Ctrlib\UnitControls\MfcSettingDialogViewModel.cs" />
  727. <Compile Include="Ctrlib\UnitControls\MfcControl.xaml.cs">
  728. <DependentUpon>MfcControl.xaml</DependentUpon>
  729. </Compile>
  730. <Compile Include="Ctrlib\Window\CustomWnd.cs" />
  731. <Compile Include="IndustrialControl\Converters\Double2StringConverter.cs" />
  732. <Compile Include="IndustrialControl\Converters\MultiplesValueConverter.cs" />
  733. <Compile Include="IndustrialControl\Converters\VisibilityConverter.cs" />
  734. <Compile Include="IndustrialControl\Line\GasSingularLine.xaml.cs">
  735. <DependentUpon>GasSingularLine.xaml</DependentUpon>
  736. </Compile>
  737. <Compile Include="IndustrialControl\Pipe\ELK\PipeLine.xaml.cs">
  738. <DependentUpon>PipeLine.xaml</DependentUpon>
  739. </Compile>
  740. <Compile Include="IndustrialControl\Pipe\ELK\PipeLineKnot.xaml.cs">
  741. <DependentUpon>PipeLineKnot.xaml</DependentUpon>
  742. </Compile>
  743. <Compile Include="IndustrialControl\Pipe\PipeLine.xaml.cs">
  744. <DependentUpon>PipeLine.xaml</DependentUpon>
  745. </Compile>
  746. <Compile Include="IndustrialControl\Pipe\PipeLineKnot.xaml.cs">
  747. <DependentUpon>PipeLineKnot.xaml</DependentUpon>
  748. </Compile>
  749. <Compile Include="IndustrialControl\Pipe\PipeLineThree.xaml.cs">
  750. <DependentUpon>PipeLineThree.xaml</DependentUpon>
  751. </Compile>
  752. <Compile Include="Properties\Annotations.cs" />
  753. <Compile Include="Properties\AssemblyInfo.cs" />
  754. <Compile Include="Caliburn.Micro\TypeDescriptor.cs" />
  755. <Compile Include="Caliburn.Micro\View.cs" />
  756. <Compile Include="Caliburn.Micro\ViewLocator.cs" />
  757. <Compile Include="Caliburn.Micro\ViewModelBinder.cs" />
  758. <Compile Include="Caliburn.Micro\ViewModelLocator.cs" />
  759. <Compile Include="Caliburn.Micro\XamlPlatformProvider.cs" />
  760. <Compile Include="DataGridTransform\AssemblyAttrs.cs" />
  761. <Compile Include="DataGridTransform\DataGridExtern\DataGridColumnExpander.cs" />
  762. <Compile Include="DataGridTransform\DataGridExtern\DataGridDynamicColumn.cs" />
  763. <Compile Include="DataGridTransform\DataGridExtern\DataGridDynamicColumns.cs" />
  764. <Compile Include="DataGridTransform\DataGridExtern\DataGridExpanderProperty.cs" />
  765. <Compile Include="DataGridTransform\DataGridExtern\DataGridTransform.cs" />
  766. <Compile Include="DataGridTransform\DataGridExtern\ListBoxItemSelector.cs" />
  767. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Automation\Peers\DataGridAutomationPeer.cs" />
  768. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Automation\Peers\DataGridCellAutomationPeer.cs" />
  769. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Automation\Peers\DataGridCellItemAutomationPeer.cs" />
  770. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Automation\Peers\DataGridColumnHeaderAutomationPeer.cs" />
  771. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Automation\Peers\DataGridColumnHeadersPresenterAutomationPeer.cs" />
  772. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Automation\Peers\DataGridDetailsPresenterAutomationPeer.cs" />
  773. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Automation\Peers\DataGridItemAutomationPeer.cs" />
  774. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Automation\Peers\DataGridRowAutomationPeer.cs" />
  775. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Automation\Peers\DataGridRowHeaderAutomationPeer.cs" />
  776. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Automation\Peers\DataGridRowsPresenterAutomationPeer.cs" />
  777. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\BooleanToSelectiveScrollingOrientationConverter.cs" />
  778. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\ClipboardHelper.cs" />
  779. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\ColumnHeaderCollection.cs" />
  780. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\ComboBoxBindingTarget.cs" />
  781. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\ContainerTracking.cs" />
  782. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGrid.cs" />
  783. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridAutoGeneratingColumnEventArgs.cs" />
  784. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridBeginningEditEventArgs.cs" />
  785. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridBoundColumn.cs" />
  786. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridCell.cs" />
  787. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridCellClipboardEventArgs.cs" />
  788. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridCellEditEndingEventArgs.cs" />
  789. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridCellInfo.cs" />
  790. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridCellsPanel.cs" />
  791. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridCheckBoxColumn.cs" />
  792. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridClipboardCellContent.cs" />
  793. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridClipboardCopyMode.cs" />
  794. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridColumn.cs" />
  795. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridColumnCollection.cs" />
  796. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridColumnDropSeparator.cs" />
  797. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridColumnEventArgs.cs" />
  798. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridColumnFloatingHeader.cs" />
  799. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridColumnReorderingEventArgs.cs" />
  800. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridComboBoxColumn.cs" />
  801. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridEditAction.cs" />
  802. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridEditingUnit.cs" />
  803. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridGridLinesVisibility.cs" />
  804. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridHeaderBorder.cs" />
  805. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridHeadersVisibility.cs" />
  806. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridHeadersVisibilityToVisibilityConverter.cs" />
  807. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridHelper.cs" />
  808. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridHyperlinkColumn.cs" />
  809. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridItemAttachedStorage.cs" />
  810. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridLength.cs" />
  811. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridLengthConverter.cs" />
  812. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridLengthUnitType.cs" />
  813. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridPreparingCellForEditEventArgs.cs" />
  814. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridRow.cs" />
  815. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridRowClipboardEventArgs.cs" />
  816. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridRowDetailsEventArgs.cs" />
  817. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridRowDetailsVisibilityMode.cs" />
  818. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridRowEditEndingEventArgs.cs" />
  819. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridRowEventArgs.cs" />
  820. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridSelectionMode.cs" />
  821. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridSelectionUnit.cs" />
  822. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridSortingEventArgs.cs" />
  823. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridSortingEventHandler.cs" />
  824. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridTemplateColumn.cs" />
  825. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridTextColumn.cs" />
  826. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DoubleUtil.cs" />
  827. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\InitializingNewItemEventArgs.cs" />
  828. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\InitializingNewItemEventHandler.cs" />
  829. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\IProvideDataGridColumn.cs" />
  830. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\MultipleCopiesCollection.cs" />
  831. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\NotificationTarget.cs" />
  832. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\Primitives\DataGridCellsPresenter.cs" />
  833. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\Primitives\DataGridColumnHeader.cs" />
  834. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\Primitives\DataGridColumnHeadersPresenter.cs" />
  835. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\Primitives\DataGridDetailsPresenter.cs" />
  836. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\Primitives\DataGridRowHeader.cs" />
  837. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\Primitives\DataGridRowsPresenter.cs" />
  838. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\Primitives\SelectiveScrollingGrid.cs" />
  839. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\RealizedColumnsBlock.cs" />
  840. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\SelectedCellsChangedEventArgs.cs" />
  841. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\SelectedCellsChangedEventHandler.cs" />
  842. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\SelectedCellsCollection.cs" />
  843. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\SelectiveScrollingOrientation.cs" />
  844. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\VirtualizedCellInfoCollection.cs" />
  845. <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\WeakHashtable.cs" />
  846. <Compile Include="DataGridTransform\ExtendedGrid\Base\CopyDataGrid.cs" />
  847. <Compile Include="DataGridTransform\ExtendedGrid\Base\CustomDataGrid.cs" />
  848. <Compile Include="DataGridTransform\ExtendedGrid\Classes\AutoFilterHelper.cs" />
  849. <Compile Include="DataGridTransform\ExtendedGrid\Classes\ClipboardHelper.cs" />
  850. <Compile Include="DataGridTransform\ExtendedGrid\Classes\ColumnInformation.cs" />
  851. <Compile Include="DataGridTransform\ExtendedGrid\Classes\CustomDataGridRowsPresenter.cs" />
  852. <Compile Include="DataGridTransform\ExtendedGrid\Classes\DataGridBehavior.cs" />
  853. <Compile Include="DataGridTransform\ExtendedGrid\Classes\DoubleUtil.cs" />
  854. <Compile Include="DataGridTransform\ExtendedGrid\Classes\EportToExcelService.cs" />
  855. <Compile Include="DataGridTransform\ExtendedGrid\Classes\FindControls.cs" />
  856. <Compile Include="DataGridTransform\ExtendedGrid\Classes\GroupByEventArgs.cs" />
  857. <Compile Include="DataGridTransform\ExtendedGrid\Classes\GroupData.cs" />
  858. <Compile Include="DataGridTransform\ExtendedGrid\Classes\Helper.cs" />
  859. <Compile Include="DataGridTransform\ExtendedGrid\Classes\Helpers.cs" />
  860. <Compile Include="DataGridTransform\ExtendedGrid\Classes\RowSummariesHelper.cs" />
  861. <Compile Include="DataGridTransform\ExtendedGrid\Classes\ScrollingPreviewData.cs" />
  862. <Compile Include="DataGridTransform\ExtendedGrid\Classes\ScrollingPreviewService.cs" />
  863. <Compile Include="DataGridTransform\ExtendedGrid\Classes\SummaryColumnSettings.cs" />
  864. <Compile Include="DataGridTransform\ExtendedGrid\Classes\SummaryOperands.cs" />
  865. <Compile Include="DataGridTransform\ExtendedGrid\Converter\FrozenRowSplitterMarginConverter.cs" />
  866. <Compile Include="DataGridTransform\ExtendedGrid\Converter\GroupByButtonVisibilityConverter.cs" />
  867. <Compile Include="DataGridTransform\ExtendedGrid\Converter\GroupByPathConverter.cs" />
  868. <Compile Include="DataGridTransform\ExtendedGrid\Converter\RowSummariesClearButtonIsEnabledConverter.cs" />
  869. <Compile Include="DataGridTransform\ExtendedGrid\Converter\RowSummariesValueConverter.cs" />
  870. <Compile Include="DataGridTransform\ExtendedGrid\Converter\RowSummaryVisibiltyConverter.cs" />
  871. <Compile Include="DataGridTransform\ExtendedGrid\ExtendedColumn\ExtendedDataGridCheckBoxColumn.cs" />
  872. <Compile Include="DataGridTransform\ExtendedGrid\ExtendedColumn\ExtendedDataGridColumn.cs" />
  873. <Compile Include="DataGridTransform\ExtendedGrid\ExtendedColumn\ExtendedDataGridTextColumn.cs" />
  874. <Compile Include="DataGridTransform\ExtendedGrid\ExtendedGridControl\ExtendedDataGrid.cs" />
  875. <Compile Include="DataGridTransform\ExtendedGrid\Interface\IExtendedColumn.cs" />
  876. <Compile Include="DataGridTransform\ExtendedGrid\Styles\DataGridGeneric.cs" />
  877. <Compile Include="DataGridTransform\ExtendedGrid\UserControls\ColumnChooserControl.xaml.cs">
  878. <DependentUpon>ColumnChooserControl.xaml</DependentUpon>
  879. </Compile>
  880. <Compile Include="DataGridTransform\GlobalSuppressions.cs" />
  881. <Compile Include="Properties\Resources.Designer.cs">
  882. <AutoGen>True</AutoGen>
  883. <DesignTime>True</DesignTime>
  884. <DependentUpon>Resources.resx</DependentUpon>
  885. </Compile>
  886. <Compile Include="Properties\Settings.Designer.cs">
  887. <AutoGen>True</AutoGen>
  888. <DependentUpon>Settings.settings</DependentUpon>
  889. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  890. </Compile>
  891. <Compile Include="DataGridTransform\Resources\SR.cs" />
  892. <Compile Include="DataGridTransform\Resources\SRID.cs" />
  893. <Compile Include="RecipeEditorLib\DGExtension\CustomColumn\TuneColumn.cs" />
  894. <Compile Include="RecipeEditorLib\DGExtension\CustomColumn\PopSettingColumn.cs" />
  895. <Compile Include="RecipeEditorLib\DGExtension\CustomColumn\VatColumn.cs" />
  896. <Compile Include="RecipeEditorLib\DGExtension\CustomColumn\CheckBoxColumn.cs" />
  897. <Compile Include="RecipeEditorLib\DGExtension\CustomColumn\EditorDataGridTemplateColumnBase.cs" />
  898. <Compile Include="RecipeEditorLib\DGExtension\CustomColumn\LoopComboxColumn.cs" />
  899. <Compile Include="RecipeEditorLib\DGExtension\CustomColumn\ComboxColumn.cs" />
  900. <Compile Include="RecipeEditorLib\DGExtension\CustomColumn\DoubleColumn.cs" />
  901. <Compile Include="RecipeEditorLib\DGExtension\CustomColumn\ExpanderColumn.cs" />
  902. <Compile Include="RecipeEditorLib\DGExtension\CustomColumn\IntColumn.cs" />
  903. <Compile Include="RecipeEditorLib\DGExtension\CustomColumn\MultipleSelectColumn.cs" />
  904. <Compile Include="RecipeEditorLib\DGExtension\CustomColumn\NumColumn.cs" />
  905. <Compile Include="RecipeEditorLib\DGExtension\CustomColumn\PositionColumn.cs" />
  906. <Compile Include="RecipeEditorLib\DGExtension\CustomColumn\RecipeSelectColumn.cs" />
  907. <Compile Include="RecipeEditorLib\DGExtension\CustomColumn\StepColumn.cs" />
  908. <Compile Include="RecipeEditorLib\DGExtension\CustomColumn\TextBlockColumn.cs" />
  909. <Compile Include="RecipeEditorLib\DGExtension\CustomColumn\TextBoxColumn.cs" />
  910. <Compile Include="RecipeEditorLib\DGExtension\XDataGrid.cs" />
  911. <Compile Include="RecipeEditorLib\RecipeModel\Params\BoolParam.cs" />
  912. <Compile Include="RecipeEditorLib\RecipeModel\Params\LoopComboxParam.cs" />
  913. <Compile Include="RecipeEditorLib\RecipeModel\Params\ComboxParam.cs" />
  914. <Compile Include="RecipeEditorLib\RecipeModel\Params\DoubleParam.cs" />
  915. <Compile Include="RecipeEditorLib\RecipeModel\Params\ExpanderParam.cs" />
  916. <Compile Include="RecipeEditorLib\RecipeModel\Params\IntParam.cs" />
  917. <Compile Include="RecipeEditorLib\RecipeModel\Params\MultipleSelectParam.cs" />
  918. <Compile Include="RecipeEditorLib\RecipeModel\Params\NumParam.cs" />
  919. <Compile Include="RecipeEditorLib\RecipeModel\Params\PopSettingParam.cs" />
  920. <Compile Include="RecipeEditorLib\RecipeModel\Params\Param.cs" />
  921. <Compile Include="RecipeEditorLib\RecipeModel\Params\PathFileParam.cs" />
  922. <Compile Include="RecipeEditorLib\RecipeModel\Params\PositionParam.cs" />
  923. <Compile Include="RecipeEditorLib\RecipeModel\Params\StepParam.cs" />
  924. <Compile Include="RecipeEditorLib\RecipeModel\Params\StringParam.cs" />
  925. <Compile Include="CenterViews\Editors\Recipe\RecipeFormatBuilder.cs" />
  926. <Compile Include="CenterViews\Editors\Recipe\RecipeData.cs" />
  927. <Compile Include="CenterViews\Editors\Recipe\RecipeEditorView.xaml.cs">
  928. <DependentUpon>RecipeEditorView.xaml</DependentUpon>
  929. </Compile>
  930. <Compile Include="CenterViews\Editors\Recipe\RecipeEditorViewModel.cs" />
  931. <Compile Include="CenterViews\Editors\Recipe\RecipeProvider.cs" />
  932. <Compile Include="Themes\CenterBorderGapMaskConverter.cs" />
  933. <Compile Include="Themes\lightgreen\TextBoxEx.cs" />
  934. <Compile Include="Themes\lightgreen\TextBoxEx2.cs" />
  935. <Compile Include="Themes\lightgreen\TextBoxEx3.cs" />
  936. <Compile Include="Themes\OceanBlue\ButtonEx.cs" />
  937. <Compile Include="Themes\OceanBlue\TextBoxEx.cs" />
  938. <Compile Include="Themes\OceanBlue\TextBoxEx3.cs" />
  939. </ItemGroup>
  940. <ItemGroup>
  941. <None Include="app.config" />
  942. <None Include="Caliburn.Micro\Caliburn.snk" />
  943. <Fakes Include="Fakes\MECF.Framework.UI.Core.fakes" />
  944. <None Include="Properties\Settings.settings">
  945. <Generator>SettingsSingleFileGenerator</Generator>
  946. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  947. </None>
  948. </ItemGroup>
  949. <ItemGroup>
  950. <Content Include="DataGridTransform\DataGrid.Icon.bmp" />
  951. <Content Include="DataGridTransform\ExtendedGrid\Images\add32.png" />
  952. <Content Include="DataGridTransform\ExtendedGrid\Images\addAll.png" />
  953. <Content Include="DataGridTransform\ExtendedGrid\Images\Browse.png" />
  954. <Content Include="DataGridTransform\ExtendedGrid\Images\btn_donateCC_LG.gif" />
  955. <Content Include="DataGridTransform\ExtendedGrid\Images\button_delete_blue.png" />
  956. <Content Include="DataGridTransform\ExtendedGrid\Images\clear32.png" />
  957. <Content Include="DataGridTransform\ExtendedGrid\Images\close.png" />
  958. <Content Include="DataGridTransform\ExtendedGrid\Images\codeplex.png" />
  959. <Content Include="DataGridTransform\ExtendedGrid\Images\columnChooser.ico" />
  960. <Content Include="DataGridTransform\ExtendedGrid\Images\Converter-32.png" />
  961. <Content Include="DataGridTransform\ExtendedGrid\Images\delete32.png" />
  962. <Content Include="DataGridTransform\ExtendedGrid\Images\greek_letter_sigma.gif" />
  963. <Content Include="DataGridTransform\ExtendedGrid\Images\greek_letter_sigma_white.gif" />
  964. <Content Include="DataGridTransform\ExtendedGrid\Images\info.png" />
  965. <Content Include="DataGridTransform\ExtendedGrid\Images\Merge-48.png" />
  966. <Content Include="DataGridTransform\ExtendedGrid\Images\ok.jpg" />
  967. <Content Include="DataGridTransform\ExtendedGrid\Images\OK.png" />
  968. <Content Include="DataGridTransform\ExtendedGrid\Images\pen.png" />
  969. <Content Include="DataGridTransform\ExtendedGrid\Images\pen_white_write.png" />
  970. <Content Include="DataGridTransform\ExtendedGrid\Images\pen_write.png" />
  971. <Content Include="DataGridTransform\ExtendedGrid\Images\plus.png" />
  972. <Content Include="DataGridTransform\ExtendedGrid\Images\save.png" />
  973. <Content Include="DataGridTransform\ExtendedGrid\Images\search.jpg" />
  974. <Content Include="DataGridTransform\ExtendedGrid\Images\sigma.svg.png" />
  975. <Content Include="DataGridTransform\ExtendedGrid\Images\snippet.ico" />
  976. <Content Include="DataGridTransform\ExtendedGrid\Images\Splash-Utopia.png" />
  977. <Content Include="DataGridTransform\ExtendedGrid\Images\Splash-Utopia1.gif" />
  978. <Content Include="DataGridTransform\ExtendedGrid\Images\Splash-Utopia1.png" />
  979. <Content Include="DataGridTransform\ExtendedGrid\Images\sweep_broom_brush_clear.png" />
  980. <Content Include="DataGridTransform\ExtendedGrid\Images\visualstudio.ico" />
  981. <Content Include="DataGridTransform\ExtendedGrid\Images\vsi.ico" />
  982. <Resource Include="Resources\Images\Folder_Close.png" />
  983. <Resource Include="Resources\Images\Folder_Open.png" />
  984. <Resource Include="Resources\Images\Folder_Unable.png" />
  985. <Resource Include="Resources\Images\foupTopView.png" />
  986. <Resource Include="Resources\Images\units\chillerleft.png" />
  987. <Resource Include="Resources\Images\units\rfback.png" />
  988. <Resource Include="Resources\Images\units\rfOff.png" />
  989. <Resource Include="Resources\Images\units\rfOn.png" />
  990. <Content Include="Resources\Images\foupTopView3.png" />
  991. <Resource Include="Resources\Images\units\chiller_right_error.png" />
  992. <Resource Include="Resources\Images\units\chiller_right_off.png" />
  993. <Resource Include="Resources\Images\units\chiller_right_on.png" />
  994. <Resource Include="Resources\Images\units\carrier.png" />
  995. <Resource Include="Resources\Images\units\CassetteTopViewNoWafer.png" />
  996. <Resource Include="Resources\Images\units\CassetteTopviewWithWafer.png" />
  997. <Resource Include="Resources\Images\Temp\FlowAlarm.png" />
  998. <Resource Include="Resources\Images\Temp\LayoutRecipe.png" />
  999. <Resource Include="Resources\Images\Temp\pic1.png" />
  1000. <Resource Include="Resources\Images\Temp\pic2.png" />
  1001. <Resource Include="Resources\Images\Temp\PressureAlarm.png" />
  1002. <Resource Include="Resources\Images\Temp\PressureStabilize.png" />
  1003. <Resource Include="Resources\Images\Temp\TempAlarm.png" />
  1004. <Resource Include="Resources\Images\Temp\TempStabilize.png" />
  1005. <Content Include="Themes\DeepBlueBackUp\Folder_Close.png" />
  1006. <Content Include="Themes\DeepBlueBackUp\Folder_Open.png" />
  1007. <Content Include="Themes\DeepBlueBackUp\Folder_Unable.png" />
  1008. <Content Include="Themes\LightBlue\Folder_Close.png" />
  1009. <Content Include="Themes\LightBlue\Folder_Open.png" />
  1010. <Content Include="Themes\LightBlue\Folder_Unable.png" />
  1011. <EmbeddedResource Include="DataGridTransform\Resources\ExceptionStringTable.txt" />
  1012. </ItemGroup>
  1013. <ItemGroup>
  1014. <Page Include="CenterViews\Alarms\ModuleAlarm\ModuleAlarmView.xaml">
  1015. <Generator>MSBuild:Compile</Generator>
  1016. <SubType>Designer</SubType>
  1017. </Page>
  1018. <Page Include="CenterViews\Alarms\Alarm\AlarmView.xaml">
  1019. <Generator>MSBuild:Compile</Generator>
  1020. <SubType>Designer</SubType>
  1021. </Page>
  1022. <Page Include="CenterViews\Configs\SignalTowerConfig\RadioCheckBox.xaml">
  1023. <SubType>Designer</SubType>
  1024. <Generator>MSBuild:Compile</Generator>
  1025. </Page>
  1026. <Page Include="CenterViews\Configs\SignalTowerConfig\SignalTowerConfigView.xaml">
  1027. <Generator>MSBuild:Compile</Generator>
  1028. <SubType>Designer</SubType>
  1029. </Page>
  1030. <Page Include="CenterViews\Configs\DataConfig\DataConfigView.xaml">
  1031. <Generator>MSBuild:Compile</Generator>
  1032. <SubType>Designer</SubType>
  1033. </Page>
  1034. <Page Include="CenterViews\Configs\SystemConfig\ShutDonwControlView.xaml">
  1035. <SubType>Designer</SubType>
  1036. <Generator>MSBuild:Compile</Generator>
  1037. </Page>
  1038. <Page Include="CenterViews\Controls\PaginationList.xaml">
  1039. <Generator>MSBuild:Compile</Generator>
  1040. <SubType>Designer</SubType>
  1041. </Page>
  1042. <Page Include="CenterViews\DataLogs\DataHistory\SelectUserDefineView.xaml">
  1043. <SubType>Designer</SubType>
  1044. <Generator>MSBuild:Compile</Generator>
  1045. </Page>
  1046. <Page Include="CenterViews\DataLogs\Event\SelectDateView.xaml">
  1047. <SubType>Designer</SubType>
  1048. <Generator>MSBuild:Compile</Generator>
  1049. </Page>
  1050. <Page Include="CenterViews\DataLogs\Event\SelectFilterConditionView.xaml">
  1051. <SubType>Designer</SubType>
  1052. <Generator>MSBuild:Compile</Generator>
  1053. </Page>
  1054. <Page Include="CenterViews\DataLogs\ProcessHistory\BatchDetailView.xaml">
  1055. <Generator>MSBuild:Compile</Generator>
  1056. <SubType>Designer</SubType>
  1057. </Page>
  1058. <Page Include="CenterViews\DataLogs\ProcessHistory\CassetteDetailView.xaml">
  1059. <Generator>MSBuild:Compile</Generator>
  1060. <SubType>Designer</SubType>
  1061. </Page>
  1062. <Page Include="CenterViews\DataLogs\ProcessHistory\ProcessDetailV2View.xaml">
  1063. <SubType>Designer</SubType>
  1064. <Generator>MSBuild:Compile</Generator>
  1065. </Page>
  1066. <Page Include="CenterViews\DataLogs\ProcessHistory\ProcessDetailView.xaml">
  1067. <Generator>MSBuild:Compile</Generator>
  1068. <SubType>Designer</SubType>
  1069. </Page>
  1070. <Page Include="CenterViews\DataLogs\ProcessHistory\ProcessExportAllView.xaml">
  1071. <SubType>Designer</SubType>
  1072. <Generator>MSBuild:Compile</Generator>
  1073. </Page>
  1074. <Page Include="CenterViews\DataLogs\ProcessHistory\ProcessHistoryTwoView.xaml">
  1075. <Generator>MSBuild:Compile</Generator>
  1076. <SubType>Designer</SubType>
  1077. </Page>
  1078. <Page Include="CenterViews\DataLogs\WaferHistory\WaferHistory2View.xaml">
  1079. <Generator>MSBuild:Compile</Generator>
  1080. <SubType>Designer</SubType>
  1081. </Page>
  1082. <Page Include="CenterViews\DataLogs\WaferHistory\WaferHistoryDBView.xaml">
  1083. <SubType>Designer</SubType>
  1084. <Generator>MSBuild:Compile</Generator>
  1085. </Page>
  1086. <Page Include="CenterViews\Dialogs\FullKeyboard.xaml">
  1087. <SubType>Designer</SubType>
  1088. <Generator>MSBuild:Compile</Generator>
  1089. </Page>
  1090. <Page Include="CenterViews\Dialogs\InputDialogView.xaml">
  1091. <SubType>Designer</SubType>
  1092. <Generator>MSBuild:Compile</Generator>
  1093. </Page>
  1094. <Page Include="CenterViews\Dialogs\ItemsSelectDialogView.xaml">
  1095. <Generator>MSBuild:Compile</Generator>
  1096. <SubType>Designer</SubType>
  1097. </Page>
  1098. <Page Include="CenterViews\Dialogs\ListDialogProView.xaml">
  1099. <SubType>Designer</SubType>
  1100. <Generator>MSBuild:Compile</Generator>
  1101. </Page>
  1102. <Page Include="CenterViews\Dialogs\ListDialogView.xaml">
  1103. <SubType>Designer</SubType>
  1104. <Generator>MSBuild:Compile</Generator>
  1105. </Page>
  1106. <Page Include="CenterViews\Dialogs\NumberDigitKeyboard.xaml">
  1107. <Generator>MSBuild:Compile</Generator>
  1108. <SubType>Designer</SubType>
  1109. </Page>
  1110. <Page Include="CenterViews\Dialogs\NumberKeyboard.xaml">
  1111. <SubType>Designer</SubType>
  1112. <Generator>MSBuild:Compile</Generator>
  1113. </Page>
  1114. <Page Include="CenterViews\Dialogs\NumberKeyborardNoMinus.xaml">
  1115. <SubType>Designer</SubType>
  1116. <Generator>MSBuild:Compile</Generator>
  1117. </Page>
  1118. <Page Include="CenterViews\Dialogs\PresetGroupSaveDialog.xaml">
  1119. <Generator>MSBuild:Compile</Generator>
  1120. <SubType>Designer</SubType>
  1121. </Page>
  1122. <Page Include="CenterViews\Dialogs\PurgeDialogView.xaml">
  1123. <Generator>MSBuild:Compile</Generator>
  1124. <SubType>Designer</SubType>
  1125. </Page>
  1126. <Page Include="CenterViews\Dialogs\TimeKeyboard.xaml">
  1127. <Generator>MSBuild:Compile</Generator>
  1128. <SubType>Designer</SubType>
  1129. </Page>
  1130. <Page Include="CenterViews\Editors\Parameter\ParameterSelectDialogView.xaml">
  1131. <Generator>MSBuild:Compile</Generator>
  1132. <SubType>Designer</SubType>
  1133. </Page>
  1134. <Page Include="CenterViews\Editors\RecipeConfig\RecipeConfigView.xaml">
  1135. <Generator>MSBuild:Compile</Generator>
  1136. <SubType>Designer</SubType>
  1137. </Page>
  1138. <Page Include="CenterViews\Editors\Recipe\PopSettingDialogView.xaml">
  1139. <Generator>MSBuild:Compile</Generator>
  1140. <SubType>Designer</SubType>
  1141. </Page>
  1142. <Page Include="CenterViews\Editors\Recipe\RecipeSelectDialogView.xaml">
  1143. <Generator>MSBuild:Compile</Generator>
  1144. <SubType>Designer</SubType>
  1145. </Page>
  1146. <Page Include="CenterViews\Editors\Recipe\RecipeStepTimeView.xaml">
  1147. <Generator>MSBuild:Compile</Generator>
  1148. <SubType>Designer</SubType>
  1149. </Page>
  1150. <Page Include="CenterViews\Editors\Recipe\SaveToDialogView.xaml">
  1151. <Generator>MSBuild:Compile</Generator>
  1152. <SubType>Designer</SubType>
  1153. </Page>
  1154. <Page Include="CenterViews\Maitenances\CalibrationTable\CalibrationTableView.xaml">
  1155. <Generator>MSBuild:Compile</Generator>
  1156. <SubType>Designer</SubType>
  1157. </Page>
  1158. <Page Include="CenterViews\Maitenances\Connections\ConnectionView.xaml">
  1159. <Generator>MSBuild:Compile</Generator>
  1160. <SubType>Designer</SubType>
  1161. </Page>
  1162. <Page Include="CenterViews\Maitenances\FFU\FFUView.xaml">
  1163. <SubType>Designer</SubType>
  1164. <Generator>MSBuild:Compile</Generator>
  1165. </Page>
  1166. <Page Include="CenterViews\Maitenances\IO3\IO3View.xaml">
  1167. <Generator>MSBuild:Compile</Generator>
  1168. <SubType>Designer</SubType>
  1169. </Page>
  1170. <Page Include="CenterViews\Maitenances\MFCVerification\MFCVerificationView.xaml">
  1171. <SubType>Designer</SubType>
  1172. <Generator>MSBuild:Compile</Generator>
  1173. </Page>
  1174. <Page Include="CenterViews\Parameter\AlarmtableParameterView.xaml">
  1175. <Generator>MSBuild:Compile</Generator>
  1176. <SubType>Designer</SubType>
  1177. </Page>
  1178. <Page Include="CenterViews\Parameter\InterlockActionAutoView.xaml">
  1179. <Generator>MSBuild:Compile</Generator>
  1180. <SubType>Designer</SubType>
  1181. </Page>
  1182. <Page Include="CenterViews\Parameter\InterlockAPCView.xaml">
  1183. <Generator>MSBuild:Compile</Generator>
  1184. <SubType>Designer</SubType>
  1185. </Page>
  1186. <Page Include="CenterViews\Parameter\InterlockCheckView.xaml">
  1187. <Generator>MSBuild:Compile</Generator>
  1188. <SubType>Designer</SubType>
  1189. </Page>
  1190. <Page Include="CenterViews\Parameter\InterlockConditionView.xaml">
  1191. <Generator>MSBuild:Compile</Generator>
  1192. <SubType>Designer</SubType>
  1193. </Page>
  1194. <Page Include="CenterViews\Parameter\InterlockFlagView.xaml">
  1195. <Generator>MSBuild:Compile</Generator>
  1196. <SubType>Designer</SubType>
  1197. </Page>
  1198. <Page Include="CenterViews\Parameter\InterlockMFCView.xaml">
  1199. <Generator>MSBuild:Compile</Generator>
  1200. <SubType>Designer</SubType>
  1201. </Page>
  1202. <Page Include="CenterViews\Parameter\InterlockMFMView.xaml">
  1203. <Generator>MSBuild:Compile</Generator>
  1204. <SubType>Designer</SubType>
  1205. </Page>
  1206. <Page Include="CenterViews\Parameter\InterlockSelectItemView.xaml">
  1207. <Generator>MSBuild:Compile</Generator>
  1208. <SubType>Designer</SubType>
  1209. </Page>
  1210. <Page Include="CenterViews\Parameter\InterlockSNSView.xaml">
  1211. <Generator>MSBuild:Compile</Generator>
  1212. <SubType>Designer</SubType>
  1213. </Page>
  1214. <Page Include="CenterViews\Parameter\InterlockTEMPView.xaml">
  1215. <Generator>MSBuild:Compile</Generator>
  1216. <SubType>Designer</SubType>
  1217. </Page>
  1218. <Page Include="CenterViews\Parameter\InterlockView.xaml">
  1219. <Generator>MSBuild:Compile</Generator>
  1220. <SubType>Designer</SubType>
  1221. </Page>
  1222. <Page Include="CenterViews\Parameter\N2PurgeEditView.xaml">
  1223. <Generator>MSBuild:Compile</Generator>
  1224. <SubType>Designer</SubType>
  1225. </Page>
  1226. <Page Include="CenterViews\Parameter\MainParameterEditView.xaml">
  1227. <Generator>MSBuild:Compile</Generator>
  1228. <SubType>Designer</SubType>
  1229. </Page>
  1230. <Page Include="ClientBase\UserControls\BusyIndicator.xaml">
  1231. <Generator>MSBuild:Compile</Generator>
  1232. <SubType>Designer</SubType>
  1233. </Page>
  1234. <Page Include="ClientBase\UserControls\DataViewChart.xaml">
  1235. <Generator>MSBuild:Compile</Generator>
  1236. <SubType>Designer</SubType>
  1237. </Page>
  1238. <Page Include="ClientBase\UserControls\DataViewDataGrid.xaml">
  1239. <Generator>MSBuild:Compile</Generator>
  1240. <SubType>Designer</SubType>
  1241. </Page>
  1242. <Page Include="ClientBase\UserControls\ParameterNodeTreeViewControl.xaml">
  1243. <Generator>MSBuild:Compile</Generator>
  1244. <SubType>Designer</SubType>
  1245. </Page>
  1246. <Page Include="ClientBase\WaferTransferDialogView.xaml">
  1247. <Generator>MSBuild:Compile</Generator>
  1248. <SubType>Designer</SubType>
  1249. </Page>
  1250. <Page Include="CenterViews\Configs\Accounts\AccountView.xaml">
  1251. <Generator>MSBuild:Compile</Generator>
  1252. <SubType>Designer</SubType>
  1253. </Page>
  1254. <Page Include="CenterViews\Configs\Roles\RoleView.xaml">
  1255. <Generator>MSBuild:Compile</Generator>
  1256. <SubType>Designer</SubType>
  1257. </Page>
  1258. <Page Include="CenterViews\Configs\SystemConfig\SystemConfigView.xaml">
  1259. <Generator>MSBuild:Compile</Generator>
  1260. <SubType>Designer</SubType>
  1261. </Page>
  1262. <Page Include="CenterViews\Controls\E84Info.xaml">
  1263. <Generator>MSBuild:Compile</Generator>
  1264. <SubType>Designer</SubType>
  1265. </Page>
  1266. <Page Include="CenterViews\Controls\LED.xaml">
  1267. <Generator>MSBuild:Compile</Generator>
  1268. <SubType>Designer</SubType>
  1269. </Page>
  1270. <Page Include="CenterViews\Controls\ScDoubleRow.xaml">
  1271. <Generator>MSBuild:Compile</Generator>
  1272. <SubType>Designer</SubType>
  1273. </Page>
  1274. <Page Include="CenterViews\Controls\ScStringRow.xaml">
  1275. <Generator>MSBuild:Compile</Generator>
  1276. <SubType>Designer</SubType>
  1277. </Page>
  1278. <Page Include="CenterViews\DataLogs\DataHistory\DataView.xaml">
  1279. <Generator>MSBuild:Compile</Generator>
  1280. <SubType>Designer</SubType>
  1281. </Page>
  1282. <Page Include="CenterViews\DataLogs\Event\EventView.xaml">
  1283. <Generator>MSBuild:Compile</Generator>
  1284. <SubType>Designer</SubType>
  1285. </Page>
  1286. <Page Include="CenterViews\DataLogs\ProcessHistory\ProcessHistoryView.xaml">
  1287. <Generator>MSBuild:Compile</Generator>
  1288. <SubType>Designer</SubType>
  1289. </Page>
  1290. <Page Include="CenterViews\DataLogs\ProcessHistory\SelectDataView.xaml">
  1291. <Generator>MSBuild:Compile</Generator>
  1292. <SubType>Designer</SubType>
  1293. </Page>
  1294. <Page Include="CenterViews\DataLogs\Statistics\StatisticsView.xaml">
  1295. <Generator>MSBuild:Compile</Generator>
  1296. <SubType>Designer</SubType>
  1297. </Page>
  1298. <Page Include="CenterViews\DataLogs\WaferHistory\WaferHistoryView.xaml">
  1299. <Generator>MSBuild:Compile</Generator>
  1300. <SubType>Designer</SubType>
  1301. </Page>
  1302. <Page Include="CenterViews\Editors\InputFileNameDialogView.xaml">
  1303. <Generator>MSBuild:Compile</Generator>
  1304. <SubType>Designer</SubType>
  1305. </Page>
  1306. <Page Include="CenterViews\Editors\RecipeSequenceSelectDialogView.xaml">
  1307. <Generator>MSBuild:Compile</Generator>
  1308. <SubType>Designer</SubType>
  1309. </Page>
  1310. <Page Include="CenterViews\Editors\Sequence\SequenceView.xaml">
  1311. <Generator>MSBuild:Compile</Generator>
  1312. <SubType>Designer</SubType>
  1313. </Page>
  1314. <Page Include="CenterViews\LogOnOff\LogoffView.xaml">
  1315. <Generator>MSBuild:Compile</Generator>
  1316. <SubType>Designer</SubType>
  1317. </Page>
  1318. <Page Include="CenterViews\LogOnOff\ShutdownView.xaml">
  1319. <Generator>MSBuild:Compile</Generator>
  1320. <SubType>Designer</SubType>
  1321. </Page>
  1322. <Page Include="CenterViews\Maitenances\IO1\IO1View.xaml">
  1323. <Generator>MSBuild:Compile</Generator>
  1324. <SubType>Designer</SubType>
  1325. </Page>
  1326. <Page Include="CenterViews\Maitenances\IO2\IO2View.xaml">
  1327. <Generator>MSBuild:Compile</Generator>
  1328. <SubType>Designer</SubType>
  1329. </Page>
  1330. <Page Include="CenterViews\Operations\E84\E84View.xaml">
  1331. <Generator>MSBuild:Compile</Generator>
  1332. <SubType>Designer</SubType>
  1333. </Page>
  1334. <Page Include="CenterViews\Operations\FA\FAView.xaml">
  1335. <Generator>MSBuild:Compile</Generator>
  1336. <SubType>Designer</SubType>
  1337. </Page>
  1338. <Page Include="CenterViews\Operations\LotHistory\LotHistoryView.xaml">
  1339. <Generator>MSBuild:Compile</Generator>
  1340. <SubType>Designer</SubType>
  1341. </Page>
  1342. <Page Include="CenterViews\Operations\MonitorJob\MonitorJobView.xaml">
  1343. <Generator>MSBuild:Compile</Generator>
  1344. <SubType>Designer</SubType>
  1345. </Page>
  1346. <Page Include="CenterViews\Operations\RealTime\RealTimeView.xaml">
  1347. <Generator>MSBuild:Compile</Generator>
  1348. <SubType>Designer</SubType>
  1349. </Page>
  1350. <Page Include="CenterViews\Operations\WaferAssociation\SequenceDialogView.xaml">
  1351. <Generator>MSBuild:Compile</Generator>
  1352. <SubType>Designer</SubType>
  1353. </Page>
  1354. <Page Include="CenterViews\Operations\WaferAssociation\WaferAssociationUnit.xaml">
  1355. <Generator>MSBuild:Compile</Generator>
  1356. <SubType>Designer</SubType>
  1357. </Page>
  1358. <Page Include="CenterViews\Operations\WaferAssociation\WaferAssociationView.xaml">
  1359. <Generator>MSBuild:Compile</Generator>
  1360. <SubType>Designer</SubType>
  1361. </Page>
  1362. <Page Include="ClientBase\Dialog\MessageDialogView.xaml">
  1363. <Generator>MSBuild:Compile</Generator>
  1364. <SubType>Designer</SubType>
  1365. </Page>
  1366. <Page Include="CenterViews\Editors\Recipe\RecipeEditorView.xaml">
  1367. <Generator>MSBuild:Compile</Generator>
  1368. <SubType>Designer</SubType>
  1369. </Page>
  1370. <Page Include="Ctrlib\UnitControls\AITMicrowaveSettingDialogView.xaml">
  1371. <Generator>MSBuild:Compile</Generator>
  1372. <SubType>Designer</SubType>
  1373. </Page>
  1374. <Page Include="Ctrlib\UnitControls\CassetteTopView.xaml">
  1375. <Generator>MSBuild:Compile</Generator>
  1376. <SubType>Designer</SubType>
  1377. </Page>
  1378. <Page Include="Ctrlib\UnitControls\FOUPFrontViewPro.xaml">
  1379. <Generator>MSBuild:Compile</Generator>
  1380. <SubType>Designer</SubType>
  1381. </Page>
  1382. <Page Include="Ctrlib\UnitControls\RFSimpleControl.xaml">
  1383. <Generator>MSBuild:Compile</Generator>
  1384. <SubType>Designer</SubType>
  1385. </Page>
  1386. <Page Include="Ctrlib\UnitControls\ChillerControl.xaml">
  1387. <SubType>Designer</SubType>
  1388. <Generator>MSBuild:Compile</Generator>
  1389. </Page>
  1390. <Page Include="Ctrlib\UnitControls\FoupTopView3.xaml">
  1391. <Generator>MSBuild:Compile</Generator>
  1392. <SubType>Designer</SubType>
  1393. </Page>
  1394. <Page Include="Ctrlib\UnitControls\MultipleSelectionsCombox.xaml">
  1395. <SubType>Designer</SubType>
  1396. <Generator>MSBuild:Compile</Generator>
  1397. </Page>
  1398. <Page Include="Ctrlib\UnitControls\AITHeaterControl.xaml">
  1399. <Generator>MSBuild:Compile</Generator>
  1400. <SubType>Designer</SubType>
  1401. </Page>
  1402. <Page Include="Ctrlib\UnitControls\AITPressureMeter.xaml">
  1403. <Generator>MSBuild:Compile</Generator>
  1404. <SubType>Designer</SubType>
  1405. </Page>
  1406. <Page Include="Ctrlib\UnitControls\AITRf.xaml">
  1407. <Generator>MSBuild:Compile</Generator>
  1408. <SubType>Designer</SubType>
  1409. </Page>
  1410. <Page Include="Ctrlib\UnitControls\VGPartText.xaml">
  1411. <Generator>MSBuild:Compile</Generator>
  1412. <SubType>Designer</SubType>
  1413. </Page>
  1414. <Page Include="Ctrlib\UnitControls\VGPart.xaml">
  1415. <Generator>MSBuild:Compile</Generator>
  1416. <SubType>Designer</SubType>
  1417. </Page>
  1418. <Page Include="Ctrlib\UnitControls\TVSettingDialogView.xaml">
  1419. <Generator>MSBuild:Compile</Generator>
  1420. <SubType>Designer</SubType>
  1421. </Page>
  1422. <Page Include="Ctrlib\UnitControls\TVControl.xaml">
  1423. <Generator>MSBuild:Compile</Generator>
  1424. <SubType>Designer</SubType>
  1425. </Page>
  1426. <Page Include="Ctrlib\UnitControls\AITThrottleValveInputDialogBox.xaml">
  1427. <Generator>MSBuild:Compile</Generator>
  1428. <SubType>Designer</SubType>
  1429. </Page>
  1430. <Page Include="Ctrlib\UnitControls\Door.xaml">
  1431. <Generator>MSBuild:Compile</Generator>
  1432. <SubType>Designer</SubType>
  1433. </Page>
  1434. <Page Include="Ctrlib\UnitControls\FoupTopView.xaml">
  1435. <Generator>MSBuild:Compile</Generator>
  1436. <SubType>Designer</SubType>
  1437. </Page>
  1438. <Page Include="Ctrlib\UnitControls\FOUPFrontView.xaml">
  1439. <Generator>MSBuild:Compile</Generator>
  1440. <SubType>Designer</SubType>
  1441. </Page>
  1442. <Page Include="Ctrlib\UnitControls\FOUPTopView2.xaml">
  1443. <Generator>MSBuild:Compile</Generator>
  1444. <SubType>Designer</SubType>
  1445. </Page>
  1446. <Page Include="Ctrlib\UnitControls\InputDialogBox.xaml">
  1447. <Generator>MSBuild:Compile</Generator>
  1448. <SubType>Designer</SubType>
  1449. </Page>
  1450. <Page Include="Ctrlib\UnitControls\AITRfSettingDialogView.xaml">
  1451. <Generator>MSBuild:Compile</Generator>
  1452. <SubType>Designer</SubType>
  1453. </Page>
  1454. <Page Include="Ctrlib\UnitControls\MfcSettingDialogView.xaml">
  1455. <Generator>MSBuild:Compile</Generator>
  1456. <SubType>Designer</SubType>
  1457. </Page>
  1458. <Page Include="Ctrlib\UnitControls\MfcControl.xaml">
  1459. <Generator>MSBuild:Compile</Generator>
  1460. <SubType>Designer</SubType>
  1461. </Page>
  1462. <Page Include="IndustrialControl\Line\GasSingularLine.xaml">
  1463. <SubType>Designer</SubType>
  1464. <Generator>MSBuild:Compile</Generator>
  1465. </Page>
  1466. <Page Include="IndustrialControl\Pipe\ELK\PipeLine.xaml">
  1467. <SubType>Designer</SubType>
  1468. <Generator>MSBuild:Compile</Generator>
  1469. </Page>
  1470. <Page Include="IndustrialControl\Pipe\ELK\PipeLineKnot.xaml">
  1471. <SubType>Designer</SubType>
  1472. <Generator>MSBuild:Compile</Generator>
  1473. </Page>
  1474. <Page Include="IndustrialControl\Pipe\PipeLine.xaml">
  1475. <Generator>MSBuild:Compile</Generator>
  1476. <SubType>Designer</SubType>
  1477. </Page>
  1478. <Page Include="IndustrialControl\Pipe\PipeLineKnot.xaml">
  1479. <Generator>MSBuild:Compile</Generator>
  1480. <SubType>Designer</SubType>
  1481. </Page>
  1482. <Page Include="IndustrialControl\Pipe\PipeLineThree.xaml">
  1483. <Generator>MSBuild:Compile</Generator>
  1484. <SubType>Designer</SubType>
  1485. </Page>
  1486. <Page Include="Themes\Cyan\Button.xaml">
  1487. <Generator>MSBuild:Compile</Generator>
  1488. <SubType>Designer</SubType>
  1489. </Page>
  1490. <Page Include="Themes\Cyan\ComboBox.xaml">
  1491. <Generator>MSBuild:Compile</Generator>
  1492. <SubType>Designer</SubType>
  1493. </Page>
  1494. <Page Include="Themes\Cyan\DataGrid.xaml">
  1495. <Generator>MSBuild:Compile</Generator>
  1496. <SubType>Designer</SubType>
  1497. </Page>
  1498. <Page Include="Themes\Cyan\Expander.xaml">
  1499. <Generator>MSBuild:Compile</Generator>
  1500. <SubType>Designer</SubType>
  1501. </Page>
  1502. <Page Include="Themes\Cyan\GroupBox.xaml">
  1503. <Generator>MSBuild:Compile</Generator>
  1504. <SubType>Designer</SubType>
  1505. </Page>
  1506. <Page Include="Themes\Cyan\ListBox.xaml">
  1507. <Generator>MSBuild:Compile</Generator>
  1508. <SubType>Designer</SubType>
  1509. </Page>
  1510. <Page Include="Themes\Cyan\Listview.xaml">
  1511. <Generator>MSBuild:Compile</Generator>
  1512. <SubType>Designer</SubType>
  1513. </Page>
  1514. <Page Include="Themes\Cyan\MenuItem.xaml">
  1515. <Generator>MSBuild:Compile</Generator>
  1516. <SubType>Designer</SubType>
  1517. </Page>
  1518. <Page Include="Themes\Cyan\Scrollbar.xaml">
  1519. <Generator>MSBuild:Compile</Generator>
  1520. <SubType>Designer</SubType>
  1521. </Page>
  1522. <Page Include="Themes\Cyan\Skin.xaml">
  1523. <Generator>MSBuild:Compile</Generator>
  1524. <SubType>Designer</SubType>
  1525. </Page>
  1526. <Page Include="Themes\Cyan\SkinType.xaml">
  1527. <Generator>MSBuild:Compile</Generator>
  1528. <SubType>Designer</SubType>
  1529. </Page>
  1530. <Page Include="Themes\Cyan\Tab.xaml">
  1531. <Generator>MSBuild:Compile</Generator>
  1532. <SubType>Designer</SubType>
  1533. </Page>
  1534. <Page Include="Themes\Cyan\TextBox.xaml">
  1535. <Generator>MSBuild:Compile</Generator>
  1536. <SubType>Designer</SubType>
  1537. </Page>
  1538. <Page Include="Themes\Cyan\TreeView.xaml">
  1539. <Generator>MSBuild:Compile</Generator>
  1540. <SubType>Designer</SubType>
  1541. </Page>
  1542. <Page Include="Themes\DeepBlueBackUp\Button.xaml">
  1543. <Generator>MSBuild:Compile</Generator>
  1544. <SubType>Designer</SubType>
  1545. </Page>
  1546. <Page Include="Themes\DeepBlueBackUp\ComboBox.xaml">
  1547. <Generator>MSBuild:Compile</Generator>
  1548. <SubType>Designer</SubType>
  1549. </Page>
  1550. <Page Include="Themes\DeepBlueBackUp\DataGrid.xaml">
  1551. <Generator>MSBuild:Compile</Generator>
  1552. <SubType>Designer</SubType>
  1553. </Page>
  1554. <Page Include="Themes\DeepBlueBackUp\Expander.xaml">
  1555. <Generator>MSBuild:Compile</Generator>
  1556. <SubType>Designer</SubType>
  1557. </Page>
  1558. <Page Include="Themes\DeepBlueBackUp\GroupBox.xaml">
  1559. <Generator>MSBuild:Compile</Generator>
  1560. <SubType>Designer</SubType>
  1561. </Page>
  1562. <Page Include="Themes\DeepBlueBackUp\ListBox.xaml">
  1563. <Generator>MSBuild:Compile</Generator>
  1564. <SubType>Designer</SubType>
  1565. </Page>
  1566. <Page Include="Themes\DeepBlueBackUp\Listview.xaml">
  1567. <Generator>MSBuild:Compile</Generator>
  1568. <SubType>Designer</SubType>
  1569. </Page>
  1570. <Page Include="Themes\DeepBlueBackUp\MenuItem.xaml">
  1571. <Generator>MSBuild:Compile</Generator>
  1572. <SubType>Designer</SubType>
  1573. </Page>
  1574. <Page Include="Themes\DeepBlueBackUp\Scrollbar.xaml">
  1575. <Generator>MSBuild:Compile</Generator>
  1576. <SubType>Designer</SubType>
  1577. </Page>
  1578. <Page Include="Themes\DeepBlueBackUp\Skin.xaml">
  1579. <Generator>MSBuild:Compile</Generator>
  1580. <SubType>Designer</SubType>
  1581. </Page>
  1582. <Page Include="Themes\DeepBlueBackUp\SkinType.xaml">
  1583. <Generator>MSBuild:Compile</Generator>
  1584. <SubType>Designer</SubType>
  1585. </Page>
  1586. <Page Include="Themes\DeepBlueBackUp\Tab.xaml">
  1587. <Generator>MSBuild:Compile</Generator>
  1588. <SubType>Designer</SubType>
  1589. </Page>
  1590. <Page Include="Themes\DeepBlueBackUp\TextBox.xaml">
  1591. <Generator>MSBuild:Compile</Generator>
  1592. <SubType>Designer</SubType>
  1593. </Page>
  1594. <Page Include="Themes\DeepBlueBackUp\TreeView.xaml">
  1595. <Generator>MSBuild:Compile</Generator>
  1596. <SubType>Designer</SubType>
  1597. </Page>
  1598. <Page Include="Themes\DeepBlue\Expander.xaml">
  1599. <Generator>MSBuild:Compile</Generator>
  1600. <SubType>Designer</SubType>
  1601. </Page>
  1602. <Page Include="Themes\DeepBlue\SkinType.xaml">
  1603. <Generator>MSBuild:Compile</Generator>
  1604. <SubType>Designer</SubType>
  1605. </Page>
  1606. <Page Include="Themes\Generic.xaml">
  1607. <Generator>MSBuild:Compile</Generator>
  1608. <SubType>Designer</SubType>
  1609. </Page>
  1610. <Page Include="DataGridTransform\DataGridExtern\Themes\controls.xaml">
  1611. <Generator>MSBuild:Compile</Generator>
  1612. <SubType>Designer</SubType>
  1613. </Page>
  1614. <Page Include="DataGridTransform\DataGridExtern\Themes\generic.xaml">
  1615. <Generator>MSBuild:Compile</Generator>
  1616. <SubType>Designer</SubType>
  1617. </Page>
  1618. <Page Include="DataGridTransform\DataGrid\Themes\Aero.NormalColor.xaml">
  1619. <Generator>MSBuild:Compile</Generator>
  1620. <SubType>Designer</SubType>
  1621. </Page>
  1622. <Page Include="DataGridTransform\DataGrid\Themes\Classic.xaml">
  1623. <Generator>MSBuild:Compile</Generator>
  1624. <SubType>Designer</SubType>
  1625. </Page>
  1626. <Page Include="DataGridTransform\DataGrid\Themes\Generic.xaml">
  1627. <Generator>MSBuild:Compile</Generator>
  1628. <SubType>Designer</SubType>
  1629. </Page>
  1630. <Page Include="DataGridTransform\DataGrid\Themes\Luna.HomeStead.xaml">
  1631. <Generator>MSBuild:Compile</Generator>
  1632. <SubType>Designer</SubType>
  1633. </Page>
  1634. <Page Include="DataGridTransform\DataGrid\Themes\Luna.Metallic.xaml">
  1635. <Generator>MSBuild:Compile</Generator>
  1636. <SubType>Designer</SubType>
  1637. </Page>
  1638. <Page Include="DataGridTransform\DataGrid\Themes\Luna.NormalColor.xaml">
  1639. <Generator>MSBuild:Compile</Generator>
  1640. <SubType>Designer</SubType>
  1641. </Page>
  1642. <Page Include="DataGridTransform\DataGrid\Themes\Royale.NormalColor.xaml">
  1643. <Generator>MSBuild:Compile</Generator>
  1644. <SubType>Designer</SubType>
  1645. </Page>
  1646. <Page Include="DataGridTransform\ExtendedGrid\DataGridThemes\ControlsTheme\ControlLiveExplorer.xaml">
  1647. <Generator>XamlIntelliSenseFileGenerator</Generator>
  1648. <SubType>Designer</SubType>
  1649. </Page>
  1650. <Page Include="DataGridTransform\ExtendedGrid\DataGridThemes\ControlsTheme\ControlMedia.xaml">
  1651. <Generator>XamlIntelliSenseFileGenerator</Generator>
  1652. <SubType>Designer</SubType>
  1653. </Page>
  1654. <Page Include="DataGridTransform\ExtendedGrid\DataGridThemes\ControlsTheme\ControlOffice2007Black.xaml">
  1655. <Generator>XamlIntelliSenseFileGenerator</Generator>
  1656. <SubType>Designer</SubType>
  1657. </Page>
  1658. <Page Include="DataGridTransform\ExtendedGrid\DataGridThemes\ControlsTheme\ControlOffice2007Blue.xaml">
  1659. <Generator>XamlIntelliSenseFileGenerator</Generator>
  1660. <SubType>Designer</SubType>
  1661. </Page>
  1662. <Page Include="DataGridTransform\ExtendedGrid\DataGridThemes\ControlsTheme\ControlOffice2007Silver.xaml">
  1663. <Generator>XamlIntelliSenseFileGenerator</Generator>
  1664. <SubType>Designer</SubType>
  1665. </Page>
  1666. <Page Include="DataGridTransform\ExtendedGrid\DataGridThemes\ControlsTheme\ControlWindows7.xaml">
  1667. <Generator>XamlIntelliSenseFileGenerator</Generator>
  1668. <SubType>Designer</SubType>
  1669. </Page>
  1670. <Page Include="DataGridTransform\ExtendedGrid\DataGridThemes\Default.xaml">
  1671. <Generator>XamlIntelliSenseFileGenerator</Generator>
  1672. <SubType>Designer</SubType>
  1673. </Page>
  1674. <Page Include="DataGridTransform\ExtendedGrid\DataGridThemes\ElectronicMedia.xaml">
  1675. <Generator>XamlIntelliSenseFileGenerator</Generator>
  1676. <SubType>Designer</SubType>
  1677. </Page>
  1678. <Page Include="DataGridTransform\ExtendedGrid\DataGridThemes\Office2007Black.xaml">
  1679. <Generator>XamlIntelliSenseFileGenerator</Generator>
  1680. <SubType>Designer</SubType>
  1681. </Page>
  1682. <Page Include="DataGridTransform\ExtendedGrid\DataGridThemes\Office2007Blue.xaml">
  1683. <Generator>XamlIntelliSenseFileGenerator</Generator>
  1684. <SubType>Designer</SubType>
  1685. </Page>
  1686. <Page Include="DataGridTransform\ExtendedGrid\DataGridThemes\Office2007Silver.xaml">
  1687. <Generator>XamlIntelliSenseFileGenerator</Generator>
  1688. <SubType>Designer</SubType>
  1689. </Page>
  1690. <Page Include="DataGridTransform\ExtendedGrid\DataGridThemes\OrangeDarkExplorer.xaml">
  1691. <Generator>XamlIntelliSenseFileGenerator</Generator>
  1692. <SubType>Designer</SubType>
  1693. </Page>
  1694. <Page Include="DataGridTransform\ExtendedGrid\DataGridThemes\System.xaml">
  1695. <Generator>XamlIntelliSenseFileGenerator</Generator>
  1696. <SubType>Designer</SubType>
  1697. </Page>
  1698. <Page Include="DataGridTransform\ExtendedGrid\DataGridThemes\Windows7.xaml">
  1699. <Generator>XamlIntelliSenseFileGenerator</Generator>
  1700. <SubType>Designer</SubType>
  1701. </Page>
  1702. <Page Include="DataGridTransform\ExtendedGrid\Styles\Brushes.xaml">
  1703. <Generator>MSBuild:Compile</Generator>
  1704. <SubType>Designer</SubType>
  1705. </Page>
  1706. <Page Include="DataGridTransform\ExtendedGrid\Styles\DataGrid.Generic.xaml">
  1707. <Generator>MSBuild:Compile</Generator>
  1708. <SubType>Designer</SubType>
  1709. </Page>
  1710. <Page Include="DataGridTransform\ExtendedGrid\UserControls\ColumnChooserControl.xaml">
  1711. <Generator>MSBuild:Compile</Generator>
  1712. <SubType>Designer</SubType>
  1713. </Page>
  1714. <Page Include="Themes\Aero.NormalColor.xaml">
  1715. <Generator>MSBuild:Compile</Generator>
  1716. <SubType>Designer</SubType>
  1717. </Page>
  1718. <Page Include="Themes\Classic.xaml">
  1719. <Generator>MSBuild:Compile</Generator>
  1720. <SubType>Designer</SubType>
  1721. </Page>
  1722. <Page Include="DataGridTransform\Themes\Generic.xaml">
  1723. <Generator>MSBuild:Compile</Generator>
  1724. <SubType>Designer</SubType>
  1725. </Page>
  1726. <Page Include="Themes\GrayBlue\Button.xaml">
  1727. <Generator>MSBuild:Compile</Generator>
  1728. <SubType>Designer</SubType>
  1729. </Page>
  1730. <Page Include="Themes\GrayBlue\ComboBox.xaml">
  1731. <Generator>MSBuild:Compile</Generator>
  1732. <SubType>Designer</SubType>
  1733. </Page>
  1734. <Page Include="Themes\GrayBlue\DataGrid.xaml">
  1735. <Generator>MSBuild:Compile</Generator>
  1736. <SubType>Designer</SubType>
  1737. </Page>
  1738. <Page Include="Themes\GrayBlue\Expander.xaml">
  1739. <Generator>MSBuild:Compile</Generator>
  1740. <SubType>Designer</SubType>
  1741. </Page>
  1742. <Page Include="Themes\GrayBlue\GroupBox.xaml">
  1743. <Generator>MSBuild:Compile</Generator>
  1744. <SubType>Designer</SubType>
  1745. </Page>
  1746. <Page Include="Themes\GrayBlue\ListBox.xaml">
  1747. <Generator>MSBuild:Compile</Generator>
  1748. <SubType>Designer</SubType>
  1749. </Page>
  1750. <Page Include="Themes\GrayBlue\Listview.xaml">
  1751. <Generator>MSBuild:Compile</Generator>
  1752. <SubType>Designer</SubType>
  1753. </Page>
  1754. <Page Include="Themes\GrayBlue\MenuItem.xaml">
  1755. <Generator>MSBuild:Compile</Generator>
  1756. <SubType>Designer</SubType>
  1757. </Page>
  1758. <Page Include="Themes\GrayBlue\Scrollbar.xaml">
  1759. <Generator>MSBuild:Compile</Generator>
  1760. <SubType>Designer</SubType>
  1761. </Page>
  1762. <Page Include="Themes\GrayBlue\Skin.xaml">
  1763. <Generator>MSBuild:Compile</Generator>
  1764. <SubType>Designer</SubType>
  1765. </Page>
  1766. <Page Include="Themes\GrayBlue\SkinType.xaml">
  1767. <Generator>MSBuild:Compile</Generator>
  1768. <SubType>Designer</SubType>
  1769. </Page>
  1770. <Page Include="Themes\GrayBlue\Tab.xaml">
  1771. <Generator>MSBuild:Compile</Generator>
  1772. <SubType>Designer</SubType>
  1773. </Page>
  1774. <Page Include="Themes\GrayBlue\TextBox.xaml">
  1775. <Generator>MSBuild:Compile</Generator>
  1776. <SubType>Designer</SubType>
  1777. </Page>
  1778. <Page Include="Themes\GrayBlue\TreeView.xaml">
  1779. <Generator>MSBuild:Compile</Generator>
  1780. <SubType>Designer</SubType>
  1781. </Page>
  1782. <Page Include="Themes\LightBlue\Button.xaml">
  1783. <Generator>MSBuild:Compile</Generator>
  1784. <SubType>Designer</SubType>
  1785. </Page>
  1786. <Page Include="Themes\LightBlue\ComboBox.xaml">
  1787. <Generator>MSBuild:Compile</Generator>
  1788. <SubType>Designer</SubType>
  1789. </Page>
  1790. <Page Include="Themes\LightBlue\DataGrid.xaml">
  1791. <Generator>MSBuild:Compile</Generator>
  1792. <SubType>Designer</SubType>
  1793. </Page>
  1794. <Page Include="Themes\LightBlue\Expander.xaml">
  1795. <Generator>MSBuild:Compile</Generator>
  1796. <SubType>Designer</SubType>
  1797. </Page>
  1798. <Page Include="Themes\LightBlue\GroupBox.xaml">
  1799. <Generator>MSBuild:Compile</Generator>
  1800. <SubType>Designer</SubType>
  1801. </Page>
  1802. <Page Include="Themes\LightBlue\ListBox.xaml">
  1803. <Generator>MSBuild:Compile</Generator>
  1804. <SubType>Designer</SubType>
  1805. </Page>
  1806. <Page Include="Themes\LightBlue\Listview.xaml">
  1807. <Generator>MSBuild:Compile</Generator>
  1808. <SubType>Designer</SubType>
  1809. </Page>
  1810. <Page Include="Themes\LightBlue\MenuItem.xaml">
  1811. <Generator>MSBuild:Compile</Generator>
  1812. <SubType>Designer</SubType>
  1813. </Page>
  1814. <Page Include="Themes\LightBlue\Scrollbar.xaml">
  1815. <Generator>MSBuild:Compile</Generator>
  1816. <SubType>Designer</SubType>
  1817. </Page>
  1818. <Page Include="Themes\LightBlue\Skin.xaml">
  1819. <Generator>MSBuild:Compile</Generator>
  1820. <SubType>Designer</SubType>
  1821. </Page>
  1822. <Page Include="Themes\LightBlue\SkinType.xaml">
  1823. <Generator>MSBuild:Compile</Generator>
  1824. <SubType>Designer</SubType>
  1825. </Page>
  1826. <Page Include="Themes\LightBlue\Tab.xaml">
  1827. <Generator>MSBuild:Compile</Generator>
  1828. <SubType>Designer</SubType>
  1829. </Page>
  1830. <Page Include="Themes\LightBlue\TextBox.xaml">
  1831. <Generator>MSBuild:Compile</Generator>
  1832. <SubType>Designer</SubType>
  1833. </Page>
  1834. <Page Include="Themes\LightBlue\TreeView.xaml">
  1835. <Generator>MSBuild:Compile</Generator>
  1836. <SubType>Designer</SubType>
  1837. </Page>
  1838. <Page Include="Themes\lightgreen\Button.xaml">
  1839. <Generator>MSBuild:Compile</Generator>
  1840. <SubType>Designer</SubType>
  1841. </Page>
  1842. <Page Include="Themes\lightgreen\ComboBox.xaml">
  1843. <Generator>MSBuild:Compile</Generator>
  1844. <SubType>Designer</SubType>
  1845. </Page>
  1846. <Page Include="Themes\lightgreen\DataGrid.xaml">
  1847. <Generator>MSBuild:Compile</Generator>
  1848. <SubType>Designer</SubType>
  1849. </Page>
  1850. <Page Include="Themes\lightgreen\Expander.xaml">
  1851. <Generator>MSBuild:Compile</Generator>
  1852. <SubType>Designer</SubType>
  1853. </Page>
  1854. <Page Include="Themes\lightgreen\GroupBox.xaml">
  1855. <Generator>MSBuild:Compile</Generator>
  1856. <SubType>Designer</SubType>
  1857. </Page>
  1858. <Page Include="Themes\lightgreen\Label.xaml">
  1859. <Generator>MSBuild:Compile</Generator>
  1860. <SubType>Designer</SubType>
  1861. </Page>
  1862. <Page Include="Themes\lightgreen\ListBox.xaml">
  1863. <Generator>MSBuild:Compile</Generator>
  1864. <SubType>Designer</SubType>
  1865. </Page>
  1866. <Page Include="Themes\lightgreen\Listview.xaml">
  1867. <Generator>MSBuild:Compile</Generator>
  1868. <SubType>Designer</SubType>
  1869. </Page>
  1870. <Page Include="Themes\lightgreen\MenuItem.xaml">
  1871. <Generator>MSBuild:Compile</Generator>
  1872. <SubType>Designer</SubType>
  1873. </Page>
  1874. <Page Include="Themes\lightgreen\RadioButton.xaml">
  1875. <Generator>MSBuild:Compile</Generator>
  1876. <SubType>Designer</SubType>
  1877. </Page>
  1878. <Page Include="Themes\lightgreen\Scrollbar.xaml">
  1879. <Generator>MSBuild:Compile</Generator>
  1880. <SubType>Designer</SubType>
  1881. </Page>
  1882. <Page Include="Themes\lightgreen\Skin.xaml">
  1883. <Generator>MSBuild:Compile</Generator>
  1884. <SubType>Designer</SubType>
  1885. </Page>
  1886. <Page Include="Themes\lightgreen\SkinType.xaml">
  1887. <Generator>MSBuild:Compile</Generator>
  1888. <SubType>Designer</SubType>
  1889. </Page>
  1890. <Page Include="Themes\lightgreen\Tab.xaml">
  1891. <Generator>MSBuild:Compile</Generator>
  1892. <SubType>Designer</SubType>
  1893. </Page>
  1894. <Page Include="Themes\lightgreen\TextBlock.xaml">
  1895. <Generator>MSBuild:Compile</Generator>
  1896. <SubType>Designer</SubType>
  1897. </Page>
  1898. <Page Include="Themes\lightgreen\TextBox.xaml">
  1899. <Generator>MSBuild:Compile</Generator>
  1900. <SubType>Designer</SubType>
  1901. </Page>
  1902. <Page Include="Themes\lightgreen\TextBoxEx2.xaml">
  1903. <Generator>MSBuild:Compile</Generator>
  1904. <SubType>Designer</SubType>
  1905. </Page>
  1906. <Page Include="Themes\lightgreen\TextBoxEx3.xaml">
  1907. <Generator>MSBuild:Compile</Generator>
  1908. <SubType>Designer</SubType>
  1909. </Page>
  1910. <Page Include="Themes\lightgreen\TreeView.xaml">
  1911. <Generator>MSBuild:Compile</Generator>
  1912. <SubType>Designer</SubType>
  1913. </Page>
  1914. <Page Include="Themes\Luna.HomeStead.xaml">
  1915. <Generator>MSBuild:Compile</Generator>
  1916. <SubType>Designer</SubType>
  1917. </Page>
  1918. <Page Include="Themes\Luna.Metallic.xaml">
  1919. <Generator>MSBuild:Compile</Generator>
  1920. <SubType>Designer</SubType>
  1921. </Page>
  1922. <Page Include="Themes\Luna.NormalColor.xaml">
  1923. <Generator>MSBuild:Compile</Generator>
  1924. <SubType>Designer</SubType>
  1925. </Page>
  1926. <Page Include="Themes\OceanBlue\Button.xaml">
  1927. <Generator>MSBuild:Compile</Generator>
  1928. <SubType>Designer</SubType>
  1929. </Page>
  1930. <Page Include="Themes\OceanBlue\ComboBox.xaml">
  1931. <Generator>MSBuild:Compile</Generator>
  1932. <SubType>Designer</SubType>
  1933. </Page>
  1934. <Page Include="Themes\OceanBlue\DataGrid.xaml">
  1935. <Generator>MSBuild:Compile</Generator>
  1936. <SubType>Designer</SubType>
  1937. </Page>
  1938. <Page Include="Themes\OceanBlue\Expander.xaml">
  1939. <Generator>MSBuild:Compile</Generator>
  1940. <SubType>Designer</SubType>
  1941. </Page>
  1942. <Page Include="Themes\OceanBlue\GroupBox.xaml">
  1943. <Generator>MSBuild:Compile</Generator>
  1944. <SubType>Designer</SubType>
  1945. </Page>
  1946. <Page Include="Themes\OceanBlue\ListBox.xaml">
  1947. <Generator>MSBuild:Compile</Generator>
  1948. <SubType>Designer</SubType>
  1949. </Page>
  1950. <Page Include="Themes\OceanBlue\Listview.xaml">
  1951. <Generator>MSBuild:Compile</Generator>
  1952. <SubType>Designer</SubType>
  1953. </Page>
  1954. <Page Include="Themes\OceanBlue\MenuItem.xaml">
  1955. <Generator>MSBuild:Compile</Generator>
  1956. <SubType>Designer</SubType>
  1957. </Page>
  1958. <Page Include="Themes\OceanBlue\RadioButton.xaml">
  1959. <Generator>MSBuild:Compile</Generator>
  1960. <SubType>Designer</SubType>
  1961. </Page>
  1962. <Page Include="Themes\OceanBlue\Scrollbar.xaml">
  1963. <Generator>MSBuild:Compile</Generator>
  1964. <SubType>Designer</SubType>
  1965. </Page>
  1966. <Page Include="Themes\OceanBlue\Skin.xaml">
  1967. <Generator>MSBuild:Compile</Generator>
  1968. <SubType>Designer</SubType>
  1969. </Page>
  1970. <Page Include="Themes\OceanBlue\SkinType.xaml">
  1971. <Generator>MSBuild:Compile</Generator>
  1972. <SubType>Designer</SubType>
  1973. </Page>
  1974. <Page Include="Themes\OceanBlue\Label.xaml">
  1975. <Generator>MSBuild:Compile</Generator>
  1976. <SubType>Designer</SubType>
  1977. </Page>
  1978. <Page Include="Themes\OceanBlue\Tab.xaml">
  1979. <Generator>MSBuild:Compile</Generator>
  1980. <SubType>Designer</SubType>
  1981. </Page>
  1982. <Page Include="Themes\OceanBlue\TextBlock.xaml">
  1983. <Generator>MSBuild:Compile</Generator>
  1984. <SubType>Designer</SubType>
  1985. </Page>
  1986. <Page Include="Themes\OceanBlue\TextBox.xaml">
  1987. <Generator>MSBuild:Compile</Generator>
  1988. <SubType>Designer</SubType>
  1989. </Page>
  1990. <Page Include="Themes\OceanBlue\TextBoxEx3.xaml">
  1991. <Generator>MSBuild:Compile</Generator>
  1992. <SubType>Designer</SubType>
  1993. </Page>
  1994. <Page Include="Themes\OceanBlue\TreeView.xaml">
  1995. <Generator>MSBuild:Compile</Generator>
  1996. <SubType>Designer</SubType>
  1997. </Page>
  1998. <Page Include="Themes\Royale.NormalColor.xaml">
  1999. <Generator>MSBuild:Compile</Generator>
  2000. <SubType>Designer</SubType>
  2001. </Page>
  2002. <Page Include="Themes\DeepBlue\Button.xaml">
  2003. <Generator>MSBuild:Compile</Generator>
  2004. <SubType>Designer</SubType>
  2005. </Page>
  2006. <Page Include="Themes\DeepBlue\ComboBox.xaml">
  2007. <Generator>MSBuild:Compile</Generator>
  2008. <SubType>Designer</SubType>
  2009. </Page>
  2010. <Page Include="Themes\DeepBlue\DataGrid.xaml">
  2011. <Generator>MSBuild:Compile</Generator>
  2012. <SubType>Designer</SubType>
  2013. </Page>
  2014. <Page Include="Themes\DeepBlue\GroupBox.xaml">
  2015. <Generator>MSBuild:Compile</Generator>
  2016. <SubType>Designer</SubType>
  2017. </Page>
  2018. <Page Include="Themes\DeepBlue\ListBox.xaml">
  2019. <Generator>MSBuild:Compile</Generator>
  2020. <SubType>Designer</SubType>
  2021. </Page>
  2022. <Page Include="Themes\DeepBlue\Listview.xaml">
  2023. <Generator>MSBuild:Compile</Generator>
  2024. <SubType>Designer</SubType>
  2025. </Page>
  2026. <Page Include="Themes\DeepBlue\MenuItem.xaml">
  2027. <Generator>MSBuild:Compile</Generator>
  2028. <SubType>Designer</SubType>
  2029. </Page>
  2030. <Page Include="Themes\DeepBlue\Scrollbar.xaml">
  2031. <Generator>MSBuild:Compile</Generator>
  2032. <SubType>Designer</SubType>
  2033. </Page>
  2034. <Page Include="Themes\DeepBlue\Skin.xaml">
  2035. <Generator>MSBuild:Compile</Generator>
  2036. <SubType>Designer</SubType>
  2037. </Page>
  2038. <Page Include="Themes\DeepBlue\Tab.xaml">
  2039. <Generator>MSBuild:Compile</Generator>
  2040. <SubType>Designer</SubType>
  2041. </Page>
  2042. <Page Include="Themes\DeepBlue\TextBox.xaml">
  2043. <Generator>MSBuild:Compile</Generator>
  2044. <SubType>Designer</SubType>
  2045. </Page>
  2046. <Page Include="Themes\DeepBlue\TreeView.xaml">
  2047. <Generator>MSBuild:Compile</Generator>
  2048. <SubType>Designer</SubType>
  2049. </Page>
  2050. <Page Include="Themes\SeaBlue\Button.xaml">
  2051. <Generator>MSBuild:Compile</Generator>
  2052. <SubType>Designer</SubType>
  2053. </Page>
  2054. <Page Include="Themes\SeaBlue\ComboBox.xaml">
  2055. <Generator>MSBuild:Compile</Generator>
  2056. <SubType>Designer</SubType>
  2057. </Page>
  2058. <Page Include="Themes\SeaBlue\DataGrid.xaml">
  2059. <Generator>MSBuild:Compile</Generator>
  2060. <SubType>Designer</SubType>
  2061. </Page>
  2062. <Page Include="Themes\SeaBlue\Expander.xaml">
  2063. <Generator>MSBuild:Compile</Generator>
  2064. <SubType>Designer</SubType>
  2065. </Page>
  2066. <Page Include="Themes\SeaBlue\GroupBox.xaml">
  2067. <Generator>MSBuild:Compile</Generator>
  2068. <SubType>Designer</SubType>
  2069. </Page>
  2070. <Page Include="Themes\SeaBlue\ListBox.xaml">
  2071. <Generator>MSBuild:Compile</Generator>
  2072. <SubType>Designer</SubType>
  2073. </Page>
  2074. <Page Include="Themes\SeaBlue\Listview.xaml">
  2075. <Generator>MSBuild:Compile</Generator>
  2076. <SubType>Designer</SubType>
  2077. </Page>
  2078. <Page Include="Themes\SeaBlue\MenuItem.xaml">
  2079. <Generator>MSBuild:Compile</Generator>
  2080. <SubType>Designer</SubType>
  2081. </Page>
  2082. <Page Include="Themes\SeaBlue\Scrollbar.xaml">
  2083. <Generator>MSBuild:Compile</Generator>
  2084. <SubType>Designer</SubType>
  2085. </Page>
  2086. <Page Include="Themes\SeaBlue\Skin.xaml">
  2087. <Generator>MSBuild:Compile</Generator>
  2088. <SubType>Designer</SubType>
  2089. </Page>
  2090. <Page Include="Themes\SeaBlue\SkinType.xaml">
  2091. <Generator>MSBuild:Compile</Generator>
  2092. <SubType>Designer</SubType>
  2093. </Page>
  2094. <Page Include="Themes\SeaBlue\Tab.xaml">
  2095. <Generator>MSBuild:Compile</Generator>
  2096. <SubType>Designer</SubType>
  2097. </Page>
  2098. <Page Include="Themes\SeaBlue\TextBox.xaml">
  2099. <Generator>MSBuild:Compile</Generator>
  2100. <SubType>Designer</SubType>
  2101. </Page>
  2102. <Page Include="Themes\SeaBlue\TreeView.xaml">
  2103. <Generator>MSBuild:Compile</Generator>
  2104. <SubType>Designer</SubType>
  2105. </Page>
  2106. <Page Include="Themes\SkyBlue\Button.xaml">
  2107. <Generator>MSBuild:Compile</Generator>
  2108. <SubType>Designer</SubType>
  2109. </Page>
  2110. <Page Include="Themes\SkyBlue\ComboBox.xaml">
  2111. <Generator>MSBuild:Compile</Generator>
  2112. <SubType>Designer</SubType>
  2113. </Page>
  2114. <Page Include="Themes\SkyBlue\DataGrid.xaml">
  2115. <Generator>MSBuild:Compile</Generator>
  2116. <SubType>Designer</SubType>
  2117. </Page>
  2118. <Page Include="Themes\SkyBlue\Expander.xaml">
  2119. <Generator>MSBuild:Compile</Generator>
  2120. <SubType>Designer</SubType>
  2121. </Page>
  2122. <Page Include="Themes\SkyBlue\GroupBox.xaml">
  2123. <Generator>MSBuild:Compile</Generator>
  2124. <SubType>Designer</SubType>
  2125. </Page>
  2126. <Page Include="Themes\SkyBlue\ListBox.xaml">
  2127. <Generator>MSBuild:Compile</Generator>
  2128. <SubType>Designer</SubType>
  2129. </Page>
  2130. <Page Include="Themes\SkyBlue\Listview.xaml">
  2131. <Generator>MSBuild:Compile</Generator>
  2132. <SubType>Designer</SubType>
  2133. </Page>
  2134. <Page Include="Themes\SkyBlue\MenuItem.xaml">
  2135. <Generator>MSBuild:Compile</Generator>
  2136. <SubType>Designer</SubType>
  2137. </Page>
  2138. <Page Include="Themes\SkyBlue\Scrollbar.xaml">
  2139. <Generator>MSBuild:Compile</Generator>
  2140. <SubType>Designer</SubType>
  2141. </Page>
  2142. <Page Include="Themes\SkyBlue\Skin.xaml">
  2143. <Generator>MSBuild:Compile</Generator>
  2144. <SubType>Designer</SubType>
  2145. </Page>
  2146. <Page Include="Themes\SkyBlue\SkinType.xaml">
  2147. <Generator>MSBuild:Compile</Generator>
  2148. <SubType>Designer</SubType>
  2149. </Page>
  2150. <Page Include="Themes\SkyBlue\Tab.xaml">
  2151. <Generator>MSBuild:Compile</Generator>
  2152. <SubType>Designer</SubType>
  2153. </Page>
  2154. <Page Include="Themes\SkyBlue\TextBox.xaml">
  2155. <Generator>MSBuild:Compile</Generator>
  2156. <SubType>Designer</SubType>
  2157. </Page>
  2158. <Page Include="Themes\SkyBlue\TreeView.xaml">
  2159. <Generator>MSBuild:Compile</Generator>
  2160. <SubType>Designer</SubType>
  2161. </Page>
  2162. <Page Include="Themes\Standard\Button.xaml">
  2163. <Generator>MSBuild:Compile</Generator>
  2164. <SubType>Designer</SubType>
  2165. </Page>
  2166. <Page Include="Themes\Standard\ComboBox.xaml">
  2167. <Generator>MSBuild:Compile</Generator>
  2168. <SubType>Designer</SubType>
  2169. </Page>
  2170. <Page Include="Themes\Standard\DataGrid.xaml">
  2171. <Generator>MSBuild:Compile</Generator>
  2172. <SubType>Designer</SubType>
  2173. </Page>
  2174. <Page Include="Themes\Standard\Expander.xaml">
  2175. <Generator>MSBuild:Compile</Generator>
  2176. <SubType>Designer</SubType>
  2177. </Page>
  2178. <Page Include="Themes\Standard\GroupBox.xaml">
  2179. <Generator>MSBuild:Compile</Generator>
  2180. <SubType>Designer</SubType>
  2181. </Page>
  2182. <Page Include="Themes\Standard\ListBox.xaml">
  2183. <Generator>MSBuild:Compile</Generator>
  2184. <SubType>Designer</SubType>
  2185. </Page>
  2186. <Page Include="Themes\Standard\Listview.xaml">
  2187. <Generator>MSBuild:Compile</Generator>
  2188. <SubType>Designer</SubType>
  2189. </Page>
  2190. <Page Include="Themes\Standard\MenuItem.xaml">
  2191. <Generator>MSBuild:Compile</Generator>
  2192. <SubType>Designer</SubType>
  2193. </Page>
  2194. <Page Include="Themes\Standard\Scrollbar.xaml">
  2195. <Generator>MSBuild:Compile</Generator>
  2196. <SubType>Designer</SubType>
  2197. </Page>
  2198. <Page Include="Themes\Standard\Skin.xaml">
  2199. <Generator>MSBuild:Compile</Generator>
  2200. <SubType>Designer</SubType>
  2201. </Page>
  2202. <Page Include="Themes\Standard\SkinType.xaml">
  2203. <Generator>MSBuild:Compile</Generator>
  2204. <SubType>Designer</SubType>
  2205. </Page>
  2206. <Page Include="Themes\Standard\Tab.xaml">
  2207. <Generator>MSBuild:Compile</Generator>
  2208. <SubType>Designer</SubType>
  2209. </Page>
  2210. <Page Include="Themes\Standard\TextBlock.xaml">
  2211. <Generator>MSBuild:Compile</Generator>
  2212. <SubType>Designer</SubType>
  2213. </Page>
  2214. <Page Include="Themes\Standard\TextBox.xaml">
  2215. <Generator>MSBuild:Compile</Generator>
  2216. <SubType>Designer</SubType>
  2217. </Page>
  2218. <Page Include="Themes\Standard\TreeView.xaml">
  2219. <Generator>MSBuild:Compile</Generator>
  2220. <SubType>Designer</SubType>
  2221. </Page>
  2222. <Page Include="Themes\SubPanelBlue\Button.xaml">
  2223. <Generator>MSBuild:Compile</Generator>
  2224. <SubType>Designer</SubType>
  2225. </Page>
  2226. <Page Include="Themes\SubPanelBlue\ComboBox.xaml">
  2227. <Generator>MSBuild:Compile</Generator>
  2228. <SubType>Designer</SubType>
  2229. </Page>
  2230. <Page Include="Themes\SubPanelBlue\DataGrid.xaml">
  2231. <Generator>MSBuild:Compile</Generator>
  2232. <SubType>Designer</SubType>
  2233. </Page>
  2234. <Page Include="Themes\SubPanelBlue\Expander.xaml">
  2235. <Generator>MSBuild:Compile</Generator>
  2236. <SubType>Designer</SubType>
  2237. </Page>
  2238. <Page Include="Themes\SubPanelBlue\GroupBox.xaml">
  2239. <Generator>MSBuild:Compile</Generator>
  2240. <SubType>Designer</SubType>
  2241. </Page>
  2242. <Page Include="Themes\SubPanelBlue\Label.xaml">
  2243. <Generator>MSBuild:Compile</Generator>
  2244. <SubType>Designer</SubType>
  2245. </Page>
  2246. <Page Include="Themes\SubPanelBlue\ListBox.xaml">
  2247. <Generator>MSBuild:Compile</Generator>
  2248. <SubType>Designer</SubType>
  2249. </Page>
  2250. <Page Include="Themes\SubPanelBlue\Listview.xaml">
  2251. <Generator>MSBuild:Compile</Generator>
  2252. <SubType>Designer</SubType>
  2253. </Page>
  2254. <Page Include="Themes\SubPanelBlue\MenuItem.xaml">
  2255. <Generator>MSBuild:Compile</Generator>
  2256. <SubType>Designer</SubType>
  2257. </Page>
  2258. <Page Include="Themes\SubPanelBlue\Scrollbar.xaml">
  2259. <Generator>MSBuild:Compile</Generator>
  2260. <SubType>Designer</SubType>
  2261. </Page>
  2262. <Page Include="Themes\SubPanelBlue\Skin.xaml">
  2263. <Generator>MSBuild:Compile</Generator>
  2264. <SubType>Designer</SubType>
  2265. </Page>
  2266. <Page Include="Themes\SubPanelBlue\Tab.xaml">
  2267. <Generator>MSBuild:Compile</Generator>
  2268. <SubType>Designer</SubType>
  2269. </Page>
  2270. <Page Include="Themes\SubPanelBlue\TextBlock.xaml">
  2271. <Generator>MSBuild:Compile</Generator>
  2272. <SubType>Designer</SubType>
  2273. </Page>
  2274. <Page Include="Themes\SubPanelBlue\TextBox.xaml">
  2275. <Generator>MSBuild:Compile</Generator>
  2276. <SubType>Designer</SubType>
  2277. </Page>
  2278. <Page Include="Themes\SubPanelBlue\TreeView.xaml">
  2279. <Generator>MSBuild:Compile</Generator>
  2280. <SubType>Designer</SubType>
  2281. </Page>
  2282. </ItemGroup>
  2283. <ItemGroup>
  2284. <EmbeddedResource Include="Properties\Resources.resx">
  2285. <Generator>ResXFileCodeGenerator</Generator>
  2286. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  2287. <SubType>Designer</SubType>
  2288. </EmbeddedResource>
  2289. </ItemGroup>
  2290. <ItemGroup>
  2291. <ProjectReference Include="..\Common\Common.csproj">
  2292. <Project>{6958FE72-CC01-4176-A86C-59B0E1CD0367}</Project>
  2293. <Name>Common</Name>
  2294. </ProjectReference>
  2295. <ProjectReference Include="..\RTEquipmentLibrary\RTEquipmentLibrary.csproj">
  2296. <Project>{A25B907A-0BF8-49B5-9B42-50EC3FC50A34}</Project>
  2297. <Name>RTEquipmentLibrary</Name>
  2298. </ProjectReference>
  2299. <ProjectReference Include="..\UICore\UICore.csproj">
  2300. <Project>{1333f7c8-3db2-4783-8a37-3840f1be0cb0}</Project>
  2301. <Name>UICore</Name>
  2302. </ProjectReference>
  2303. </ItemGroup>
  2304. <ItemGroup />
  2305. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  2306. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  2307. Other similar extension points exist, see Microsoft.Common.targets.
  2308. <Target Name="BeforeBuild">
  2309. </Target>
  2310. <Target Name="AfterBuild">
  2311. </Target>
  2312. -->
  2313. </Project>