Files
PotatoNV/PotatoNV-next/Controls/ImageButton.xaml
2020-06-26 17:25:44 +05:00

20 lines
893 B
XML

<UserControl x:Class="PotatoNV_next.Controls.ImageButton"
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:PotatoNV_next.Controls"
mc:Ignorable="d"
d:DesignHeight="450" d:DesignWidth="800">
<Button Click="Button_Click">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<Image Grid.Column="0" x:Name="imageNode" Stretch="None" />
<TextBlock Grid.Column="1" x:Name="textNode" />
</Grid>
</Button>
</UserControl>