1,453
社区成员




Private Sub Form_Load()
Picture1.Top = 0
Picture1.Left = 0
Picture1.Height = Me.Height
Picture1.Width = Me.Width
Image1.Height = Picture1.Height
Image1.Width = Picture1.Width
Image1.Stretch = True
End Sub
Private Sub Form_Resize()
Picture1.Height = Me.Height
Picture1.Width = Me.Width
Image1.Height = Picture1.Height
Image1.Width = Picture1.Width
Image1.Stretch = True
End Sub