using System.Windows; namespace PipeGallery.View { /// <summary> /// PopupWindow.xaml 的交互逻辑 /// </summary> public partial class PopupWindow : Window { public PopupWindow(string content, string title = null) { InitializeComponent(); tbContent.Text = content; tbTitle.Text = title; btnOK.Click += BtnOK_Click; btnClose.Click += BtnClose_Click; } private void BtnClose_Click(object sender, RoutedEventArgs e) { this.Close(); } private void BtnOK_Click(object sender, RoutedEventArgs e) { this.DialogResult = true; this.Close(); } } }