VB 版 (精华区)
发信人: student (earth), 信区: VB
标 题: 深入浅出VB.Net Windows Form-6
发信站: 哈工大紫丁香 (2002年01月26日19:21:38 星期六), 站内信件
list5列出了employee表单的扩展表单Contractor。注意我们添加了两个控件并且改变
ok按钮的位置。
Listing 5: The Contractor form
Imports System.Windows.Forms
Public Class Form1
Inherits WindowsApplication1.Form2
Private Label3 As Label
Private ExternalCompany As TextBox
Public Sub New()
InitializeComponent()
End Sub
Private Sub InitializeComponent()
Label3 = New Label()
ExternalCompany = New TextBox()
Label3.Location = New System.Drawing.Point(8, 72)
Label3.Size = New System.Drawing.Size(88, 16)
Label3.Text = "Ext Company"
ExternalCompany.Location = New System.Drawing.Point(120, 62)
ExternalCompany.Size = New System.Drawing.Size(136, 20)
' Change the ok button position
ok.Location = New System.Drawing.Point(8, 140)
Me.Text = "Contractor Form"
Me.Controls.Add(Label3)
Me.Controls.Add(ExternalCompany)
End Sub
End Class
****************图5*************
总结
现在我们完全明白了VB.Net中窗体表单,他和VB6中的表单一样容易,但它是完全面向
对象的,理解面向对象编程使你能够充分利用VB.Net的强大功能。比如,掌握继承,能使
你最大限度的利用代码重用技术。
--
--
※ 来源:·哈工大紫丁香 bbs.hit.edu.cn·[FROM: 202.118.236.168]
Powered by KBS BBS 2.0 (http://dev.kcn.cn)
页面执行时间:2.905毫秒