資源描述:
《dotnet控件使用方法》由會(huì)員上傳分享,免費(fèi)在線閱讀,更多相關(guān)內(nèi)容在應(yīng)用文檔-天天文庫(kù)。
1、DotNet第三方控件使用筆記0、1)ButtonX控件可實(shí)現(xiàn)如下效果:在ButtonX上,是否顯示“圖像,取決于“images“屬性2)在“buttomItem“控件中,是否“只是顯示圖像”,”只是文本”,還是“圖像和文本都顯示”,取決于1、BalloonTio控件(氣泡提示)(1)使用效果1)效果一:在鼠標(biāo)在控件上面停留時(shí),出現(xiàn)提示信息,如下圖:2)效果二:當(dāng)控件獲得焦點(diǎn)時(shí),也出現(xiàn)如上圖一樣的信息。(2)實(shí)現(xiàn)上述兩種效果的途徑1)將BalloonTip控件的“ShowBalloonOnFacus”屬性設(shè)置為“False”即可實(shí)現(xiàn),效果一。2)將“ShowBalloonO
2、nFacus”屬性設(shè)置為“True”,即可實(shí)現(xiàn)效果二。(3)設(shè)置BalloonTip顯示的內(nèi)容:在欲設(shè)置該屬性的控件的“BalloonTioOnFocus上的BalloonCaption”和“BalloonTioOnHover上的BalloonCaption”屬性中,分別設(shè)置這兩種效果的“標(biāo)題”屬性;在“BalloonTioOnFocus上的BalloonText”和在“BalloonTioOnHover上的BalloonText”屬性中,分別設(shè)置這兩種效果的“顯示內(nèi)容”的屬性。(1)屬性“AlerAnimation”設(shè)置“BalloonTip”出現(xiàn)的效果,(2)“Ball
3、oonTip”除了出現(xiàn)在該控件附近,還可以出現(xiàn)在屏幕的右下角,示例程序如下:privateAlertCustomm_AlertOnLoad=null;m_AlertOnLoad=newAlertCustom();Rectangler=Screen.GetWorkingArea(this);m_AlertOnLoad.Location=newPoint(r.Right-m_AlertOnLoad.Width,r.Bottom-m_AlertOnLoad.Height);m_AlertOnLoad.AutoClose=true;m_AlertOnLoad.AutoCloseTi
4、meOut=15;m_AlertOnLoad.AlertAnimation=eAlertAnimation.BottomToTop;m_AlertOnLoad.AlertAnimationDuration=300;m_AlertOnLoad.Show(false);//false::指示該控件是否需要獲得焦點(diǎn)才出現(xiàn)“BalloonTip”(6)“BalloonTip”除了可以通過(guò)“添加控件”的方式使用,也可以通過(guò)編程的方式使用,示例程序如下:DevComponents.DotNetBar.Balloonb=newDevComponents.DotNetBar.Balloon
5、();b.Style=eBallonStyle.Alert;b.CaptionImage=balloonTipFocus.CaptionImage.Clone()asImage;b.CaptionText="BalloonStatusInformation";b.Text="BalloonsarenowenabledforBalloonTipTestarea.Hovermouseovertheareaandsetthefocustoanycontrol.";b.AlertAnimation=eAlertAnimation.TopToBottom;b.AutoResize()
6、;b.AutoClose=true;b.AutoCloseTimeOut=4;b.Owner=this;//指示父控件b.Show(button2,false);//button2::指示在那個(gè)控件附近出現(xiàn)“BalloonTip”(7)還可以對(duì)“BalloonTip”出現(xiàn)時(shí)的效果進(jìn)行程序控制,如下://BalloonTriggerControlpropertyreturnscontrolthatinvokedballoon//BalloonTriggerControl屬性返回觸發(fā)“BalloonTip”的控件if(balloonTipHover.BalloonTrigger
7、Control==groupBox1){//BalloonControlisalreadypreparedBallooncontrolthatisjustabouttobedisplayed//SettingBalloonControltonullwillcancelballoondisplayPointp=Control.MousePosition;//Adjustcursorpositionsocursorisbelowtipp.Offset(-balloonTipHover.BalloonControl.Ti