Files
ShrlAlgoToolkit/WPFDark/Controls/BiaProgressPanel.xaml.cs

15 lines
351 B
C#
Raw Normal View History

2025-07-11 09:20:23 +08:00
using System.Windows;
using System.Windows.Controls;
namespace WPFDark.Controls
{
public class BiaProgressPanel : Control
{
static BiaProgressPanel()
{
DefaultStyleKeyProperty.OverrideMetadata(typeof(BiaProgressPanel),
new FrameworkPropertyMetadata(typeof(BiaProgressPanel)));
}
}
}