25 lines
1.2 KiB
XML
25 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<UserControl
|
|
x:Class="Hyperbar.Widget.Windows.WidgetButtonView"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
|
<UserControl.Resources>
|
|
<SolidColorBrush x:Key="ButtonBackground" Color="Transparent" />
|
|
<SolidColorBrush x:Key="ButtonBorderBrush" Color="Transparent" />
|
|
<SolidColorBrush x:Key="ButtonBorderBrushPointerOver" Color="Transparent" />
|
|
<SolidColorBrush x:Key="ButtonBorderBrushPressed" Color="Transparent" />
|
|
<SolidColorBrush x:Key="ButtonBorderBrushDisabled" Color="Transparent" />
|
|
<Thickness x:Key="ButtonPadding">0</Thickness>
|
|
<x:Double x:Key="ButtonWidth">40</x:Double>
|
|
<x:Double x:Key="ButtonHeight">40</x:Double>
|
|
</UserControl.Resources>
|
|
<Button
|
|
Width="{StaticResource ButtonWidth}"
|
|
Height="{StaticResource ButtonHeight}"
|
|
Padding="{StaticResource ButtonPadding}"
|
|
Command="{Binding InvokeCommand}"
|
|
Content="{Binding Icon}"
|
|
FontFamily="{StaticResource SymbolThemeFontFamily}"
|
|
FontSize="16"
|
|
ToolTipService.ToolTip="{Binding Text}" />
|
|
</UserControl> |