<UserControl x:Class="SA_LTT_UI.Screen.WaferProcessPointView"
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
xmlns:local="clr-namespace:SA_LTT_UI.Screen"
|
mc:Ignorable="d"
|
d:DesignHeight="400" d:DesignWidth="400" Background="LightSteelBlue" MouseDown="UserControl_MouseDown" MouseMove="UserControl_MouseMove">
|
<Canvas Name="MainScreen">
|
<Ellipse Fill="White" Height="400" Stroke="Black" Width="400"/>
|
<Ellipse Fill="Red" Height="4" Canvas.Left="198" Canvas.Top="198" Width="4"/>
|
<Rectangle Name="RectPrimaryFlat" Fill="LightSteelBlue" Height="1" Canvas.Top="400" Width="400"/>
|
</Canvas>
|
</UserControl>
|