用户登录  |  用户注册
首 页商业源码原创产品编程论坛
当前位置:PB创新网文章中心编程技巧VisualBasic

字体闪烁

减小字体 增大字体 作者:佚名  来源:本站整理  发布时间:2009-03-16 19:49:55
用Visual Basic我们可设计出形形色色符合用户要求的应用程序,它确实是一种很
好的用户程序开发工具,可VB提供的基本控件中都没有闪烁属性设置,使应用程序
界面缺乏“活性”,近期笔者设计软件封面时,就要求字体不断地闪烁,为此,经
反复分析、实践,最后终于成功地实现字体闪烁效果,现将设计过程说明如下:
  (1)创建一个新目标文件(project1),并建立一个窗体Form1。
  (2)在Form1上配置一个计时器控制Timer1、标签控件Label1、命令控件
Command1。
  (3)各控件属性设置:
  Timer1的Enabled设置为True;
  Label1的Caption设置为需闪烁的字体:“江西省黎川县职业中专电脑室设计”

Font设置字体及大小、Backstyle设置为“0-Transparent”;
  Command1中的Caption设置为“退出”。
  (4)程序代码清单:
  Option Explicit
  Private Sub Form_ Load()
  Label1.Top=850  
   ′设置闪烁字体的显示位置
  Label1.Left=750
  Timer1.Interval=555  
  ′设置字体闪烁间隔时间
  Form1.Windowstate=2
  End Sub
  ′利用计时器控件Timer有规律地改变字体颜色(Forecolor)
  Private Sub Timer1_Timer()
  Chc Label1,1,4,8
  End Sub
  ′Chc过程是循环地改变字体颜色(Forecolor)
  Sub Chc(Cont As Control,Color1 As Integer,Color2 As Integer,Color3
As Integer)
  If Val(Cont.Tag)=Color1 Then
  Cont.Tag=Color2
  ElseIf Val(Cont.Tag)=Color2 Then
  Cont.Tag=Color3
  ElseIf Val(Cont.Tag)=Color3 Then
  Cont.Tag=Color1
  Else
  Cont.Tag=Color1
  End If
  Cont.ForeColor=QBColor(Cont.Tag)
  End Sub
  Private Sub Command1_Click()
  End
  End Sub
  程序除标签控件外,还适用于许多VB基本控件,实现诸多闪烁效果,例如:闪
烁文本框、闪烁文件列表框等,极大丰富了VB应用程序界面,相当实用。

Tags:

作者:佚名

文章评论评论内容只代表网友观点,与本站立场无关!

   评论摘要(共 0 条,得分 0 分,平均 0 分) 查看完整评论

相关文章

PB创新网ourmis.com】Copyright © 2000-2009 . All Rights Reserved .
页面执行时间:25,156.25000 毫秒
Email:ourmis@126.com QQ:2322888 蜀ICP备05006790号