显示 Read More
posted @ 2017-11-14 12:05 mCat Views(143) Comments(0) Diggs(0) Edit
两个窗口,第一个窗口中有按钮和label,点击按钮用来打开窗口2; 在窗口2中有textbox和按钮,点击按钮,将textbox中的值传递给窗口1,并在窗口1的label上显示。 分析:在窗口1有label显示的方法,但是在窗口2中有需要显示的值。这时需要使用委托,将窗体1的显示方法传递到窗体2中。 Read More
posted @ 2017-11-14 10:44 mCat Views(217) Comments(0) Diggs(0) Edit
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace lamda表达式 { public delegate void DeleOne(); public delegate void ... Read More
posted @ 2017-11-14 10:13 mCat Views(323) Comments(0) Diggs(0) Edit
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace 泛型委托 { //委托中使用泛型 public delegate int DeleCompare(T t1,T t2); ... Read More
posted @ 2017-11-14 09:49 mCat Views(260) Comments(0) Diggs(0) Edit