You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
676 B
C#
25 lines
676 B
C#
using System.Windows;
|
|
using System.Windows.Controls;
|
|
|
|
namespace StartServerWPF.Modules.Main.Views
|
|
{
|
|
/// <summary>
|
|
/// Loading.xaml 的交互逻辑
|
|
/// </summary>
|
|
public partial class Loading : UserControl
|
|
{
|
|
public string Message
|
|
{
|
|
get { return (string)GetValue(MessageProperty); }
|
|
set { SetValue(MessageProperty, value); }
|
|
}
|
|
public static readonly DependencyProperty MessageProperty =
|
|
DependencyProperty.Register("Message", typeof(string), typeof(Loading), new PropertyMetadata("正在处理"));
|
|
|
|
public Loading()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|