vb中怎样使窗体背景图片完整显示出来

意思是用Form1.Picture属性来设置背景 ,有没有不用image控件的方法

第1个回答  2020-04-15
把图片放入image控件里,然后设置image属性stretch为true
在窗体的form_resize
事件里
将image的高和宽设置为和窗体一样大
这是比较简单的方法
其实用bitblt
或者paintpicture
更好。
第2个回答  2009-09-11
Private Sub Form_Load()
Me.Picture = LoadPicture(App.Path & "\" & "test.bmp")
End Sub

或者直接设置 form1 的 picture 属性
第3个回答  2020-06-28
楼主的意思是用Form1.Picture属性来设置背景
第4个回答  2009-09-11
有啊,用paintpictur方法

Private Sub Form_Load()
Me.AutoRedraw = True
End Sub

Private Sub Form_Resize()
Me.PaintPicture Me.Picture, 0, 0, Me.Width, Me.Height
Me.Refresh
End Sub本回答被提问者采纳
相似回答