AutoSizeMode 列舉

定義

指定當啟用控制項的 AutoSize 屬性時,它的行為為何。

C#
public enum AutoSizeMode
繼承
AutoSizeMode

欄位

GrowAndShrink 0

此控制項會增大或縮小,以符合其內容的大小。 此控制項無法手動調整大小。

GrowOnly 1

此控制項會根據需要而增大,以符合其內容的大小,但是不會縮小成比它的 Size 屬性還要小的值。 表單可以調整大小,但是不能縮小到無法顯示其中包含的任何控制項。

範例

下列程式碼範例顯示使用程式碼建立的表單,其會自動調整大小以符合其內容。 執行時,表單會顯示 、 Label TextBox 輸入 URL 的 ,以及在 Button 使用者的預設網頁瀏覽器內顯示該 URL 的 。 程式碼範例會使用 FlowLayoutPanel 來配置包含的控制項,並設定 AutoSizeAutoSizeMode 來擴大和縮小以符合其表單的內容。

C#
private void Form1_Load(object sender, EventArgs e)
{
    this.AutoSize = true;
    this.AutoSizeMode = AutoSizeMode.GrowAndShrink;
    this.Text = "URL Opener";

    flowPanel = new FlowLayoutPanel();
    flowPanel.AutoSize = true;
    flowPanel.AutoSizeMode = AutoSizeMode.GrowAndShrink;
    this.Controls.Add(flowPanel);

    urlLabel = new Label();
    urlLabel.Name = "urlLabel";
    urlLabel.Text = "URL:";
    urlLabel.Width = 50;
    urlLabel.TextAlign = ContentAlignment.MiddleCenter;
    flowPanel.Controls.Add(urlLabel);

    urlTextBox = new TextBox();
    urlTextBox.Name = "urlTextBox";
    urlTextBox.Width = 250;
    flowPanel.Controls.Add(urlTextBox);

    urlButton = new Button();
    urlButton.Name = "urlButton";
    urlButton.Text = "Open URL in Browser";
    urlButton.Click += new EventHandler(urlButton_Click);
    flowPanel.Controls.Add(urlButton);
}

void urlButton_Click(object sender, EventArgs e)
{
    try
    {
        Uri newUri = new Uri(urlTextBox.Text);
    }
    catch (UriFormatException uriEx)
    {
        MessageBox.Show("Sorry, your URL is malformed. Try again. Error: " + uriEx.Message);
        urlTextBox.ForeColor = Color.Red;
        return;
    }
    
    // Valid URI. Reset any previous error color, and launch the URL in the 
    // default browser.
    // NOTE: Depending on the user's settings, this method of starting the
    // browser may use an existing window in an existing Web browser process.
    // To get around this, start up a specific browser instance instead using one of
    // the overloads for Process.Start. You can examine the registry to find the
    // current default browser and launch that, or hard-code a specific browser.
    urlTextBox.ForeColor = Color.Black;
    Process.Start(urlTextBox.Text);
}

備註

設定 GrowAndShrink 值會產生您針對已啟用 屬性但沒有屬性的控制項 AutoSize 取得的相同行為

AutoSizeMode 屬性。 會 MinimumSize 遵守 和 MaximumSize 屬性,但會忽略屬性的 Size 目前值。

適用於

產品 版本
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
Windows Desktop 3.0, 3.1, 5, 6, 7

另請參閱