Mesen2/UI/Controls/ButtonWithIcon.axaml
2023-01-25 16:03:56 -05:00

15 lines
No EOL
589 B
XML

<Button
xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
x:Class="Mesen.Controls.ButtonWithIcon"
Name="root"
Padding="0"
>
<StackPanel Orientation="Horizontal">
<Image Name="IconImage" Margin="2 -1 0 0" Stretch="None" IsVisible="{CompiledBinding ShowIcon, ElementName=root}" />
<TextBlock Text="{CompiledBinding Text, ElementName=root}" Margin="4 -1 4 0" />
</StackPanel>
</Button>