WinTipCheckComplete.xaml.cs 828 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. using System.Windows;
  2. namespace Saga.PlugIn.CreateFacility
  3. {
  4. /// <summary>
  5. /// WinTipMissFamily.xaml 的交互逻辑
  6. /// </summary>
  7. public partial class WinTipCheckComplete
  8. {
  9. public WinTipCheckComplete()
  10. {
  11. InitializeComponent();
  12. this.DataContext = this;
  13. }
  14. private string m_id;
  15. private string m_Tip;
  16. public string Tip
  17. {
  18. get { return m_Tip; }
  19. set { m_Tip = value; }
  20. }
  21. #region Action
  22. private void ButtonNext_OnClick(object sender, RoutedEventArgs e)
  23. {
  24. this.DialogResult = true;
  25. }
  26. private void ButtonCopy_OnClick(object sender, RoutedEventArgs e)
  27. {
  28. Clipboard.SetDataObject(m_id);
  29. }
  30. #endregion
  31. }
  32. }