您好,登錄后才能下訂單哦!
這期內(nèi)容當(dāng)中小編將會(huì)給大家?guī)?lái)有關(guān)VB.NET中怎么創(chuàng)建一個(gè)浮動(dòng)窗體,文章內(nèi)容豐富且以專(zhuān)業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
打開(kāi) Visual Studio 2008在文件 (File) 菜單上,單擊新建項(xiàng)目 (New Project)。 在新建項(xiàng)目 (New Project) 對(duì)話框的模板 (Templates) 窗格中,單擊 Windows 應(yīng)用程序(Windows Application)。單擊確定 (OK)
創(chuàng)建VB.NET浮動(dòng)窗體。
創(chuàng)建新工程后,選擇Form1窗體,添加Timer1和Timer2控件。為窗體選擇一個(gè)好看的背景,當(dāng)然你也可以使用系統(tǒng)默認(rèn)的背景。進(jìn)入代碼編輯器,輸入VB.NET浮動(dòng)窗體的創(chuàng)建代碼:
Public Class Form1
Inherits System.Windows.Forms.Form
Private Sub Form1_Load(ByVal sender
As System.Object, ByVal e As
System.EventArgs) Handles MyBase.LoadDim pos As Point = New Point(100, 50)
'設(shè)置窗體初始位置
Me.DesktopLocation = pos
Timer1.Interval = 10
'設(shè)置Timer的值
Timer1.Enabled = True
Timer2.Interval = 10
Timer2.Enabled = False
End Sub
進(jìn)入Timer1_Tick事件
Private Sub Timer1_Tick(ByVal
sender As System.Object, ByVal
e As System.EventArgs) Handles
Timer1.TickDim pos As Point = New Point
(Me.DesktopLocation.X + 2,
Me.DesktopLocation.Y + 1)'窗體左上方橫坐標(biāo)的timer1加
If pos.X < 600 Or pos.Y < 400 Then
Me.DesktopLocation = pos
Else
Timer1.Enabled = False
Timer2.Enabled = True
End If
End Sub
進(jìn)入Timer2_Tick事件
Private Sub Timer2_Tick(ByVal sender
As System.Object, ByVal e As
System.EventArgs) Handles Timer2.TickDim pos As Point = New Point
(Me.DesktopLocation.X - 2, Me.
DesktopLocation.Y - 1)
'窗體的左上方橫坐標(biāo)隨著timer2減一If pos.X > 100 Or pos.Y > 50 Then
Me.DesktopLocation = pos
Else
Timer1.Enabled = True
Timer2.Enabled = False
End If
End Sub
上述就是小編為大家分享的VB.NET中怎么創(chuàng)建一個(gè)浮動(dòng)窗體了,如果剛好有類(lèi)似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。