Comment : dimensionner automatiquement une fenêtre en fonction de son contenu
Mise à jour : novembre 2007
Cet exemple indique comment définir la propriété SizeToContent pour spécifier comment redimensionner une fenêtre en fonction de son contenu.
Exemple
// Manually alter window height and width
this.SizeToContent = SizeToContent.Manual;
// Automatically resize width relative to content
this.SizeToContent = SizeToContent.Width;
// Automatically resize height relative to content
this.SizeToContent = SizeToContent.Height;
// Automatically resize height and width relative to content
this.SizeToContent = SizeToContent.WidthAndHeight;