1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
| Public Class Fenetre
Private WithEvents Fen As New Form
Private WithEvents Pic As New PictureBox
Public Property Largeur As Integer = 500
Public Property Hauteur As Integer = 300
Public Property Couleur As Color = Color.Black
Public Property Titre As String = ""
' ------------------------------------------------------------------------------------------
' Gestion de l'evement : Load.
' ------------------------------------------------------------------------------------------
Public Sub Creer() Handles Fen.Load
Fen.BackColor = Couleur
Fen.FormBorderStyle = FormBorderStyle.FixedDialog
Fen.MaximizeBox = False
Fen.Width = Largeur
Fen.Height = Hauteur
Fen.StartPosition = FormStartPosition.CenterScreen
Fen.Focus()
Pic.Width = Largeur
Pic.Height = Hauteur
End Sub |