Files
C4IT-F4SD-Client/FasdDesktopUi/Basics/UserControls/Badge.xaml.cs
2026-02-20 16:15:28 +01:00

24 lines
604 B
C#

using System.Windows;
using System.Windows.Controls;
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();
}
}
}