C 處理事件的過程

2021-06-16 13:33:28 字數 512 閱讀 1313

首先,先說明事件跟委託的關係,事件並不等於委託,事件等於委託鏈。

c#中處理事件的六個步驟:

1、宣告事件所需的**;

2、事件的宣告;

3、定義觸發事件的方法;

4、訂閱者定義事件處理程式;

5、向事件發行者訂閱乙個事件;

6、觸發事件。

根據上面六個步驟,寫出乙個事件的過程,**如下:

using system;

using system.collections.generic;

using system.linq;

using system.text;

namespace testevent}}

class poorman //工人

}class program}}

執行程式,可以看到如下輸出:

親,開始發工資啦!

我終於拿到工資啦!!!明天有錢旅遊啦!!!

火熱傳送工資中...

view處理事件

當乙個view需要處理事件的時候 如果我們設定了ontouchlistener,那麼ontouchlistener裡面的ontouch方法會被呼叫,如果ontouch返回false,則當前的view的ontouchevent方法會被呼叫 如果返回值true,那麼ontouchevent方法不會被呼叫...

perl sdl處理事件

use sdl use sdlx sprite use sdl event use sdl events 畫大地 隨機生成大地的麻點 for my i 1 i 500 i 畫夜空 my sky sdlx sprite new width 400,height 200 sky su ce draw r...

處理事件冒泡

導火線 tr元素繫結了乙個點選事件,tr下面有乙個button元素,此時需要給button元素繫結乙個點選事件,而執行了tr的點選事件.需要把tr的點選事件阻止掉 方案1 在tr執行它的點選事件的時候過濾掉子元素button 菜鳥教程寫的demo 可是我專案中加上addeventlintener監聽...