UIClient.csproj 113 KB

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