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

Posted 程序猿kid

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WPF:事件委托对于不同界面间通信的应用相关的知识,希望对你有一定的参考价值。

界面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:事件委托对于不同界面间通信的应用的主要内容,如果未能解决你的问题,请参考以下文章

WPF 委托 事件 B窗体调用A窗体方法

事件与委托

C# 事件(Event)

对于原生js中的事件委托解析

C#里事件和委托有啥区别啊??

深入理解-事件委托