using System.Windows; namespace DefaultEdit.Views { /// /// LoadingView.xaml 的交互逻辑 /// public partial class LoadingView : Window { private string str=""; public LoadingView() { InitializeComponent(); } public string Str { get => str; set { str = value; Msg.Content = value; } } } }