using Muchinfo.MTPClient.Infrastructure.Windows; using Muchinfo.MTPClient.Resources; using Muchinfo.WPF.Controls.Windows; using System.Windows; using Muchinfo.MTPClient.Infrastructure.MessageBox; namespace Muchinfo.MTPClient.Account.Views { /// /// MsgAlter.xaml 的交互逻辑 /// public partial class MsgAlter : TradeAccountWindow { public MsgAlter(string Url) { InitializeComponent(); this.Tb_Url.Text = Url; } private void Button_Click(object sender, RoutedEventArgs e) { try { Clipboard.SetDataObject(this.Tb_Url.Text); MessageBoxHelper.ShowInfo(Muchinfo.MTPClient.Resources.Client_Resource.Bank_CopyToPasteBoard, Client_Resource.Bank_Tips); } catch { ;} } } }