Files
ERD/ERD/Components/ellipse.xaml
2022-05-02 22:17:39 +10:00

16 lines
605 B
XML

<UserControl x:Class="ERD.Components.ellipse"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
Width="130"
MinWidth="50"
Height="130"
MinHeight="50"
Name="Hello"
Canvas.Top="10"
Canvas.Left="470"
Template="{StaticResource DesignerItemTemplate}">
<Ellipse Fill="Red"
IsHitTestVisible="False"/>
</UserControl>