BOOK-IQ4TD9B9LB\DIT-930
2023-05-15 f5120e92b525474f6b4e50130797946986c28eed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<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>