parent
cec8973b0c
commit
23bf1ed322
@ -0,0 +1,12 @@
|
|||||||
|
<UserControl x:Class="WpfApp1.UserControlPosition"
|
||||||
|
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:WpfApp1"
|
||||||
|
mc:Ignorable="d"
|
||||||
|
d:DesignHeight="450" d:DesignWidth="800">
|
||||||
|
<Canvas x:Name="leCanvas">
|
||||||
|
<Ellipse x:Name="Ellipse" MouseDown="Ellipse_MouseDown" Fill="Blue" Width="100" Canvas.Top="100" Canvas.Left="100" Height="100" ></Ellipse>
|
||||||
|
</Canvas>
|
||||||
|
</UserControl>
|
@ -0,0 +1,8 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<OutputType>Exe</OutputType>
|
||||||
|
<TargetFramework>net5.0</TargetFramework>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
</Project>
|
Loading…
Reference in new issue