123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313 |
- <?xml version="1.0" encoding="utf-8"?>
- <Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
- <PropertyGroup>
- <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
- <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
- <ProjectGuid>{1CE52879-0B94-4250-BE8A-5149E9396C54}</ProjectGuid>
- <OutputType>Library</OutputType>
- <AppDesignerFolder>Properties</AppDesignerFolder>
- <RootNamespace>MECF.Framework.UI.Client</RootNamespace>
- <AssemblyName>MECF.Framework.UI.Client</AssemblyName>
- <TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
- <FileAlignment>512</FileAlignment>
- <TargetFrameworkProfile />
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <DebugSymbols>true</DebugSymbols>
- <DebugType>full</DebugType>
- <Optimize>false</Optimize>
- <OutputPath>..\output\MECF.Framework\</OutputPath>
- <DefineConstants>TRACE;DEBUG;NET,EXPORT_TO_CSV</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <Prefer32Bit>false</Prefer32Bit>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
- <DebugType>pdbonly</DebugType>
- <Optimize>true</Optimize>
- <OutputPath>bin\Release\</OutputPath>
- <DefineConstants>TRACE</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <Prefer32Bit>false</Prefer32Bit>
- </PropertyGroup>
- <ItemGroup>
- <Reference Include="DocumentFormat.OpenXml, Version=2.10.1.0, Culture=neutral, PublicKeyToken=8fb06cb64d019a17, processorArchitecture=MSIL">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>..\..\ThirdParty\dlls\DocumentFormat.OpenXml.dll</HintPath>
- </Reference>
- <Reference Include="log4net">
- <HintPath>..\..\ThirdParty\dlls\log4net.dll</HintPath>
- </Reference>
- <Reference Include="Microsoft.DwayneNeed">
- <HintPath>..\..\ThirdParty\dlls\Microsoft.DwayneNeed.dll</HintPath>
- </Reference>
- <Reference Include="Microsoft.Expression.Interactions, Version=4.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>..\..\ThirdParty\dlls\Microsoft.Expression.Interactions.dll</HintPath>
- </Reference>
- <Reference Include="Microsoft.VisualBasic" />
- <Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>..\..\ThirdParty\dlls\Newtonsoft.Json.dll</HintPath>
- </Reference>
- <Reference Include="PresentationCore" />
- <Reference Include="PresentationFramework" />
- <Reference Include="PresentationFramework.Aero" />
- <Reference Include="SciChart.Charting, Version=6.0.1.12982, Culture=neutral, PublicKeyToken=b55dd9efe817e823, processorArchitecture=MSIL">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>..\..\ThirdParty\dlls\SciCart\SciChart.Charting.dll</HintPath>
- </Reference>
- <Reference Include="SciChart.Core, Version=6.0.1.12982, Culture=neutral, PublicKeyToken=b55dd9efe817e823, processorArchitecture=MSIL">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>..\..\ThirdParty\dlls\SciCart\SciChart.Core.dll</HintPath>
- </Reference>
- <Reference Include="SciChart.Data, Version=6.0.1.12982, Culture=neutral, PublicKeyToken=b55dd9efe817e823, processorArchitecture=MSIL">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>..\..\ThirdParty\dlls\SciCart\SciChart.Data.dll</HintPath>
- </Reference>
- <Reference Include="SciChart.Drawing, Version=6.0.1.12982, Culture=neutral, PublicKeyToken=b55dd9efe817e823, processorArchitecture=MSIL">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>..\..\ThirdParty\dlls\SciCart\SciChart.Drawing.dll</HintPath>
- </Reference>
- <Reference Include="System" />
- <Reference Include="System.ComponentModel.DataAnnotations" />
- <Reference Include="System.Core" />
- <Reference Include="System.Drawing" />
- <Reference Include="System.Management" />
- <Reference Include="System.Runtime.Serialization" />
- <Reference Include="System.Windows" />
- <Reference Include="System.Windows.Forms" />
- <Reference Include="System.Windows.Interactivity, Version=4.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>..\..\ThirdParty\dlls\System.Windows.Interactivity.dll</HintPath>
- </Reference>
- <Reference Include="System.Xaml" />
- <Reference Include="System.Xml.Linq" />
- <Reference Include="System.Data.DataSetExtensions" />
- <Reference Include="Microsoft.CSharp" />
- <Reference Include="System.Data" />
- <Reference Include="System.Xml" />
- <Reference Include="UIAutomationProvider" />
- <Reference Include="UIAutomationTypes" />
- <Reference Include="WindowsBase" />
- <Reference Include="WindowsFormsIntegration" />
- <Reference Include="Xceed.Wpf.Toolkit, Version=2.0.0.0, Culture=neutral, PublicKeyToken=3e4669d2f30244f4, processorArchitecture=MSIL">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>..\..\ThirdParty\dlls\Xceed.Wpf.Toolkit.dll</HintPath>
- </Reference>
- </ItemGroup>
- <ItemGroup>
- <Compile Include="Caliburn.Micro\Action.cs" />
- <Compile Include="Caliburn.Micro\ActionExecutionContext.cs" />
- <Compile Include="Caliburn.Micro\ActionMessage.cs" />
- <Compile Include="Caliburn.Micro\AssemblySource.cs" />
- <Compile Include="Caliburn.Micro\Bind.cs" />
- <Compile Include="Caliburn.Micro\BindingScope.cs" />
- <Compile Include="Caliburn.Micro\BooleanToVisibilityConverter.cs" />
- <Compile Include="Caliburn.Micro\Bootstrapper.cs" />
- <Compile Include="Caliburn.Micro\ChildResolver.cs" />
- <Compile Include="Caliburn.Micro\ConventionManager.cs" />
- <Compile Include="Caliburn.Micro\Core\ActivationEventArgs.cs" />
- <Compile Include="Caliburn.Micro\Core\ActivationProcessedEventArgs.cs" />
- <Compile Include="Caliburn.Micro\Core\BindableCollection.cs" />
- <Compile Include="Caliburn.Micro\Core\Conductor.cs" />
- <Compile Include="Caliburn.Micro\Core\ConductorBase.cs" />
- <Compile Include="Caliburn.Micro\Core\ConductorBaseWithActiveItem.cs" />
- <Compile Include="Caliburn.Micro\Core\ConductorWithCollectionAllActive.cs" />
- <Compile Include="Caliburn.Micro\Core\ConductorWithCollectionOneActive.cs" />
- <Compile Include="Caliburn.Micro\Core\ContainerExtensions.cs" />
- <Compile Include="Caliburn.Micro\Core\ContinueResultDecorator.cs" />
- <Compile Include="Caliburn.Micro\Core\Coroutine.cs" />
- <Compile Include="Caliburn.Micro\Core\CoroutineExecutionContext.cs" />
- <Compile Include="Caliburn.Micro\Core\DeactivationEventArgs.cs" />
- <Compile Include="Caliburn.Micro\Core\DebugLog.cs" />
- <Compile Include="Caliburn.Micro\Core\DefaultCloseStrategy.cs" />
- <Compile Include="Caliburn.Micro\Core\DefaultPlatformProvider.cs" />
- <Compile Include="Caliburn.Micro\Core\DelegateResult.cs" />
- <Compile Include="Caliburn.Micro\Core\EnumerableExtensions.cs" />
- <Compile Include="Caliburn.Micro\Core\EventAggregator.cs" />
- <Compile Include="Caliburn.Micro\Core\EventAggregatorExtensions.cs" />
- <Compile Include="Caliburn.Micro\Core\Execute.cs" />
- <Compile Include="Caliburn.Micro\Core\ExpressionExtensions.cs" />
- <Compile Include="Caliburn.Micro\Core\ExtensionMethods.cs" />
- <Compile Include="Caliburn.Micro\Core\IActivate.cs" />
- <Compile Include="Caliburn.Micro\Core\IChild.cs" />
- <Compile Include="Caliburn.Micro\Core\IClose.cs" />
- <Compile Include="Caliburn.Micro\Core\ICloseStrategy.cs" />
- <Compile Include="Caliburn.Micro\Core\IConductor.cs" />
- <Compile Include="Caliburn.Micro\Core\IDeactivate.cs" />
- <Compile Include="Caliburn.Micro\Core\IEventAggregator.cs" />
- <Compile Include="Caliburn.Micro\Core\IGuardClose.cs" />
- <Compile Include="Caliburn.Micro\Core\IHandle.cs" />
- <Compile Include="Caliburn.Micro\Core\IHandleWithCoroutine.cs" />
- <Compile Include="Caliburn.Micro\Core\IHandleWithTask.cs" />
- <Compile Include="Caliburn.Micro\Core\IHaveActiveItem.cs" />
- <Compile Include="Caliburn.Micro\Core\IHaveDisplayName.cs" />
- <Compile Include="Caliburn.Micro\Core\ILog.cs" />
- <Compile Include="Caliburn.Micro\Core\INotifyPropertyChangedEx.cs" />
- <Compile Include="Caliburn.Micro\Core\IObservableCollection.cs" />
- <Compile Include="Caliburn.Micro\Core\IoC.cs" />
- <Compile Include="Caliburn.Micro\Core\IParent.cs" />
- <Compile Include="Caliburn.Micro\Core\IPlatformProvider.cs" />
- <Compile Include="Caliburn.Micro\Core\IResult.cs" />
- <Compile Include="Caliburn.Micro\Core\IScreen.cs" />
- <Compile Include="Caliburn.Micro\Core\IViewAware.cs" />
- <Compile Include="Caliburn.Micro\Core\LogManager.cs" />
- <Compile Include="Caliburn.Micro\Core\NameTransformer.cs" />
- <Compile Include="Caliburn.Micro\Core\OverrideCancelResultDecorator.cs" />
- <Compile Include="Caliburn.Micro\Core\PlatformProvider.cs" />
- <Compile Include="Caliburn.Micro\Core\PortableReflectionExtensions.cs" />
- <Compile Include="Caliburn.Micro\Core\PropertyChangedBase.cs" />
- <Compile Include="Caliburn.Micro\Core\RegExHelper.cs" />
- <Compile Include="Caliburn.Micro\Core\RescueResultDecorator.cs" />
- <Compile Include="Caliburn.Micro\Core\ResultCompletionEventArgs.cs" />
- <Compile Include="Caliburn.Micro\Core\ResultDecoratorBase.cs" />
- <Compile Include="Caliburn.Micro\Core\ResultExtensions.cs" />
- <Compile Include="Caliburn.Micro\Core\Screen.cs" />
- <Compile Include="Caliburn.Micro\Core\ScreenExtensions.cs" />
- <Compile Include="Caliburn.Micro\Core\SequentialResult.cs" />
- <Compile Include="Caliburn.Micro\Core\SimpleContainer.cs" />
- <Compile Include="Caliburn.Micro\Core\SimpleResult.cs" />
- <Compile Include="Caliburn.Micro\Core\StringSplitter.cs" />
- <Compile Include="Caliburn.Micro\Core\TaskExtensions.cs" />
- <Compile Include="Caliburn.Micro\Core\TaskResult.cs" />
- <Compile Include="Caliburn.Micro\Core\TypeMappingConfiguration.cs" />
- <Compile Include="Caliburn.Micro\Core\ViewAttachedEventArgs.cs" />
- <Compile Include="Caliburn.Micro\Core\ViewAware.cs" />
- <Compile Include="Caliburn.Micro\Core\WeakValueDictionary.cs" />
- <Compile Include="Caliburn.Micro\DependencyPropertyHelper.cs" />
- <Compile Include="Caliburn.Micro\ElementConvention.cs" />
- <Compile Include="Caliburn.Micro\IHaveParameters.cs" />
- <Compile Include="Caliburn.Micro\Message.cs" />
- <Compile Include="Caliburn.Micro\MessageBinder.cs" />
- <Compile Include="Caliburn.Micro\net40\AttachedCollection.cs" />
- <Compile Include="Caliburn.Micro\net40\Parameter.cs" />
- <Compile Include="Caliburn.Micro\net40\WindowManager.cs" />
- <Compile Include="Caliburn.Micro\Parser.cs" />
- <Compile Include="CenterViews\Alarms\AlarmProvider.cs" />
- <Compile Include="CenterViews\Alarms\ModuleAlarm\ModuleAlarmView.xaml.cs">
- <DependentUpon>ModuleAlarmView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\Alarms\ModuleAlarm\ModuleAlarmViewModel.cs" />
- <Compile Include="CenterViews\Alarms\Alarm\AlarmView.xaml.cs">
- <DependentUpon>AlarmView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\Alarms\Alarm\AlarmViewModel.cs" />
- <Compile Include="CenterViews\Configs\SignalTowerConfig\RadioCheckBox.xaml.cs">
- <DependentUpon>RadioCheckBox.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\Configs\SignalTowerConfig\SignalTowerConfigView.xaml.cs">
- <DependentUpon>SignalTowerConfigView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\Configs\SignalTowerConfig\SignalTowerConfigViewModel.cs" />
- <Compile Include="CenterViews\Configs\DataConfig\DataConfigView.xaml.cs">
- <DependentUpon>DataConfigView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\Configs\DataConfig\DataConfigViewModel.cs" />
- <Compile Include="CenterViews\Configs\SystemConfig\ShutDonwControlView.xaml.cs">
- <DependentUpon>ShutDonwControlView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\Configs\SystemConfig\ShutDonwControlViewModel.cs" />
- <Compile Include="CenterViews\Controls\BoatWaferItem.cs" />
- <Compile Include="CenterViews\Controls\PaginationList.xaml.cs">
- <DependentUpon>PaginationList.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\DataLogs\DataHistory\SelectUserDefineView.xaml.cs">
- <DependentUpon>SelectUserDefineView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\DataLogs\DataHistory\SelectUserDefineViewModel.cs" />
- <Compile Include="CenterViews\DataLogs\Event\SelectDateView.xaml.cs">
- <DependentUpon>SelectDateView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\DataLogs\Event\SelectDateViewModel.cs" />
- <Compile Include="CenterViews\DataLogs\Event\SelectFilterConditionView.xaml.cs">
- <DependentUpon>SelectFilterConditionView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\DataLogs\Event\SelectFilterConditionViewModel.cs" />
- <Compile Include="CenterViews\DataLogs\ProcessHistory\BatchDetailView.xaml.cs">
- <DependentUpon>BatchDetailView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\DataLogs\ProcessHistory\BatchDetailViewModel.cs" />
- <Compile Include="CenterViews\DataLogs\ProcessHistory\CassetteDetailView.xaml.cs">
- <DependentUpon>CassetteDetailView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\DataLogs\ProcessHistory\CassetteDetailViewModel.cs" />
- <Compile Include="CenterViews\DataLogs\ProcessHistory\ProcessDetailV2View.xaml.cs">
- <DependentUpon>ProcessDetailV2View.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\DataLogs\ProcessHistory\ProcessDetailV2ViewModel.cs" />
- <Compile Include="CenterViews\DataLogs\ProcessHistory\ProcessDetailView.xaml.cs">
- <DependentUpon>ProcessDetailView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\DataLogs\ProcessHistory\ProcessDetailViewModel.cs" />
- <Compile Include="CenterViews\DataLogs\ProcessHistory\ProcessExportAllView.xaml.cs">
- <DependentUpon>ProcessExportAllView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\DataLogs\ProcessHistory\ProcessExportAllViewModel.cs" />
- <Compile Include="CenterViews\DataLogs\ProcessHistory\ProcessHistoryTwoView.xaml.cs">
- <DependentUpon>ProcessHistoryTwoView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\DataLogs\ProcessHistory\ProcessHistoryTwoViewModel.cs" />
- <Compile Include="CenterViews\DataLogs\WaferHistory\WaferHistory2View.xaml.cs">
- <DependentUpon>WaferHistory2View.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\DataLogs\WaferHistory\WaferHistory2ViewModel.cs" />
- <Compile Include="CenterViews\DataLogs\WaferHistory\WaferHistoryDBView.xaml.cs">
- <DependentUpon>WaferHistoryDBView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\DataLogs\WaferHistory\WaferHistoryDBViewModel.cs" />
- <Compile Include="CenterViews\Dialogs\FullKeyboard.xaml.cs">
- <DependentUpon>FullKeyboard.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\Dialogs\InputDialogView.xaml.cs">
- <DependentUpon>InputDialogView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\Dialogs\InputDialogViewModel.cs" />
- <Compile Include="CenterViews\Dialogs\ItemsSelectDialogView.xaml.cs">
- <DependentUpon>ItemsSelectDialogView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\Dialogs\ItemsSelectDialogViewModel.cs" />
- <Compile Include="CenterViews\Dialogs\ListDialogProView.xaml.cs">
- <DependentUpon>ListDialogProView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\Dialogs\ListDialogProViewModel.cs" />
- <Compile Include="CenterViews\Dialogs\ListDialogView.xaml.cs">
- <DependentUpon>ListDialogView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\Dialogs\ListDialogViewModel.cs" />
- <Compile Include="CenterViews\Dialogs\NumberDigitKeyboard.xaml.cs">
- <DependentUpon>NumberDigitKeyboard.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\Dialogs\NumberKeyboard.xaml.cs">
- <DependentUpon>NumberKeyboard.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\Dialogs\NumberKeyborardNoMinus.xaml.cs">
- <DependentUpon>NumberKeyborardNoMinus.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\Dialogs\PresetGroupSaveDialog.xaml.cs" />
- <Compile Include="CenterViews\Dialogs\PurgeDialogView.xaml.cs">
- <DependentUpon>PurgeDialogView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\Dialogs\PurgeDialogViewModel.cs" />
- <Compile Include="CenterViews\Dialogs\TimeKeyboard.xaml.cs">
- <DependentUpon>TimeKeyboard.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\Editors\ParameterFormatBuilder.cs" />
- <Compile Include="CenterViews\Editors\ParameterTreeBuilder.cs" />
- <Compile Include="CenterViews\Editors\Parameter\ParameterSelectDialogView.xaml.cs">
- <DependentUpon>ParameterSelectDialogView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\Editors\Parameter\ParameterSelectDialogViewModel.cs" />
- <Compile Include="CenterViews\Editors\RecipeConfig\RecipeConfigView.xaml.cs">
- <DependentUpon>RecipeConfigView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\Editors\RecipeConfig\RecipeConfigViewModel.cs" />
- <Compile Include="CenterViews\Editors\Recipe\CGlobal.cs" />
- <Compile Include="CenterViews\Editors\Recipe\PopSettingDialogView.xaml.cs">
- <DependentUpon>PopSettingDialogView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\Editors\Recipe\RecipeDataBase.cs" />
- <Compile Include="CenterViews\Editors\Recipe\RecipeSelectDialogView.xaml.cs">
- <DependentUpon>RecipeSelectDialogView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\Editors\Recipe\PopSettingDialogViewModel.cs" />
- <Compile Include="CenterViews\Editors\Recipe\RecipeSelectDialogViewModel.cs" />
- <Compile Include="CenterViews\Editors\Recipe\RecipeStepTimeView.xaml.cs">
- <DependentUpon>RecipeStepTimeView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\Editors\Recipe\RecipeStepTimeViewModel.cs" />
- <Compile Include="CenterViews\Editors\Recipe\SaveToDialogView.xaml.cs">
- <DependentUpon>SaveToDialogView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\Editors\Recipe\SaveToDialogViewModel.cs" />
- <Compile Include="CenterViews\Maitenances\CalibrationTable\CalibrationTableView.xaml.cs">
- <DependentUpon>CalibrationTableView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\Maitenances\CalibrationTable\CalibrationTableViewModel.cs" />
- <Compile Include="CenterViews\Maitenances\Connections\ConnectionView.xaml.cs">
- <DependentUpon>ConnectionView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\Maitenances\Connections\ConnectionViewModel.cs" />
- <Compile Include="CenterViews\Maitenances\FFU\FFUView.xaml.cs">
- <DependentUpon>FFUView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\Maitenances\FFU\FFUViewModel.cs" />
- <Compile Include="CenterViews\Maitenances\IO3\IO3View.xaml.cs">
- <DependentUpon>IO3View.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\Maitenances\IO3\IO3ViewModel.cs" />
- <Compile Include="CenterViews\Maitenances\MFCVerification\MFCVerificationView.xaml.cs">
- <DependentUpon>MFCVerificationView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\Maitenances\MFCVerification\MFCVerificationViewModel.cs" />
- <Compile Include="CenterViews\Parameter\AlarmConditionParameterData.cs" />
- <Compile Include="CenterViews\Parameter\AlarmConditionTable.cs" />
- <Compile Include="CenterViews\Parameter\AlarmtableParameterView.xaml.cs">
- <DependentUpon>AlarmtableParameterView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\Parameter\AlarmtableParameterViewModel.cs" />
- <Compile Include="CenterViews\Parameter\APCPIDParameterData.cs" />
- <Compile Include="CenterViews\Parameter\APCPIDTable.cs" />
- <Compile Include="CenterViews\Parameter\InterlockActionAutoView.xaml.cs">
- <DependentUpon>InterlockActionAutoView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\Parameter\InterlockActionAutoViewModel.cs" />
- <Compile Include="CenterViews\Parameter\InterlockAPCView.xaml.cs">
- <DependentUpon>InterlockAPCView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\Parameter\InterlockAPCViewModel.cs" />
- <Compile Include="CenterViews\Parameter\InterlockCheckView.xaml.cs">
- <DependentUpon>InterlockCheckView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\Parameter\InterlockCheckViewModel.cs" />
- <Compile Include="CenterViews\Parameter\InterlockConditionView.xaml.cs">
- <DependentUpon>InterlockConditionView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\Parameter\InterlockConditionViewModel.cs" />
- <Compile Include="CenterViews\Parameter\InterlockFlagView.xaml.cs">
- <DependentUpon>InterlockFlagView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\Parameter\InterlockFlagViewModel.cs" />
- <Compile Include="CenterViews\Parameter\InterlockMFCView.xaml.cs">
- <DependentUpon>InterlockMFCView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\Parameter\InterlockMFCViewModel.cs" />
- <Compile Include="CenterViews\Parameter\InterlockMFMView.xaml.cs">
- <DependentUpon>InterlockMFMView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\Parameter\InterlockMFMViewModel.cs" />
- <Compile Include="CenterViews\Parameter\InterlockSelectItemView.xaml.cs">
- <DependentUpon>InterlockSelectItemView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\Parameter\InterlockSelectItemViewModel.cs" />
- <Compile Include="CenterViews\Parameter\InterlockSNSView.xaml.cs">
- <DependentUpon>InterlockSNSView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\Parameter\InterlockSNSViewModel.cs" />
- <Compile Include="CenterViews\Parameter\InterlockTEMPView.xaml.cs">
- <DependentUpon>InterlockTEMPView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\Parameter\InterlockTEMPViewModel.cs" />
- <Compile Include="CenterViews\Parameter\InterlockView.xaml.cs">
- <DependentUpon>InterlockView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\Parameter\InterlockViewModel.cs" />
- <Compile Include="CenterViews\Parameter\LeakCheckConditionParameterData.cs" />
- <Compile Include="CenterViews\Parameter\LeakCheckConditionTable.cs" />
- <Compile Include="CenterViews\Parameter\N2PurgeEditView.xaml.cs">
- <DependentUpon>N2PurgeEditView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\Parameter\MainParameterEditView.xaml.cs">
- <DependentUpon>MainParameterEditView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\Parameter\N2PurgeEditViewModel.cs" />
- <Compile Include="CenterViews\Parameter\MainParameterEditViewModel.cs" />
- <Compile Include="CenterViews\Parameter\ParameterDataBase.cs" />
- <Compile Include="CenterViews\Parameter\ParameterProvider.cs" />
- <Compile Include="CenterViews\Parameter\TempAutoPIDParameterData.cs" />
- <Compile Include="CenterViews\Parameter\TempAutoPIDTable.cs" />
- <Compile Include="CenterViews\Parameter\TempCorrectionParameterData.cs" />
- <Compile Include="CenterViews\Parameter\TempCorrectionTable.cs" />
- <Compile Include="CenterViews\Parameter\TempPIDParameterData.cs" />
- <Compile Include="CenterViews\Parameter\TempPIDTable.cs" />
- <Compile Include="CenterViews\Parameter\TempProfileParameterData.cs" />
- <Compile Include="CenterViews\Parameter\TempProfileTable.cs" />
- <Compile Include="ClientBase\AttachedProperties\TextBlockHighlighter.cs" />
- <Compile Include="ClientBase\AttachedProperties\WatermarkAdorner.cs" />
- <Compile Include="ClientBase\AttachedProperties\WatermarkService.cs" />
- <Compile Include="ClientBase\BindableBase.cs" />
- <Compile Include="ClientBase\BusyIndicateableUiViewModelBase.cs" />
- <Compile Include="ClientBase\Charting\ChartingLineSeriesCollection.cs" />
- <Compile Include="ClientBase\Charting\FastLineDataSeries.cs" />
- <Compile Include="ClientBase\Charting\FastLineSeries.cs" />
- <Compile Include="ClientBase\Charting\ParameterNodePoint.cs" />
- <Compile Include="ClientBase\Collections\DelayedPresentRollingObservableCollection.cs" />
- <Compile Include="ClientBase\Collections\ObservableRangeCollection.cs" />
- <Compile Include="ClientBase\Collections\SafeEnumerator.cs" />
- <Compile Include="ClientBase\ContextMenuManager.cs" />
- <Compile Include="ClientBase\DateRangeHelper.cs" />
- <Compile Include="ClientBase\EventArgs\ProgressUpdatingEventArgs.cs" />
- <Compile Include="ClientBase\EventArgs\RenderableSeriesDeletingEventArgs.cs" />
- <Compile Include="ClientBase\EventArgs\TreeNodeSelectionChangedEventArgs.cs" />
- <Compile Include="ClientBase\ModuleManager.cs" />
- <Compile Include="ClientBase\Pipelines\PipelineMethodInvoker.cs" />
- <Compile Include="ClientBase\Pipelines\TwoStagePipelineBasedTaskExecutor.cs" />
- <Compile Include="ClientBase\RoleAccountProvider.cs" />
- <Compile Include="ClientBase\Tree\TreeNode.cs" />
- <Compile Include="ClientBase\Tree\TreeNodeCollection.cs" />
- <Compile Include="ClientBase\Tree\TreeNodeSelectionGroupInfo.cs" />
- <Compile Include="ClientBase\UIViewModelBase.cs" />
- <Compile Include="ClientBase\CarrierInfoData.cs" />
- <Compile Include="ClientBase\UserControls\BusyIndicator.xaml.cs" />
- <Compile Include="ClientBase\UserControls\CirclePointRingLoading.cs" />
- <Compile Include="ClientBase\UserControls\DataViewChart.xaml.cs" />
- <Compile Include="ClientBase\UserControls\DataViewDataGrid.xaml.cs" />
- <Compile Include="ClientBase\UserControls\ParameterNodeTreeViewControl.xaml.cs" />
- <Compile Include="ClientBase\WaferMoveManager.cs" />
- <Compile Include="ClientBase\ModuleDataMonitor.cs" />
- <Compile Include="ClientBase\WaferTransferCondition.cs" />
- <Compile Include="ClientBase\WaferTransferDialogView.xaml.cs">
- <DependentUpon>WaferTransferDialogView.xaml</DependentUpon>
- </Compile>
- <Compile Include="ClientBase\WaferTransferDialogViewModel.cs" />
- <Compile Include="CenterViews\Configs\Accounts\AccountItem.cs" />
- <Compile Include="CenterViews\Configs\Accounts\AccountManager.cs" />
- <Compile Include="CenterViews\Configs\Accounts\AccountView.xaml.cs">
- <DependentUpon>AccountView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\Configs\Accounts\AccountViewModel.cs" />
- <Compile Include="CenterViews\Configs\Accounts\RoleSatusItem.cs" />
- <Compile Include="CenterViews\Configs\Roles\RoleItem.cs" />
- <Compile Include="CenterViews\Configs\Roles\RoleManager.cs" />
- <Compile Include="CenterViews\Configs\Roles\RolePermissionMapper.cs" />
- <Compile Include="CenterViews\Configs\Roles\RoleView.xaml.cs">
- <DependentUpon>RoleView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\Configs\Roles\RoleViewModel.cs" />
- <Compile Include="CenterViews\Configs\SystemConfig\ConfigValueTemplateSelector.cs" />
- <Compile Include="CenterViews\Configs\SystemConfig\SystemConfigItem.cs" />
- <Compile Include="CenterViews\Configs\SystemConfig\SystemConfigProvider.cs" />
- <Compile Include="CenterViews\Configs\SystemConfig\SystemConfigView.xaml.cs">
- <DependentUpon>SystemConfigView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\Configs\SystemConfig\SystemConfigViewModel.cs" />
- <Compile Include="CenterViews\Controls\E84Info.xaml.cs">
- <DependentUpon>E84Info.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\Controls\LED.xaml.cs">
- <DependentUpon>LED.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\Controls\ScDoubleRow.xaml.cs">
- <DependentUpon>ScDoubleRow.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\Controls\ScStringRow.xaml.cs">
- <DependentUpon>ScStringRow.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\DataLogs\DataHistory\DataView.xaml.cs">
- <DependentUpon>DataView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\DataLogs\DataHistory\DataViewModel.cs" />
- <Compile Include="CenterViews\DataLogs\Event\EventView.xaml.cs">
- <DependentUpon>EventView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\DataLogs\Event\EventViewModel.cs" />
- <Compile Include="CenterViews\DataLogs\ProcessHistory\ChartParameter.cs" />
- <Compile Include="CenterViews\DataLogs\ProcessHistory\ProcessHistoryProvider.cs" />
- <Compile Include="CenterViews\DataLogs\ProcessHistory\ProcessHistoryView.xaml.cs">
- <DependentUpon>ProcessHistoryView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\DataLogs\ProcessHistory\ProcessHistoryViewModel.cs" />
- <Compile Include="CenterViews\DataLogs\ProcessHistory\SelectDataView.xaml.cs">
- <DependentUpon>SelectDataView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\DataLogs\ProcessHistory\SelectDataViewModel.cs" />
- <Compile Include="CenterViews\DataLogs\Statistics\StatisticsView.xaml.cs">
- <DependentUpon>StatisticsView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\DataLogs\Statistics\StatisticsViewModel.cs" />
- <Compile Include="CenterViews\DataLogs\WaferHistory\WaferHistoryView.xaml.cs">
- <DependentUpon>WaferHistoryView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\DataLogs\WaferHistory\WaferHistoryViewModel.cs" />
- <Compile Include="CenterViews\DataLogs\WaferHistory\YAxisLabelProvider.cs" />
- <Compile Include="CenterViews\Editors\EditMode.cs" />
- <Compile Include="CenterViews\Editors\FolderOrFileTemplateSelector.cs" />
- <Compile Include="CenterViews\Editors\InputFileNameDialogView.xaml.cs">
- <DependentUpon>InputFileNameDialogView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\Editors\InputFileNameDialogViewModel.cs" />
- <Compile Include="CenterViews\Editors\RecipeSequenceSelectDialogView.xaml.cs">
- <DependentUpon>RecipeSequenceSelectDialogView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\Editors\RecipeSequenceSelectDialogViewModel.cs" />
- <Compile Include="CenterViews\Editors\RecipeSequenceTreeBuilder.cs" />
- <Compile Include="CenterViews\Editors\Sequence\SequenceColumnBuilder.cs" />
- <Compile Include="CenterViews\Editors\Sequence\SequenceData.cs" />
- <Compile Include="CenterViews\Editors\Sequence\SequenceDataProvider.cs" />
- <Compile Include="CenterViews\Editors\Sequence\SequenceView.xaml.cs">
- <DependentUpon>SequenceView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\Editors\Sequence\SequenceViewModel.cs" />
- <Compile Include="CenterViews\LogOnOff\LogoffView.xaml.cs">
- <DependentUpon>LogoffView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\LogOnOff\LogoffViewModel.cs" />
- <Compile Include="CenterViews\LogOnOff\ShutdownView.xaml.cs">
- <DependentUpon>ShutdownView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\LogOnOff\ShutdownViewModel.cs" />
- <Compile Include="CenterViews\Maitenances\IO1\IO1View.xaml.cs">
- <DependentUpon>IO1View.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\Maitenances\IO1\IO1ViewModel.cs" />
- <Compile Include="CenterViews\Maitenances\IO2\IO2View.xaml.cs">
- <DependentUpon>IO2View.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\Maitenances\IO2\IO2ViewModel.cs" />
- <Compile Include="CenterViews\Operations\E84\E84View.xaml.cs">
- <DependentUpon>E84View.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\Operations\E84\E84ViewModel.cs" />
- <Compile Include="CenterViews\Operations\FA\FAView.xaml.cs">
- <DependentUpon>FAView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\Operations\FA\FAViewModel.cs" />
- <Compile Include="CenterViews\Operations\LotHistory\LotHistoryView.xaml.cs">
- <DependentUpon>LotHistoryView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\Operations\LotHistory\LotHistoryViewModel.cs" />
- <Compile Include="CenterViews\Operations\MonitorJob\MonitorJobView.xaml.cs">
- <DependentUpon>MonitorJobView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\Operations\MonitorJob\MonitorJobViewModel.cs" />
- <Compile Include="CenterViews\Operations\RealTime\RealtimeProvider.cs" />
- <Compile Include="CenterViews\Operations\RealTime\RealTimeView.xaml.cs">
- <DependentUpon>RealTimeView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\Operations\RealTime\RealTimeViewModel.cs" />
- <Compile Include="CenterViews\Operations\WaferAssociation\SequenceDialogView.xaml.cs">
- <DependentUpon>SequenceDialogView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\Operations\WaferAssociation\SequenceDialogViewModel.cs" />
- <Compile Include="CenterViews\Operations\WaferAssociation\WaferAssociationInfo.cs" />
- <Compile Include="CenterViews\Operations\WaferAssociation\WaferAssociationProvider.cs" />
- <Compile Include="CenterViews\Operations\WaferAssociation\WaferAssociationUnit.xaml.cs">
- <DependentUpon>WaferAssociationUnit.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\Operations\WaferAssociation\WaferAssociationView.xaml.cs">
- <DependentUpon>WaferAssociationView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\Operations\WaferAssociation\WaferAssociationViewModel.cs" />
- <Compile Include="ClientBase\BaseApp.cs" />
- <Compile Include="ClientBase\BaseModel.cs" />
- <Compile Include="ClientBase\Command\BaseCommand.cs" />
- <Compile Include="ClientBase\Command\CommandParameter.cs" />
- <Compile Include="ClientBase\Command\CommandSource.cs" />
- <Compile Include="ClientBase\Command\CommandTrigger.cs" />
- <Compile Include="ClientBase\Command\CommandTriggerGroup.cs" />
- <Compile Include="ClientBase\Command\EventCommandTrigger.cs" />
- <Compile Include="ClientBase\Command\PropertyCommandTrigger.cs" />
- <Compile Include="ClientBase\CommonEnum.cs" />
- <Compile Include="ClientBase\DataErrorInfo.cs" />
- <Compile Include="ClientBase\Dialog\Dialogbox.cs" />
- <Compile Include="ClientBase\Dialog\DialogViewModel.cs" />
- <Compile Include="ClientBase\Dialog\MessageDialog.cs" />
- <Compile Include="ClientBase\Dialog\MessageDialogView.xaml.cs">
- <DependentUpon>MessageDialogView.xaml</DependentUpon>
- </Compile>
- <Compile Include="ClientBase\Dialog\MessageDialogViewModel.cs" />
- <Compile Include="ClientBase\IHandler.cs" />
- <Compile Include="ClientBase\IO\IOItem.cs" />
- <Compile Include="ClientBase\ISupportMultipleSystem.cs" />
- <Compile Include="ClientBase\MenuManager.cs" />
- <Compile Include="ClientBase\ModuleInfo.cs" />
- <Compile Include="ClientBase\ModuleWaferManager.cs" />
- <Compile Include="ClientBase\ServiceProvider\IProvider.cs" />
- <Compile Include="ClientBase\Utility\AssemblyUtil.cs" />
- <Compile Include="ClientBase\ValidatorBase.cs" />
- <Compile Include="ClientBase\WaferInfo.cs" />
- <Compile Include="ClientBase\_MESSAGE.cs" />
- <Compile Include="Converter\CheckPortStateConverter.cs" />
- <Compile Include="Converter\CheckAccessModeConverter.cs" />
- <Compile Include="Converter\FileNameConverter.cs" />
- <Compile Include="Core\Container\CachedTypeInfo.cs" />
- <Compile Include="Core\Container\ConstructorCache.cs" />
- <Compile Include="Core\Container\IContainer.cs" />
- <Compile Include="Core\Container\ParameterCache.cs" />
- <Compile Include="Core\Container\SimpleContainer.cs" />
- <Compile Include="Core\Container\TypeResolver.cs" />
- <Compile Include="Ctrlib\Controls\CheckBoxExt.cs" />
- <Compile Include="Ctrlib\Controls\ComboBoxExt.cs" />
- <Compile Include="Ctrlib\Controls\ComboTextBlock.cs" />
- <Compile Include="Ctrlib\Controls\CarrierContentControl.cs" />
- <Compile Include="Ctrlib\Controls\VirtualizingWrapPanel.cs" />
- <Compile Include="Ctrlib\Controls\Wafer.cs" />
- <Compile Include="Ctrlib\Converter\DrawingColorToMediaColorConverter.cs" />
- <Compile Include="Ctrlib\Converter\ForeColorConverter.cs" />
- <Compile Include="Ctrlib\Converter\MediaColorToSolidColorBrushConverter.cs" />
- <Compile Include="Ctrlib\Converter\ParameterNodeStatisticToStringConverter.cs" />
- <Compile Include="Ctrlib\Converter\ParameterNodeTreeViewVisibilityMultiBindingConverter.cs" />
- <Compile Include="Ctrlib\Converter\SourceNameConverter.cs" />
- <Compile Include="Ctrlib\Converter\WaferStatusConverter.cs" />
- <Compile Include="Ctrlib\UnitControls\AITMicrowaveSettingDialogView.xaml.cs">
- <DependentUpon>AITMicrowaveSettingDialogView.xaml</DependentUpon>
- </Compile>
- <Compile Include="Ctrlib\UnitControls\AITMicrowaveSettingDialogViewModel.cs" />
- <Compile Include="Ctrlib\UnitControls\CassetteTopView.xaml.cs">
- <DependentUpon>CassetteTopView.xaml</DependentUpon>
- </Compile>
- <Compile Include="Ctrlib\UnitControls\FOUPFrontViewPro.xaml.cs">
- <DependentUpon>FOUPFrontViewPro.xaml</DependentUpon>
- </Compile>
- <Compile Include="Ctrlib\UnitControls\RFSimpleControl.xaml.cs">
- <DependentUpon>RFSimpleControl.xaml</DependentUpon>
- </Compile>
- <Compile Include="Ctrlib\UnitControls\ChillerControl.xaml.cs">
- <DependentUpon>ChillerControl.xaml</DependentUpon>
- </Compile>
- <Compile Include="Ctrlib\UnitControls\FoupTopView3.xaml.cs">
- <DependentUpon>FoupTopView3.xaml</DependentUpon>
- </Compile>
- <Compile Include="Ctrlib\UnitControls\MultipleSelectionsCombox.xaml.cs">
- <DependentUpon>MultipleSelectionsCombox.xaml</DependentUpon>
- </Compile>
- <Compile Include="Ctrlib\Converter\DisplayNameConverter.cs" />
- <Compile Include="Ctrlib\Converter\UnitStatusBackgroundColorConverter.cs" />
- <Compile Include="Ctrlib\Converter\UnitOnlineBorderColorConverter.cs" />
- <Compile Include="Ctrlib\Converter\BoolReverseConverter.cs" />
- <Compile Include="Ctrlib\UnitControls\AITHeaterControl.xaml.cs">
- <DependentUpon>AITHeaterControl.xaml</DependentUpon>
- </Compile>
- <Compile Include="Ctrlib\UnitControls\AITPressureMeter.xaml.cs">
- <DependentUpon>AITPressureMeter.xaml</DependentUpon>
- </Compile>
- <Compile Include="Ctrlib\UnitControls\AITRf.xaml.cs">
- <DependentUpon>AITRf.xaml</DependentUpon>
- </Compile>
- <Compile Include="Ctrlib\UnitControls\VGPartText.xaml.cs">
- <DependentUpon>VGPartText.xaml</DependentUpon>
- </Compile>
- <Compile Include="Ctrlib\UnitControls\VGPart.xaml.cs">
- <DependentUpon>VGPart.xaml</DependentUpon>
- </Compile>
- <Compile Include="Ctrlib\UnitControls\TVSettingDialogView.xaml.cs">
- <DependentUpon>TVSettingDialogView.xaml</DependentUpon>
- </Compile>
- <Compile Include="Ctrlib\UnitControls\TVSettingDialogViewModel.cs" />
- <Compile Include="Ctrlib\UnitControls\TVControl.xaml.cs">
- <DependentUpon>TVControl.xaml</DependentUpon>
- </Compile>
- <Compile Include="Ctrlib\UnitControls\AITThrottleValveInputDialogBox.xaml.cs">
- <DependentUpon>AITThrottleValveInputDialogBox.xaml</DependentUpon>
- </Compile>
- <Compile Include="Ctrlib\UnitControls\Door.xaml.cs">
- <DependentUpon>Door.xaml</DependentUpon>
- </Compile>
- <Compile Include="Ctrlib\UnitControls\FoupTopView.xaml.cs">
- <DependentUpon>FoupTopView.xaml</DependentUpon>
- </Compile>
- <Compile Include="Ctrlib\Controls\EditTextBlock.cs" />
- <Compile Include="Ctrlib\Controls\ComboTextBlockAdorner.cs" />
- <Compile Include="Ctrlib\Controls\EditTextBlockAdorner.cs" />
- <Compile Include="Ctrlib\Controls\Gasline.cs" />
- <Compile Include="Ctrlib\Controls\GaslineJoint.cs" />
- <Compile Include="Ctrlib\Controls\Slot.cs" />
- <Compile Include="Ctrlib\Controls\SwitchButton.cs" />
- <Compile Include="Ctrlib\Controls\TextBoxEx.cs" />
- <Compile Include="Ctrlib\Controls\Valve.cs" />
- <Compile Include="Ctrlib\Controls\WaferSmall.cs" />
- <Compile Include="Ctrlib\Controls\XDataGrid.cs" />
- <Compile Include="Ctrlib\Converter\BoolVisibilityConverter.cs" />
- <Compile Include="Ctrlib\Converter\FOUPStatusConverter.cs" />
- <Compile Include="Ctrlib\Converter\DataConverter.cs" />
- <Compile Include="Ctrlib\Converter\HideNullConverter.cs" />
- <Compile Include="Ctrlib\Converter\SlotBorderConverter.cs" />
- <Compile Include="Ctrlib\Converter\VisibilityConverter.cs" />
- <Compile Include="Ctrlib\Types\JointType.cs" />
- <Compile Include="Ctrlib\Types\ValveState.cs" />
- <Compile Include="Ctrlib\UnitControls\FOUPFrontView.xaml.cs">
- <DependentUpon>FOUPFrontView.xaml</DependentUpon>
- </Compile>
- <Compile Include="Ctrlib\UnitControls\FOUPTopView2.xaml.cs">
- <DependentUpon>FOUPTopView2.xaml</DependentUpon>
- </Compile>
- <Compile Include="Ctrlib\UnitControls\InputDialogBox.xaml.cs">
- <DependentUpon>InputDialogBox.xaml</DependentUpon>
- </Compile>
- <Compile Include="Ctrlib\UnitControls\AITRfSettingDialogView.xaml.cs">
- <DependentUpon>AITRfSettingDialogView.xaml</DependentUpon>
- </Compile>
- <Compile Include="Ctrlib\UnitControls\MfcSettingDialogView.xaml.cs">
- <DependentUpon>MfcSettingDialogView.xaml</DependentUpon>
- </Compile>
- <Compile Include="Ctrlib\UnitControls\AITRfSettingDialogViewModel.cs" />
- <Compile Include="Ctrlib\UnitControls\MfcSettingDialogViewModel.cs" />
- <Compile Include="Ctrlib\UnitControls\MfcControl.xaml.cs">
- <DependentUpon>MfcControl.xaml</DependentUpon>
- </Compile>
- <Compile Include="Ctrlib\Window\CustomWnd.cs" />
- <Compile Include="IndustrialControl\Converters\Double2StringConverter.cs" />
- <Compile Include="IndustrialControl\Converters\MultiplesValueConverter.cs" />
- <Compile Include="IndustrialControl\Converters\VisibilityConverter.cs" />
- <Compile Include="IndustrialControl\Line\GasSingularLine.xaml.cs">
- <DependentUpon>GasSingularLine.xaml</DependentUpon>
- </Compile>
- <Compile Include="IndustrialControl\Pipe\ELK\PipeLine.xaml.cs">
- <DependentUpon>PipeLine.xaml</DependentUpon>
- </Compile>
- <Compile Include="IndustrialControl\Pipe\ELK\PipeLineKnot.xaml.cs">
- <DependentUpon>PipeLineKnot.xaml</DependentUpon>
- </Compile>
- <Compile Include="IndustrialControl\Pipe\PipeLine.xaml.cs">
- <DependentUpon>PipeLine.xaml</DependentUpon>
- </Compile>
- <Compile Include="IndustrialControl\Pipe\PipeLineKnot.xaml.cs">
- <DependentUpon>PipeLineKnot.xaml</DependentUpon>
- </Compile>
- <Compile Include="IndustrialControl\Pipe\PipeLineThree.xaml.cs">
- <DependentUpon>PipeLineThree.xaml</DependentUpon>
- </Compile>
- <Compile Include="Properties\Annotations.cs" />
- <Compile Include="Properties\AssemblyInfo.cs" />
- <Compile Include="Caliburn.Micro\TypeDescriptor.cs" />
- <Compile Include="Caliburn.Micro\View.cs" />
- <Compile Include="Caliburn.Micro\ViewLocator.cs" />
- <Compile Include="Caliburn.Micro\ViewModelBinder.cs" />
- <Compile Include="Caliburn.Micro\ViewModelLocator.cs" />
- <Compile Include="Caliburn.Micro\XamlPlatformProvider.cs" />
- <Compile Include="DataGridTransform\AssemblyAttrs.cs" />
- <Compile Include="DataGridTransform\DataGridExtern\DataGridColumnExpander.cs" />
- <Compile Include="DataGridTransform\DataGridExtern\DataGridDynamicColumn.cs" />
- <Compile Include="DataGridTransform\DataGridExtern\DataGridDynamicColumns.cs" />
- <Compile Include="DataGridTransform\DataGridExtern\DataGridExpanderProperty.cs" />
- <Compile Include="DataGridTransform\DataGridExtern\DataGridTransform.cs" />
- <Compile Include="DataGridTransform\DataGridExtern\ListBoxItemSelector.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Automation\Peers\DataGridAutomationPeer.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Automation\Peers\DataGridCellAutomationPeer.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Automation\Peers\DataGridCellItemAutomationPeer.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Automation\Peers\DataGridColumnHeaderAutomationPeer.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Automation\Peers\DataGridColumnHeadersPresenterAutomationPeer.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Automation\Peers\DataGridDetailsPresenterAutomationPeer.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Automation\Peers\DataGridItemAutomationPeer.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Automation\Peers\DataGridRowAutomationPeer.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Automation\Peers\DataGridRowHeaderAutomationPeer.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Automation\Peers\DataGridRowsPresenterAutomationPeer.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\BooleanToSelectiveScrollingOrientationConverter.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\ClipboardHelper.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\ColumnHeaderCollection.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\ComboBoxBindingTarget.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\ContainerTracking.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGrid.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridAutoGeneratingColumnEventArgs.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridBeginningEditEventArgs.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridBoundColumn.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridCell.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridCellClipboardEventArgs.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridCellEditEndingEventArgs.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridCellInfo.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridCellsPanel.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridCheckBoxColumn.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridClipboardCellContent.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridClipboardCopyMode.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridColumn.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridColumnCollection.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridColumnDropSeparator.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridColumnEventArgs.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridColumnFloatingHeader.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridColumnReorderingEventArgs.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridComboBoxColumn.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridEditAction.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridEditingUnit.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridGridLinesVisibility.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridHeaderBorder.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridHeadersVisibility.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridHeadersVisibilityToVisibilityConverter.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridHelper.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridHyperlinkColumn.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridItemAttachedStorage.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridLength.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridLengthConverter.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridLengthUnitType.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridPreparingCellForEditEventArgs.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridRow.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridRowClipboardEventArgs.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridRowDetailsEventArgs.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridRowDetailsVisibilityMode.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridRowEditEndingEventArgs.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridRowEventArgs.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridSelectionMode.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridSelectionUnit.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridSortingEventArgs.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridSortingEventHandler.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridTemplateColumn.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DataGridTextColumn.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\DoubleUtil.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\InitializingNewItemEventArgs.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\InitializingNewItemEventHandler.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\IProvideDataGridColumn.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\MultipleCopiesCollection.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\NotificationTarget.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\Primitives\DataGridCellsPresenter.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\Primitives\DataGridColumnHeader.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\Primitives\DataGridColumnHeadersPresenter.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\Primitives\DataGridDetailsPresenter.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\Primitives\DataGridRowHeader.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\Primitives\DataGridRowsPresenter.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\Primitives\SelectiveScrollingGrid.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\RealizedColumnsBlock.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\SelectedCellsChangedEventArgs.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\SelectedCellsChangedEventHandler.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\SelectedCellsCollection.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\SelectiveScrollingOrientation.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\VirtualizedCellInfoCollection.cs" />
- <Compile Include="DataGridTransform\DataGrid\Microsoft\Windows\Controls\WeakHashtable.cs" />
- <Compile Include="DataGridTransform\ExtendedGrid\Base\CopyDataGrid.cs" />
- <Compile Include="DataGridTransform\ExtendedGrid\Base\CustomDataGrid.cs" />
- <Compile Include="DataGridTransform\ExtendedGrid\Classes\AutoFilterHelper.cs" />
- <Compile Include="DataGridTransform\ExtendedGrid\Classes\ClipboardHelper.cs" />
- <Compile Include="DataGridTransform\ExtendedGrid\Classes\ColumnInformation.cs" />
- <Compile Include="DataGridTransform\ExtendedGrid\Classes\CustomDataGridRowsPresenter.cs" />
- <Compile Include="DataGridTransform\ExtendedGrid\Classes\DataGridBehavior.cs" />
- <Compile Include="DataGridTransform\ExtendedGrid\Classes\DoubleUtil.cs" />
- <Compile Include="DataGridTransform\ExtendedGrid\Classes\EportToExcelService.cs" />
- <Compile Include="DataGridTransform\ExtendedGrid\Classes\FindControls.cs" />
- <Compile Include="DataGridTransform\ExtendedGrid\Classes\GroupByEventArgs.cs" />
- <Compile Include="DataGridTransform\ExtendedGrid\Classes\GroupData.cs" />
- <Compile Include="DataGridTransform\ExtendedGrid\Classes\Helper.cs" />
- <Compile Include="DataGridTransform\ExtendedGrid\Classes\Helpers.cs" />
- <Compile Include="DataGridTransform\ExtendedGrid\Classes\RowSummariesHelper.cs" />
- <Compile Include="DataGridTransform\ExtendedGrid\Classes\ScrollingPreviewData.cs" />
- <Compile Include="DataGridTransform\ExtendedGrid\Classes\ScrollingPreviewService.cs" />
- <Compile Include="DataGridTransform\ExtendedGrid\Classes\SummaryColumnSettings.cs" />
- <Compile Include="DataGridTransform\ExtendedGrid\Classes\SummaryOperands.cs" />
- <Compile Include="DataGridTransform\ExtendedGrid\Converter\FrozenRowSplitterMarginConverter.cs" />
- <Compile Include="DataGridTransform\ExtendedGrid\Converter\GroupByButtonVisibilityConverter.cs" />
- <Compile Include="DataGridTransform\ExtendedGrid\Converter\GroupByPathConverter.cs" />
- <Compile Include="DataGridTransform\ExtendedGrid\Converter\RowSummariesClearButtonIsEnabledConverter.cs" />
- <Compile Include="DataGridTransform\ExtendedGrid\Converter\RowSummariesValueConverter.cs" />
- <Compile Include="DataGridTransform\ExtendedGrid\Converter\RowSummaryVisibiltyConverter.cs" />
- <Compile Include="DataGridTransform\ExtendedGrid\ExtendedColumn\ExtendedDataGridCheckBoxColumn.cs" />
- <Compile Include="DataGridTransform\ExtendedGrid\ExtendedColumn\ExtendedDataGridColumn.cs" />
- <Compile Include="DataGridTransform\ExtendedGrid\ExtendedColumn\ExtendedDataGridTextColumn.cs" />
- <Compile Include="DataGridTransform\ExtendedGrid\ExtendedGridControl\ExtendedDataGrid.cs" />
- <Compile Include="DataGridTransform\ExtendedGrid\Interface\IExtendedColumn.cs" />
- <Compile Include="DataGridTransform\ExtendedGrid\Styles\DataGridGeneric.cs" />
- <Compile Include="DataGridTransform\ExtendedGrid\UserControls\ColumnChooserControl.xaml.cs">
- <DependentUpon>ColumnChooserControl.xaml</DependentUpon>
- </Compile>
- <Compile Include="DataGridTransform\GlobalSuppressions.cs" />
- <Compile Include="Properties\Resources.Designer.cs">
- <AutoGen>True</AutoGen>
- <DesignTime>True</DesignTime>
- <DependentUpon>Resources.resx</DependentUpon>
- </Compile>
- <Compile Include="Properties\Settings.Designer.cs">
- <AutoGen>True</AutoGen>
- <DependentUpon>Settings.settings</DependentUpon>
- <DesignTimeSharedInput>True</DesignTimeSharedInput>
- </Compile>
- <Compile Include="DataGridTransform\Resources\SR.cs" />
- <Compile Include="DataGridTransform\Resources\SRID.cs" />
- <Compile Include="RecipeEditorLib\DGExtension\CustomColumn\TuneColumn.cs" />
- <Compile Include="RecipeEditorLib\DGExtension\CustomColumn\PopSettingColumn.cs" />
- <Compile Include="RecipeEditorLib\DGExtension\CustomColumn\VatColumn.cs" />
- <Compile Include="RecipeEditorLib\DGExtension\CustomColumn\CheckBoxColumn.cs" />
- <Compile Include="RecipeEditorLib\DGExtension\CustomColumn\EditorDataGridTemplateColumnBase.cs" />
- <Compile Include="RecipeEditorLib\DGExtension\CustomColumn\LoopComboxColumn.cs" />
- <Compile Include="RecipeEditorLib\DGExtension\CustomColumn\ComboxColumn.cs" />
- <Compile Include="RecipeEditorLib\DGExtension\CustomColumn\DoubleColumn.cs" />
- <Compile Include="RecipeEditorLib\DGExtension\CustomColumn\ExpanderColumn.cs" />
- <Compile Include="RecipeEditorLib\DGExtension\CustomColumn\IntColumn.cs" />
- <Compile Include="RecipeEditorLib\DGExtension\CustomColumn\MultipleSelectColumn.cs" />
- <Compile Include="RecipeEditorLib\DGExtension\CustomColumn\NumColumn.cs" />
- <Compile Include="RecipeEditorLib\DGExtension\CustomColumn\PositionColumn.cs" />
- <Compile Include="RecipeEditorLib\DGExtension\CustomColumn\RecipeSelectColumn.cs" />
- <Compile Include="RecipeEditorLib\DGExtension\CustomColumn\StepColumn.cs" />
- <Compile Include="RecipeEditorLib\DGExtension\CustomColumn\TextBlockColumn.cs" />
- <Compile Include="RecipeEditorLib\DGExtension\CustomColumn\TextBoxColumn.cs" />
- <Compile Include="RecipeEditorLib\DGExtension\XDataGrid.cs" />
- <Compile Include="RecipeEditorLib\RecipeModel\Params\BoolParam.cs" />
- <Compile Include="RecipeEditorLib\RecipeModel\Params\LoopComboxParam.cs" />
- <Compile Include="RecipeEditorLib\RecipeModel\Params\ComboxParam.cs" />
- <Compile Include="RecipeEditorLib\RecipeModel\Params\DoubleParam.cs" />
- <Compile Include="RecipeEditorLib\RecipeModel\Params\ExpanderParam.cs" />
- <Compile Include="RecipeEditorLib\RecipeModel\Params\IntParam.cs" />
- <Compile Include="RecipeEditorLib\RecipeModel\Params\MultipleSelectParam.cs" />
- <Compile Include="RecipeEditorLib\RecipeModel\Params\NumParam.cs" />
- <Compile Include="RecipeEditorLib\RecipeModel\Params\PopSettingParam.cs" />
- <Compile Include="RecipeEditorLib\RecipeModel\Params\Param.cs" />
- <Compile Include="RecipeEditorLib\RecipeModel\Params\PathFileParam.cs" />
- <Compile Include="RecipeEditorLib\RecipeModel\Params\PositionParam.cs" />
- <Compile Include="RecipeEditorLib\RecipeModel\Params\StepParam.cs" />
- <Compile Include="RecipeEditorLib\RecipeModel\Params\StringParam.cs" />
- <Compile Include="CenterViews\Editors\Recipe\RecipeFormatBuilder.cs" />
- <Compile Include="CenterViews\Editors\Recipe\RecipeData.cs" />
- <Compile Include="CenterViews\Editors\Recipe\RecipeEditorView.xaml.cs">
- <DependentUpon>RecipeEditorView.xaml</DependentUpon>
- </Compile>
- <Compile Include="CenterViews\Editors\Recipe\RecipeEditorViewModel.cs" />
- <Compile Include="CenterViews\Editors\Recipe\RecipeProvider.cs" />
- <Compile Include="Themes\CenterBorderGapMaskConverter.cs" />
- <Compile Include="Themes\lightgreen\TextBoxEx.cs" />
- <Compile Include="Themes\lightgreen\TextBoxEx2.cs" />
- <Compile Include="Themes\lightgreen\TextBoxEx3.cs" />
- <Compile Include="Themes\OceanBlue\ButtonEx.cs" />
- <Compile Include="Themes\OceanBlue\TextBoxEx.cs" />
- <Compile Include="Themes\OceanBlue\TextBoxEx3.cs" />
- </ItemGroup>
- <ItemGroup>
- <None Include="app.config" />
- <None Include="Caliburn.Micro\Caliburn.snk" />
- <Fakes Include="Fakes\MECF.Framework.UI.Core.fakes" />
- <None Include="Properties\Settings.settings">
- <Generator>SettingsSingleFileGenerator</Generator>
- <LastGenOutput>Settings.Designer.cs</LastGenOutput>
- </None>
- </ItemGroup>
- <ItemGroup>
- <Content Include="DataGridTransform\DataGrid.Icon.bmp" />
- <Content Include="DataGridTransform\ExtendedGrid\Images\add32.png" />
- <Content Include="DataGridTransform\ExtendedGrid\Images\addAll.png" />
- <Content Include="DataGridTransform\ExtendedGrid\Images\Browse.png" />
- <Content Include="DataGridTransform\ExtendedGrid\Images\btn_donateCC_LG.gif" />
- <Content Include="DataGridTransform\ExtendedGrid\Images\button_delete_blue.png" />
- <Content Include="DataGridTransform\ExtendedGrid\Images\clear32.png" />
- <Content Include="DataGridTransform\ExtendedGrid\Images\close.png" />
- <Content Include="DataGridTransform\ExtendedGrid\Images\codeplex.png" />
- <Content Include="DataGridTransform\ExtendedGrid\Images\columnChooser.ico" />
- <Content Include="DataGridTransform\ExtendedGrid\Images\Converter-32.png" />
- <Content Include="DataGridTransform\ExtendedGrid\Images\delete32.png" />
- <Content Include="DataGridTransform\ExtendedGrid\Images\greek_letter_sigma.gif" />
- <Content Include="DataGridTransform\ExtendedGrid\Images\greek_letter_sigma_white.gif" />
- <Content Include="DataGridTransform\ExtendedGrid\Images\info.png" />
- <Content Include="DataGridTransform\ExtendedGrid\Images\Merge-48.png" />
- <Content Include="DataGridTransform\ExtendedGrid\Images\ok.jpg" />
- <Content Include="DataGridTransform\ExtendedGrid\Images\OK.png" />
- <Content Include="DataGridTransform\ExtendedGrid\Images\pen.png" />
- <Content Include="DataGridTransform\ExtendedGrid\Images\pen_white_write.png" />
- <Content Include="DataGridTransform\ExtendedGrid\Images\pen_write.png" />
- <Content Include="DataGridTransform\ExtendedGrid\Images\plus.png" />
- <Content Include="DataGridTransform\ExtendedGrid\Images\save.png" />
- <Content Include="DataGridTransform\ExtendedGrid\Images\search.jpg" />
- <Content Include="DataGridTransform\ExtendedGrid\Images\sigma.svg.png" />
- <Content Include="DataGridTransform\ExtendedGrid\Images\snippet.ico" />
- <Content Include="DataGridTransform\ExtendedGrid\Images\Splash-Utopia.png" />
- <Content Include="DataGridTransform\ExtendedGrid\Images\Splash-Utopia1.gif" />
- <Content Include="DataGridTransform\ExtendedGrid\Images\Splash-Utopia1.png" />
- <Content Include="DataGridTransform\ExtendedGrid\Images\sweep_broom_brush_clear.png" />
- <Content Include="DataGridTransform\ExtendedGrid\Images\visualstudio.ico" />
- <Content Include="DataGridTransform\ExtendedGrid\Images\vsi.ico" />
- <Resource Include="Resources\Images\Folder_Close.png" />
- <Resource Include="Resources\Images\Folder_Open.png" />
- <Resource Include="Resources\Images\Folder_Unable.png" />
- <Resource Include="Resources\Images\foupTopView.png" />
- <Resource Include="Resources\Images\units\chillerleft.png" />
- <Resource Include="Resources\Images\units\rfback.png" />
- <Resource Include="Resources\Images\units\rfOff.png" />
- <Resource Include="Resources\Images\units\rfOn.png" />
- <Content Include="Resources\Images\foupTopView3.png" />
- <Resource Include="Resources\Images\units\chiller_right_error.png" />
- <Resource Include="Resources\Images\units\chiller_right_off.png" />
- <Resource Include="Resources\Images\units\chiller_right_on.png" />
- <Resource Include="Resources\Images\units\carrier.png" />
- <Resource Include="Resources\Images\units\CassetteTopViewNoWafer.png" />
- <Resource Include="Resources\Images\units\CassetteTopviewWithWafer.png" />
- <Resource Include="Resources\Images\Temp\FlowAlarm.png" />
- <Resource Include="Resources\Images\Temp\LayoutRecipe.png" />
- <Resource Include="Resources\Images\Temp\pic1.png" />
- <Resource Include="Resources\Images\Temp\pic2.png" />
- <Resource Include="Resources\Images\Temp\PressureAlarm.png" />
- <Resource Include="Resources\Images\Temp\PressureStabilize.png" />
- <Resource Include="Resources\Images\Temp\TempAlarm.png" />
- <Resource Include="Resources\Images\Temp\TempStabilize.png" />
- <Content Include="Themes\DeepBlueBackUp\Folder_Close.png" />
- <Content Include="Themes\DeepBlueBackUp\Folder_Open.png" />
- <Content Include="Themes\DeepBlueBackUp\Folder_Unable.png" />
- <Content Include="Themes\LightBlue\Folder_Close.png" />
- <Content Include="Themes\LightBlue\Folder_Open.png" />
- <Content Include="Themes\LightBlue\Folder_Unable.png" />
- <EmbeddedResource Include="DataGridTransform\Resources\ExceptionStringTable.txt" />
- </ItemGroup>
- <ItemGroup>
- <Page Include="CenterViews\Alarms\ModuleAlarm\ModuleAlarmView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\Alarms\Alarm\AlarmView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\Configs\SignalTowerConfig\RadioCheckBox.xaml">
- <SubType>Designer</SubType>
- <Generator>MSBuild:Compile</Generator>
- </Page>
- <Page Include="CenterViews\Configs\SignalTowerConfig\SignalTowerConfigView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\Configs\DataConfig\DataConfigView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\Configs\SystemConfig\ShutDonwControlView.xaml">
- <SubType>Designer</SubType>
- <Generator>MSBuild:Compile</Generator>
- </Page>
- <Page Include="CenterViews\Controls\PaginationList.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\DataLogs\DataHistory\SelectUserDefineView.xaml">
- <SubType>Designer</SubType>
- <Generator>MSBuild:Compile</Generator>
- </Page>
- <Page Include="CenterViews\DataLogs\Event\SelectDateView.xaml">
- <SubType>Designer</SubType>
- <Generator>MSBuild:Compile</Generator>
- </Page>
- <Page Include="CenterViews\DataLogs\Event\SelectFilterConditionView.xaml">
- <SubType>Designer</SubType>
- <Generator>MSBuild:Compile</Generator>
- </Page>
- <Page Include="CenterViews\DataLogs\ProcessHistory\BatchDetailView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\DataLogs\ProcessHistory\CassetteDetailView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\DataLogs\ProcessHistory\ProcessDetailV2View.xaml">
- <SubType>Designer</SubType>
- <Generator>MSBuild:Compile</Generator>
- </Page>
- <Page Include="CenterViews\DataLogs\ProcessHistory\ProcessDetailView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\DataLogs\ProcessHistory\ProcessExportAllView.xaml">
- <SubType>Designer</SubType>
- <Generator>MSBuild:Compile</Generator>
- </Page>
- <Page Include="CenterViews\DataLogs\ProcessHistory\ProcessHistoryTwoView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\DataLogs\WaferHistory\WaferHistory2View.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\DataLogs\WaferHistory\WaferHistoryDBView.xaml">
- <SubType>Designer</SubType>
- <Generator>MSBuild:Compile</Generator>
- </Page>
- <Page Include="CenterViews\Dialogs\FullKeyboard.xaml">
- <SubType>Designer</SubType>
- <Generator>MSBuild:Compile</Generator>
- </Page>
- <Page Include="CenterViews\Dialogs\InputDialogView.xaml">
- <SubType>Designer</SubType>
- <Generator>MSBuild:Compile</Generator>
- </Page>
- <Page Include="CenterViews\Dialogs\ItemsSelectDialogView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\Dialogs\ListDialogProView.xaml">
- <SubType>Designer</SubType>
- <Generator>MSBuild:Compile</Generator>
- </Page>
- <Page Include="CenterViews\Dialogs\ListDialogView.xaml">
- <SubType>Designer</SubType>
- <Generator>MSBuild:Compile</Generator>
- </Page>
- <Page Include="CenterViews\Dialogs\NumberDigitKeyboard.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\Dialogs\NumberKeyboard.xaml">
- <SubType>Designer</SubType>
- <Generator>MSBuild:Compile</Generator>
- </Page>
- <Page Include="CenterViews\Dialogs\NumberKeyborardNoMinus.xaml">
- <SubType>Designer</SubType>
- <Generator>MSBuild:Compile</Generator>
- </Page>
- <Page Include="CenterViews\Dialogs\PresetGroupSaveDialog.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\Dialogs\PurgeDialogView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\Dialogs\TimeKeyboard.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\Editors\Parameter\ParameterSelectDialogView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\Editors\RecipeConfig\RecipeConfigView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\Editors\Recipe\PopSettingDialogView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\Editors\Recipe\RecipeSelectDialogView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\Editors\Recipe\RecipeStepTimeView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\Editors\Recipe\SaveToDialogView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\Maitenances\CalibrationTable\CalibrationTableView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\Maitenances\Connections\ConnectionView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\Maitenances\FFU\FFUView.xaml">
- <SubType>Designer</SubType>
- <Generator>MSBuild:Compile</Generator>
- </Page>
- <Page Include="CenterViews\Maitenances\IO3\IO3View.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\Maitenances\MFCVerification\MFCVerificationView.xaml">
- <SubType>Designer</SubType>
- <Generator>MSBuild:Compile</Generator>
- </Page>
- <Page Include="CenterViews\Parameter\AlarmtableParameterView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\Parameter\InterlockActionAutoView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\Parameter\InterlockAPCView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\Parameter\InterlockCheckView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\Parameter\InterlockConditionView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\Parameter\InterlockFlagView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\Parameter\InterlockMFCView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\Parameter\InterlockMFMView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\Parameter\InterlockSelectItemView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\Parameter\InterlockSNSView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\Parameter\InterlockTEMPView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\Parameter\InterlockView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\Parameter\N2PurgeEditView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\Parameter\MainParameterEditView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="ClientBase\UserControls\BusyIndicator.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="ClientBase\UserControls\DataViewChart.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="ClientBase\UserControls\DataViewDataGrid.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="ClientBase\UserControls\ParameterNodeTreeViewControl.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="ClientBase\WaferTransferDialogView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\Configs\Accounts\AccountView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\Configs\Roles\RoleView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\Configs\SystemConfig\SystemConfigView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\Controls\E84Info.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\Controls\LED.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\Controls\ScDoubleRow.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\Controls\ScStringRow.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\DataLogs\DataHistory\DataView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\DataLogs\Event\EventView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\DataLogs\ProcessHistory\ProcessHistoryView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\DataLogs\ProcessHistory\SelectDataView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\DataLogs\Statistics\StatisticsView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\DataLogs\WaferHistory\WaferHistoryView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\Editors\InputFileNameDialogView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\Editors\RecipeSequenceSelectDialogView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\Editors\Sequence\SequenceView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\LogOnOff\LogoffView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\LogOnOff\ShutdownView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\Maitenances\IO1\IO1View.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\Maitenances\IO2\IO2View.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\Operations\E84\E84View.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\Operations\FA\FAView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\Operations\LotHistory\LotHistoryView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\Operations\MonitorJob\MonitorJobView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\Operations\RealTime\RealTimeView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\Operations\WaferAssociation\SequenceDialogView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\Operations\WaferAssociation\WaferAssociationUnit.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\Operations\WaferAssociation\WaferAssociationView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="ClientBase\Dialog\MessageDialogView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="CenterViews\Editors\Recipe\RecipeEditorView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Ctrlib\UnitControls\AITMicrowaveSettingDialogView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Ctrlib\UnitControls\CassetteTopView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Ctrlib\UnitControls\FOUPFrontViewPro.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Ctrlib\UnitControls\RFSimpleControl.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Ctrlib\UnitControls\ChillerControl.xaml">
- <SubType>Designer</SubType>
- <Generator>MSBuild:Compile</Generator>
- </Page>
- <Page Include="Ctrlib\UnitControls\FoupTopView3.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Ctrlib\UnitControls\MultipleSelectionsCombox.xaml">
- <SubType>Designer</SubType>
- <Generator>MSBuild:Compile</Generator>
- </Page>
- <Page Include="Ctrlib\UnitControls\AITHeaterControl.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Ctrlib\UnitControls\AITPressureMeter.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Ctrlib\UnitControls\AITRf.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Ctrlib\UnitControls\VGPartText.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Ctrlib\UnitControls\VGPart.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Ctrlib\UnitControls\TVSettingDialogView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Ctrlib\UnitControls\TVControl.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Ctrlib\UnitControls\AITThrottleValveInputDialogBox.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Ctrlib\UnitControls\Door.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Ctrlib\UnitControls\FoupTopView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Ctrlib\UnitControls\FOUPFrontView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Ctrlib\UnitControls\FOUPTopView2.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Ctrlib\UnitControls\InputDialogBox.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Ctrlib\UnitControls\AITRfSettingDialogView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Ctrlib\UnitControls\MfcSettingDialogView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Ctrlib\UnitControls\MfcControl.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="IndustrialControl\Line\GasSingularLine.xaml">
- <SubType>Designer</SubType>
- <Generator>MSBuild:Compile</Generator>
- </Page>
- <Page Include="IndustrialControl\Pipe\ELK\PipeLine.xaml">
- <SubType>Designer</SubType>
- <Generator>MSBuild:Compile</Generator>
- </Page>
- <Page Include="IndustrialControl\Pipe\ELK\PipeLineKnot.xaml">
- <SubType>Designer</SubType>
- <Generator>MSBuild:Compile</Generator>
- </Page>
- <Page Include="IndustrialControl\Pipe\PipeLine.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="IndustrialControl\Pipe\PipeLineKnot.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="IndustrialControl\Pipe\PipeLineThree.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\Cyan\Button.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\Cyan\ComboBox.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\Cyan\DataGrid.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\Cyan\Expander.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\Cyan\GroupBox.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\Cyan\ListBox.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\Cyan\Listview.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\Cyan\MenuItem.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\Cyan\Scrollbar.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\Cyan\Skin.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\Cyan\SkinType.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\Cyan\Tab.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\Cyan\TextBox.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\Cyan\TreeView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\DeepBlueBackUp\Button.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\DeepBlueBackUp\ComboBox.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\DeepBlueBackUp\DataGrid.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\DeepBlueBackUp\Expander.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\DeepBlueBackUp\GroupBox.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\DeepBlueBackUp\ListBox.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\DeepBlueBackUp\Listview.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\DeepBlueBackUp\MenuItem.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\DeepBlueBackUp\Scrollbar.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\DeepBlueBackUp\Skin.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\DeepBlueBackUp\SkinType.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\DeepBlueBackUp\Tab.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\DeepBlueBackUp\TextBox.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\DeepBlueBackUp\TreeView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\DeepBlue\Expander.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\DeepBlue\SkinType.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\Generic.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="DataGridTransform\DataGridExtern\Themes\controls.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="DataGridTransform\DataGridExtern\Themes\generic.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="DataGridTransform\DataGrid\Themes\Aero.NormalColor.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="DataGridTransform\DataGrid\Themes\Classic.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="DataGridTransform\DataGrid\Themes\Generic.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="DataGridTransform\DataGrid\Themes\Luna.HomeStead.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="DataGridTransform\DataGrid\Themes\Luna.Metallic.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="DataGridTransform\DataGrid\Themes\Luna.NormalColor.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="DataGridTransform\DataGrid\Themes\Royale.NormalColor.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="DataGridTransform\ExtendedGrid\DataGridThemes\ControlsTheme\ControlLiveExplorer.xaml">
- <Generator>XamlIntelliSenseFileGenerator</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="DataGridTransform\ExtendedGrid\DataGridThemes\ControlsTheme\ControlMedia.xaml">
- <Generator>XamlIntelliSenseFileGenerator</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="DataGridTransform\ExtendedGrid\DataGridThemes\ControlsTheme\ControlOffice2007Black.xaml">
- <Generator>XamlIntelliSenseFileGenerator</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="DataGridTransform\ExtendedGrid\DataGridThemes\ControlsTheme\ControlOffice2007Blue.xaml">
- <Generator>XamlIntelliSenseFileGenerator</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="DataGridTransform\ExtendedGrid\DataGridThemes\ControlsTheme\ControlOffice2007Silver.xaml">
- <Generator>XamlIntelliSenseFileGenerator</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="DataGridTransform\ExtendedGrid\DataGridThemes\ControlsTheme\ControlWindows7.xaml">
- <Generator>XamlIntelliSenseFileGenerator</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="DataGridTransform\ExtendedGrid\DataGridThemes\Default.xaml">
- <Generator>XamlIntelliSenseFileGenerator</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="DataGridTransform\ExtendedGrid\DataGridThemes\ElectronicMedia.xaml">
- <Generator>XamlIntelliSenseFileGenerator</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="DataGridTransform\ExtendedGrid\DataGridThemes\Office2007Black.xaml">
- <Generator>XamlIntelliSenseFileGenerator</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="DataGridTransform\ExtendedGrid\DataGridThemes\Office2007Blue.xaml">
- <Generator>XamlIntelliSenseFileGenerator</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="DataGridTransform\ExtendedGrid\DataGridThemes\Office2007Silver.xaml">
- <Generator>XamlIntelliSenseFileGenerator</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="DataGridTransform\ExtendedGrid\DataGridThemes\OrangeDarkExplorer.xaml">
- <Generator>XamlIntelliSenseFileGenerator</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="DataGridTransform\ExtendedGrid\DataGridThemes\System.xaml">
- <Generator>XamlIntelliSenseFileGenerator</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="DataGridTransform\ExtendedGrid\DataGridThemes\Windows7.xaml">
- <Generator>XamlIntelliSenseFileGenerator</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="DataGridTransform\ExtendedGrid\Styles\Brushes.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="DataGridTransform\ExtendedGrid\Styles\DataGrid.Generic.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="DataGridTransform\ExtendedGrid\UserControls\ColumnChooserControl.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\Aero.NormalColor.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\Classic.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="DataGridTransform\Themes\Generic.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\GrayBlue\Button.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\GrayBlue\ComboBox.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\GrayBlue\DataGrid.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\GrayBlue\Expander.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\GrayBlue\GroupBox.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\GrayBlue\ListBox.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\GrayBlue\Listview.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\GrayBlue\MenuItem.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\GrayBlue\Scrollbar.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\GrayBlue\Skin.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\GrayBlue\SkinType.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\GrayBlue\Tab.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\GrayBlue\TextBox.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\GrayBlue\TreeView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\LightBlue\Button.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\LightBlue\ComboBox.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\LightBlue\DataGrid.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\LightBlue\Expander.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\LightBlue\GroupBox.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\LightBlue\ListBox.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\LightBlue\Listview.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\LightBlue\MenuItem.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\LightBlue\Scrollbar.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\LightBlue\Skin.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\LightBlue\SkinType.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\LightBlue\Tab.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\LightBlue\TextBox.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\LightBlue\TreeView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\lightgreen\Button.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\lightgreen\ComboBox.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\lightgreen\DataGrid.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\lightgreen\Expander.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\lightgreen\GroupBox.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\lightgreen\Label.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\lightgreen\ListBox.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\lightgreen\Listview.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\lightgreen\MenuItem.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\lightgreen\RadioButton.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\lightgreen\Scrollbar.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\lightgreen\Skin.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\lightgreen\SkinType.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\lightgreen\Tab.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\lightgreen\TextBlock.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\lightgreen\TextBox.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\lightgreen\TextBoxEx2.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\lightgreen\TextBoxEx3.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\lightgreen\TreeView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\Luna.HomeStead.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\Luna.Metallic.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\Luna.NormalColor.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\OceanBlue\Button.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\OceanBlue\ComboBox.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\OceanBlue\DataGrid.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\OceanBlue\Expander.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\OceanBlue\GroupBox.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\OceanBlue\ListBox.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\OceanBlue\Listview.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\OceanBlue\MenuItem.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\OceanBlue\RadioButton.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\OceanBlue\Scrollbar.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\OceanBlue\Skin.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\OceanBlue\SkinType.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\OceanBlue\Label.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\OceanBlue\Tab.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\OceanBlue\TextBlock.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\OceanBlue\TextBox.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\OceanBlue\TextBoxEx3.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\OceanBlue\TreeView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\Royale.NormalColor.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\DeepBlue\Button.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\DeepBlue\ComboBox.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\DeepBlue\DataGrid.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\DeepBlue\GroupBox.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\DeepBlue\ListBox.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\DeepBlue\Listview.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\DeepBlue\MenuItem.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\DeepBlue\Scrollbar.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\DeepBlue\Skin.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\DeepBlue\Tab.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\DeepBlue\TextBox.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\DeepBlue\TreeView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\SeaBlue\Button.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\SeaBlue\ComboBox.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\SeaBlue\DataGrid.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\SeaBlue\Expander.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\SeaBlue\GroupBox.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\SeaBlue\ListBox.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\SeaBlue\Listview.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\SeaBlue\MenuItem.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\SeaBlue\Scrollbar.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\SeaBlue\Skin.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\SeaBlue\SkinType.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\SeaBlue\Tab.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\SeaBlue\TextBox.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\SeaBlue\TreeView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\SkyBlue\Button.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\SkyBlue\ComboBox.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\SkyBlue\DataGrid.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\SkyBlue\Expander.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\SkyBlue\GroupBox.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\SkyBlue\ListBox.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\SkyBlue\Listview.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\SkyBlue\MenuItem.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\SkyBlue\Scrollbar.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\SkyBlue\Skin.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\SkyBlue\SkinType.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\SkyBlue\Tab.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\SkyBlue\TextBox.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\SkyBlue\TreeView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\Standard\Button.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\Standard\ComboBox.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\Standard\DataGrid.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\Standard\Expander.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\Standard\GroupBox.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\Standard\ListBox.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\Standard\Listview.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\Standard\MenuItem.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\Standard\Scrollbar.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\Standard\Skin.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\Standard\SkinType.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\Standard\Tab.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\Standard\TextBlock.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\Standard\TextBox.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\Standard\TreeView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\SubPanelBlue\Button.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\SubPanelBlue\ComboBox.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\SubPanelBlue\DataGrid.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\SubPanelBlue\Expander.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\SubPanelBlue\GroupBox.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\SubPanelBlue\Label.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\SubPanelBlue\ListBox.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\SubPanelBlue\Listview.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\SubPanelBlue\MenuItem.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\SubPanelBlue\Scrollbar.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\SubPanelBlue\Skin.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\SubPanelBlue\Tab.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\SubPanelBlue\TextBlock.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\SubPanelBlue\TextBox.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- <Page Include="Themes\SubPanelBlue\TreeView.xaml">
- <Generator>MSBuild:Compile</Generator>
- <SubType>Designer</SubType>
- </Page>
- </ItemGroup>
- <ItemGroup>
- <EmbeddedResource Include="Properties\Resources.resx">
- <Generator>ResXFileCodeGenerator</Generator>
- <LastGenOutput>Resources.Designer.cs</LastGenOutput>
- <SubType>Designer</SubType>
- </EmbeddedResource>
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\Common\Common.csproj">
- <Project>{6958FE72-CC01-4176-A86C-59B0E1CD0367}</Project>
- <Name>Common</Name>
- </ProjectReference>
- <ProjectReference Include="..\RTEquipmentLibrary\RTEquipmentLibrary.csproj">
- <Project>{A25B907A-0BF8-49B5-9B42-50EC3FC50A34}</Project>
- <Name>RTEquipmentLibrary</Name>
- </ProjectReference>
- <ProjectReference Include="..\UICore\UICore.csproj">
- <Project>{1333f7c8-3db2-4783-8a37-3840f1be0cb0}</Project>
- <Name>UICore</Name>
- </ProjectReference>
- </ItemGroup>
- <ItemGroup />
- <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
- <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
- Other similar extension points exist, see Microsoft.Common.targets.
- <Target Name="BeforeBuild">
- </Target>
- <Target Name="AfterBuild">
- </Target>
- -->
- </Project>
|