| 123456789101112131415161718192021222324252627282930 |
- 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
- {
- /// <summary>
- /// MsgAlter.xaml 的交互逻辑
- /// </summary>
- 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 { ;}
- }
- }
- }
|