程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> C#編程利器之四:委托與事件(Delegate and event) (上)(4)

C#編程利器之四:委托與事件(Delegate and event) (上)(4)

編輯:關於C語言

解決方案:

--使用委托和接口, 代碼如下:

1namespace DelegateSample2
2{
3  //定義一委托
4  public delegate void ShowNumberDel(object[] items);
5  public class ProcessNumber
6  {
7    private object[] items;
8    public ProcessNumber(int max)
9    {
10      items = new object[max];
11      for (int i = 0; i < max; ++i)
12      {
13        items[i] = i;
14      }
15    }
16
17    public void ProcessItems(ShowNumberDel show)
18    {
19      show(items);
20    }
21  }
22}
23

在這裡我們先把界面上的控件布局好並做好調用委托的准備工作,效果及代碼如下:

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved