本篇文章的主要開發環境是Visual Studio Visual Studio系列產品一直以來都提供了強大的控件功能然而我們利用這些控件可以編寫出功能強大的應用程序本文主要利用微軟的最新net開發工具為大家展示窗體特效的應用方法為大家介紹創建炫酷的透明化窗體以及浮動型窗體的一些技巧很適合net開發工具的初學者具有一定的實用價值
打開 Visual Studio 在文件 (File) 菜單上單擊新建項目 (New Project) 在新建項目 (New Project) 對話框的模板 (Templates) 窗格中單擊 Windows 應用程序(Windows Application)單擊確定 (OK)
窗體應用技巧一創建浮動窗體
創建新工程後選擇Form窗體添加Timer和Timer控件為窗體選擇一個好看的背景當然你也可以使用系統默認的背景
進入代碼編輯器輸入代碼
Public Class Form
Inherits System
Windows
Forms
Form
Private Sub Form
_Load(ByVal sender As System
Object
ByVal e As System
EventArgs) Handles MyBase
Load
Dim pos As Point = New Point(
)
設置窗體初始位置
Me
DesktopLocation = pos
Timer
Interval =
設置Timer的值
Timer
Enabled = True
Timer
Interval =
Timer
Enabled = False
End Sub
進入Timer_Tick事件
Private Sub Timer
_Tick(ByVal sender As System
Object
ByVal e As System
EventArgs) Handles Timer
Tick
Dim pos As Point = New Point(Me
DesktopLocation
X +
Me
DesktopLocation
Y +
)
窗體左上方橫坐標的timer
加
If pos
X <
Or pos
Y <
Then
Me
DesktopLocation = pos
Else
Timer
Enabled = False
Timer
Enabled = True
End If
End Sub
進入Timer_Tick事件
Private Sub Timer_Tick(ByVal sender As SystemObject ByVal e As SystemEventArgs) Handles TimerTick
Dim pos As Point = New Point(MeDesktopLocationX MeDesktopLocationY ) 窗體的左上方橫坐標隨著timer減一
If posX > Or posY > Then
MeDesktopLocation = pos
Else
TimerEnabled = True
TimerEnabled = False
End If
End Sub
創建完成後我們來運行程序測試一下測試成功程序在屏幕中不斷地來回走動了
窗體應用技巧二創建透明的窗體
創建新工程後選擇Form窗體添加LabelTrackBarTimer控件為了突出效果為窗體選擇一個好看的背景
[] []
From:http://tw.wingwit.com/Article/program/net/201311/14511.html