【22】C# 委托

作者: 业余玩家 | 来源:发表于2018-03-24 01:45 被阅读12次

看到项目有使用委托,一直都搞不明白是怎么回事,看了好几遍才略懂一二,关于c#接触时间时间短,目前工作有用到c#进行开发,实际工作中写的更多的是业务代码,一些技巧性的东西,还是得下去找时间研究一下,不然还是一知半解,不知所云……

简介

委托类似与C/C++中的指针,它是一种引用类型,表示对具有特定参数列表和返回类型的方法的引用。 在实例化委托时,你可以将其实例与任何具有兼容签名和返回类型的方法相关联。 你可以通过委托实例调用方法。使用delegate进行声明。

例子
//声明一个委托,有一个参数,且无返回值的函数,都可以使用委托来调用
public delegate void DelegateHandel(string message);

public static void DelegateMethod(string message)
{
   System.Console.WriteLine(message);
}
//实例化委托
DelegateHandel delhandel=DelegateMethod;
//调用委托
delhandel("hello world");
多播委托

你可以使用+来将多个对象关联到一个委托实例上,使用-将其取消关联。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace testdelegate
{

    delegate void delhandel(string s);

    class Program
    {

        static void hello(string s) 
        {
            System.Console.WriteLine("hello{0}",s);
        }

        static void world(string s)
        {
            System.Console.WriteLine("world{0}",s);
        }


        static void Main(string[] args)
        {
            delhandel del1, del2, del3,del4;

            del1 = hello;

            del2 = world;

            del3 = hello;
            del3 += world;

            del4 = del3 - del2;

            del1("A");
            del2("B");
            del3("C");
            del4("D");

            System.Console.ReadLine();
        }
    }
}

2018-03-24_010258.png
利用委托进行窗口传消息

先创建一个主窗口和一个子窗口,在主窗口中添加一个按钮用来显示出子窗口,在子窗口中添加一个按钮用来传递消息给主窗口。子窗口的按钮这里我们用它来改变主窗口的背景颜色,你可以传递文字消息。

//childwindow.xaml.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;

namespace testdel
{
    /// <summary>
    /// childwindow.xaml 的交互逻辑
    /// </summary>
    public partial class childwindow : Window
    {
        //定义一个委托
        public delegate void ChangeHandel();
        //定义委托的事件
        public event ChangeHandel ChangeEvent; 

        public childwindow()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, RoutedEventArgs e)
        {
            //判断这个事件是否有注册
            if (ChangeEvent != null) 
            {
                ChangeEvent();
            }
        }
    }
}

//mainwindow.xaml.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;

namespace testdel
{
    /// <summary>
    /// MainWindow.xaml 的交互逻辑
    /// </summary>
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, RoutedEventArgs e)
        {
            childwindow childwin = new childwindow();
            //显示子窗口时添加事件订阅
            childwin.ChangeEvent += new childwindow.ChangeHandel(changecolor);

            childwin.Show();

        }

        private void changecolor()
        {
            backgrid.Background = new SolidColorBrush(Colors.Red);
        }
    }
}

2018-03-24_013807.png
参考文章

委托(C# 编程指南)

相关文章

  • 【22】C# 委托

    看到项目有使用委托,一直都搞不明白是怎么回事,看了好几遍才略懂一二,关于c#接触时间时间短,目前工作有用到c#进行...

  • C#(22)委托

    9yue7 委托 delegate 一、委托的概念 把方法作为一个参数来传递(方法是变化的) 二、声明委托 访问修...

  • C# 委托

    C#委托 C#中的委托(Delegate)类似于C或C++中函数的指针。委托(Delegate)是存有对某个方法的...

  • 教小明学一点点编程—C#篇(0)

    像小明这样使用C#的新同学,一定都会被C#的复杂的委托事件机制所困惑,那么我们不如解释一下什么是C#中委托。 委托...

  • C#委托 匿名函数 Lambda

    C# 中委托的发展#在 C# 1.0 中,通过使用在代码中其他位置定义的方法显式初始化委托来创建委托的实例。 C#...

  • 2020-02-19

    C# 委托 (一)—— 委托、 泛型委托与Lambda表达式 原创wnvalentin 最后发布于2018-08-...

  • (转).NET面试题系列[7] - 委托与事件

    委托和事件 委托在C#中具有无比重要的地位。 C#中的委托可以说俯拾即是,从LINQ中的lambda表达式到(包括...

  • 委托及其用法

    C#委托使用详解(Delegates) 1. 委托是什么? 其实,我一直思考如何讲解委托,才能把委托说得更透彻。说...

  • C# 高级语言总结

    后续 1 C# 委托 委托(Delegate)特别用于实现事件和回调方法。所有的委托(Delegate)都派生自 ...

  • C#匿名方法、Lambda表达式和各种泛型委托

    Linq查询与高级C#编程机器理论研究基础 C#委托解决的是对象之间的逆向传递问题,其次,委托还有其他的用途(匿名...

网友评论

    本文标题:【22】C# 委托

    本文链接:https://www.haomeiwen.com/subject/ricmqftx.html