Partilhar via


Como: Dimensionar automaticamente uma janela para caber seu conteúdo

Este exemplo mostra como definir a propriedade SizeToContent para especificar como uma janela é redimensionada para se ajustar a seu conteúdo.

Exemplo

// 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;