16 lines
304 B
C#
16 lines
304 B
C#
|
|
using System.Windows;
|
|||
|
|
|
|||
|
|
namespace Cowain.Bake.UI.CommonView.Views
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// ProgressBarView.xaml 的交互逻辑
|
|||
|
|
/// </summary>
|
|||
|
|
public partial class ProgressBarView : Window
|
|||
|
|
{
|
|||
|
|
public ProgressBarView()
|
|||
|
|
{
|
|||
|
|
InitializeComponent();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|