15 lines
351 B
C#
15 lines
351 B
C#
using System.Windows;
|
|
using System.Windows.Controls;
|
|
|
|
namespace WPFDark.Controls
|
|
{
|
|
public class BiaProgressPanel : Control
|
|
{
|
|
static BiaProgressPanel()
|
|
{
|
|
DefaultStyleKeyProperty.OverrideMetadata(typeof(BiaProgressPanel),
|
|
new FrameworkPropertyMetadata(typeof(BiaProgressPanel)));
|
|
}
|
|
}
|
|
}
|