28 lines
722 B
C#
28 lines
722 B
C#
using F4SD_AdaptableIcon;
|
|
using FasdDesktopUi.Basics.Helper;
|
|
using System;
|
|
using System.Windows;
|
|
using System.Windows.Controls;
|
|
using static C4IT.Logging.cLogManager;
|
|
|
|
namespace FasdDesktopUi.Basics.UserControls
|
|
{
|
|
public partial class Badge : UserControl
|
|
{
|
|
public string Text
|
|
{
|
|
get { return (string)GetValue(TextProperty); }
|
|
set { SetValue(TextProperty, value); }
|
|
}
|
|
|
|
public static readonly DependencyProperty TextProperty =
|
|
DependencyProperty.Register(nameof(Text), typeof(string), typeof(Badge), new PropertyMetadata("Beta"));
|
|
|
|
|
|
public Badge()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|