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

21 lines
No EOL
531 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"
xmlns:l="using:Mesen.Localization"
mc:Ignorable="d"
x:Name="root"
x:Class="Mesen.Controls.IconButton"
VerticalContentAlignment="Center"
HorizontalContentAlignment="Center"
MinWidth="0"
Padding="1"
>
<Image
Name="IconImage"
Margin="1 1 0 0"
Width="16"
Height="16"
/>
</Button>