123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:converters="clr-namespace:Bolt.Toolkit.Wpf.Converters"
- >
- <converters:MultiParamterConverter x:Key="MultiParamterConverter" />
- <converters:WaferDropConverter x:Key="WaferDropConverter" />
- <converters:WaferVisibilityConverter x:Key="WaferVisibilityConverter" />
- <converters:BoolVisibilityConverter x:Key="BoolVisibilityConverter" />
- <LinearGradientBrush x:Key="idleWafer" StartPoint="0,0" EndPoint="1,0.5">
- <LinearGradientBrush.GradientStops>
- <GradientStop Color="LightBlue" Offset="0"/>
- <GradientStop Color="#ff2989d8" Offset="0.5"/>
- <GradientStop Color="LightBlue" Offset="1"/>
- </LinearGradientBrush.GradientStops>
- </LinearGradientBrush>
- <LinearGradientBrush x:Key="busyWafer" StartPoint="0,0" EndPoint="1,0.5">
- <LinearGradientBrush.GradientStops>
- <GradientStop Color="Cyan" Offset="0"/>
- <GradientStop Color="#FF9BDEDE" Offset="0.5"/>
- <GradientStop Color="Cyan" Offset="1"/>
- </LinearGradientBrush.GradientStops>
- </LinearGradientBrush>
- <LinearGradientBrush x:Key="waitWafer" StartPoint="0,0" EndPoint="1,0.5">
- <LinearGradientBrush.GradientStops>
- <GradientStop Color="Blue" Offset="0"/>
- <GradientStop Color="#FFA9A9F5" Offset="0.5"/>
- <GradientStop Color="Blue" Offset="1"/>
- </LinearGradientBrush.GradientStops>
- </LinearGradientBrush>
- <LinearGradientBrush x:Key="completeWafer" StartPoint="0,0" EndPoint="1,0.5">
- <LinearGradientBrush.GradientStops>
- <GradientStop Color="Green" Offset="0"/>
- <GradientStop Color="#FF2CCD2C" Offset="0.5"/>
- <GradientStop Color="Green" Offset="1"/>
- </LinearGradientBrush.GradientStops>
- </LinearGradientBrush>
- <LinearGradientBrush x:Key="errorWafer" StartPoint="0,0" EndPoint="1,0.5">
- <LinearGradientBrush.GradientStops>
- <GradientStop Color="Red" Offset="0"/>
- <GradientStop Color="#FFF9B7B7" Offset="0.5"/>
- <GradientStop Color="Red" Offset="1"/>
- </LinearGradientBrush.GradientStops>
- </LinearGradientBrush>
- <converters:WaferColorConverter x:Key="WaferColorConverter"
- IdleWafer="{StaticResource idleWafer}"
- BusyWafer="{StaticResource busyWafer}"
- WaitWafer="{StaticResource waitWafer}"
- CompleteWafer="{StaticResource completeWafer}"
- ErrorWafer="{StaticResource errorWafer}"
- />
- </ResourceDictionary>
|