码迷,mamicode.com
首页 > Windows程序 > 详细

WPF:事件委托对于不同界面间通信的应用

时间:2018-03-06 20:26:37      阅读:286      评论:0      收藏:0      [点我收藏+]

标签:onclick   inter   his   nal   nbsp   通过   click   body   class   

界面1内设定点击事件,生成Path用事件传出
public partial class TemplateWindow : Window

    {
        internal delegate void ConfirmButtonClick(string  Path);
        /// <summary>
        /// 点击确定按钮事件
        /// </summary>
        internal event ConfirmButtonClick OnConfirmButtonClick;  
        
        private void ConfirmButton_Click(object sender, RoutedEventArgs e)
        {
                        string Path = “C://User//Path”;
                        if (null != this.OnConfirmButtonClick)
                        {
                            this.OnConfirmButtonClick(Path);
                        }                          
                        this.Close();
         }
      } 

界面二通过事件获取界面1的Path
public partial class  User : UserControl
    {
         private void ShowWindow_Click(object sender, RoutedEventArgs e)
        {
                TemplateWindow  window = new TemplateWindow ();              
                window.Show();
                window.OnConfirmButtonClick += (Path) =>
                    {
                       Console.Writeline(Path);
                    };
                             
        } 
    }

WPF:事件委托对于不同界面间通信的应用

标签:onclick   inter   his   nal   nbsp   通过   click   body   class   

原文地址:https://www.cnblogs.com/kid526940065/p/8516077.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!