You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.6 KiB
XML
36 lines
1.6 KiB
XML
<UserControl x:Class="NodeEditor.Controls.Node"
|
|
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:NodeEditor.Controls"
|
|
mc:Ignorable="d"
|
|
d:DesignHeight="450" d:DesignWidth="800">
|
|
|
|
<Button Height="7" Width="7"
|
|
HorizontalAlignment="Left"
|
|
VerticalAlignment="Top">
|
|
<Button.Template>
|
|
<ControlTemplate TargetType="Button">
|
|
<Grid>
|
|
<Ellipse Stroke="Black"
|
|
StrokeThickness="0">
|
|
<Ellipse.Fill>
|
|
<RadialGradientBrush>
|
|
<GradientStop Offset="0" Color="Red"/>
|
|
<GradientStop Offset="1" Color="Red"/>
|
|
<GradientStop Offset="1" Color="DarkRed"/>
|
|
<RadialGradientBrush.Transform>
|
|
<TransformGroup>
|
|
<ScaleTransform ScaleY="0.65"/>
|
|
</TransformGroup>
|
|
</RadialGradientBrush.Transform>
|
|
</RadialGradientBrush>
|
|
</Ellipse.Fill>
|
|
</Ellipse>
|
|
</Grid>
|
|
</ControlTemplate>
|
|
</Button.Template>
|
|
</Button>
|
|
|
|
</UserControl> |