Squashed 'RadialMenu/' content from commit 9ce7d4b

git-subtree-dir: RadialMenu
git-subtree-split: 9ce7d4b378d1f5765cd361ed0f3579288d528633
This commit is contained in:
maier_S
2022-03-23 10:16:36 +01:00
commit 82d1d9fa24
23 changed files with 1799 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
using System.Windows;
using System.Windows.Controls;
namespace RadialMenu.Controls
{
/// <summary>
/// Interaction logic for RadialMenuCentralItem.xaml
/// </summary>
public class RadialMenuCentralItem : Button
{
static RadialMenuCentralItem()
{
DefaultStyleKeyProperty.OverrideMetadata(typeof(RadialMenuCentralItem), new FrameworkPropertyMetadata(typeof(RadialMenuCentralItem)));
}
}
}