UIClient.csproj 115 KB

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