VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > VB.net教程 >
  • VB.net中的动态标题

实例说明

在本实例中,我们制作一个窗体的标题是动态变化的应用程序。程序启动时,窗体的标题就开始变化。程序运行结果如图95-1所示。

 

图95-1 运行结果

技术要点

l 使用Timer控件

l 更改窗体的标题

实现过程

■ 新建项目

打开Visual Studio.NET,选择"新建项目",在项目类型窗口中选择"Visual Basic项目",在模板窗口中选择"Windows应用程序",在名称域中输入"DynCaption",然后选择保存路径。单击"确认"。

■ 添加控件和设置属性

向当前窗体上添加一个Label控件和一个Timer控件,将Label控件的Text属性改为和界面一致。Timer控件的Interval属性设为200(ms),Enabled属性设置为True(默认值为False)。

■ 添加代码

Public Class Form1

Inherits System.Windows.Forms.Form

Dim strword As String

Dim startword As Short

Friend WithEvents Label1 As System.Windows.Forms.Label

Dim textword As String = "欢迎使用VB.NET!"

#Region " Windows Form Designer generated code "

Public Sub New()

MyBase.New()

InitializeComponent()

Me.Text = ""

startword = 1

End Sub

#End Region

Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick

strword = Mid(textword, startword, 1)

Me.Text = Me.Text & strword

If startword > Len(textword) Then

Me.Text = ""

startword = 1

End If

Beep()

startword = startword + 1

End Sub

End Class

■ 运行程序

单击菜单"调试|启动"或单击 图标运行程序。

小结

本实例通过使用Timer控件来控制窗体标题的变动。


相关教程