這篇文章給大家分享的是有關(guān)C#自定義事件模擬風(fēng)吹草搖擺效果的示例分析的內(nèi)容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
10多年的科爾沁網(wǎng)站建設(shè)經(jīng)驗,針對設(shè)計、前端、開發(fā)、售后、文案、推廣等六對一服務(wù),響應(yīng)快,48小時及時工作處理。成都全網(wǎng)營銷推廣的優(yōu)勢是能夠根據(jù)用戶設(shè)備顯示端的尺寸不同,自動調(diào)整科爾沁建站的顯示方式,使網(wǎng)站能夠適用不同顯示終端,在瀏覽器中調(diào)整網(wǎng)站的寬度,無論在任何一種瀏覽器上瀏覽網(wǎng)站,都能展現(xiàn)優(yōu)雅布局與設(shè)計,從而大程度地提升瀏覽體驗。成都創(chuàng)新互聯(lián)公司從事“科爾沁網(wǎng)站設(shè)計”,“科爾沁網(wǎng)站推廣”以來,每個客戶項目都認(rèn)真落實執(zhí)行。
這是一個自定義事件的例子。C#、WinForm、Visual Studio 2017。
在HoverTreeForm中畫一塊草地,上面有許多草(模擬)。
HewenqiTianyi類模擬天氣,會引發(fā)“風(fēng)”事件(HoverTreeWindEvent),風(fēng)有東風(fēng)或西風(fēng),或靜止。
當(dāng)吹東風(fēng),草往西邊倒,吹西風(fēng)則往東邊到。靜止則草不會東歪西倒。
草地上每一顆草都監(jiān)聽HoverTreeWindEvent事件,根據(jù)風(fēng)向(WindDdirection)調(diào)整姿態(tài)。
HewenqiTianyi中有定時器,每隔一段時間觸發(fā)調(diào)整風(fēng)向的事件。
由于監(jiān)聽到的“風(fēng)”事件不是WinForm中的線程,要改變WinForm中“草”的姿態(tài),
使用了BeginInvoke方法和委托,在WinForm線程外訪問控件。具體看HoverTreeGrass用戶控件。
效果圖:
HewenqiTianyi類代碼:
using System; using System.Timers; namespace TianYiHeWenQi { class HewenqiTianyi { public static event ActionEventHandler HoverTreeWindEvent; WindEventArgs _arg = new WindEventArgs(); public HewenqiTianyi() { Timer h_timer = new Timer(); h_timer.Interval = 3000; h_timer.Elapsed += H_timer_Elapsed; h_timer.Start(); } Random _HoverClock=new Random (); private void H_timer_Elapsed(object sender, ElapsedEventArgs e) { _arg.WindType = (WindDdirection)(_HoverClock.Next(3)); OnAction(_arg); } protected void OnAction(WindEventArgs ev) { HoverTreeWindEvent?.Invoke(ev); //相當(dāng)于以下代碼 //if (HoverTreeWindEvent != null) //{ // HoverTreeWindEvent(ev); //} } } class WindEventArgs : EventArgs { public WindDdirection WindType { get; set; } } enum WindDdirection { East, West, Static } delegate void ActionEventHandler(WindEventArgs ev); }
自定義用戶控件代碼:
using System; using System.Windows.Forms; namespace TianYiHeWenQi { public partial class HoverTreeGrass : UserControl { delegate void MySetText(string text); public HoverTreeGrass() { InitializeComponent(); HewenqiTianyi.HoverTreeWindEvent += HewenqiTianyi_HoverTreeWindEvent; } private void UpdateLabel(WindDdirection wd) { if (label_grass.InvokeRequired) { // 當(dāng)一個控件的InvokeRequired屬性值為真時,說明有一個創(chuàng)建它以外的線程想訪問它 ActionactionDelegate = (x) => { switch (x) { case WindDdirection.East: label_grass.Location = new System.Drawing.Point(40 - 9, label_grass.Location.Y); label_grass.Text="\\"; break; case WindDdirection.West: label_grass.Location = new System.Drawing.Point(40+9, label_grass.Location.Y); label_grass.Text = "/"; break; case WindDdirection.Static: label_grass.Location = new System.Drawing.Point(40, label_grass.Location.Y); label_grass.Text = "|"; break; } }; // 或者 // Action actionDelegate = delegate(string txt) { this.label_grass.Text = txt; }; this.label_grass.BeginInvoke(actionDelegate, wd); } else { switch (wd) { case WindDdirection.East: label_grass.Text = "\\"; break; case WindDdirection.West: label_grass.Text = "/"; break; case WindDdirection.Static: label_grass.Text = "|"; break; } } } private void HewenqiTianyi_HoverTreeWindEvent(WindEventArgs ev) { UpdateLabel(ev.WindType); } } }
HoverTreeForm窗體代碼:
using System.Windows.Forms; namespace TianYiHeWenQi { public partial class HoverTreeForm : Form { public HoverTreeForm() { InitializeComponent(); for (int i = 0; i < tableLayoutPanel_hovertree.ColumnCount; i++) { for (int j = 0; j < tableLayoutPanel_hovertree.RowCount; j++) { tableLayoutPanel_hovertree.Controls.Add(new HoverTreeGrass(), i, j); } } HewenqiTianyi h_ty = new HewenqiTianyi(); } } }
感謝各位的閱讀!關(guān)于“C#自定義事件模擬風(fēng)吹草搖擺效果的示例分析”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!