다음을 통해 공유


AnchorStyles 열거형

컨트롤이 해당 컨테이너 가장자리에 고정되는 방법을 지정합니다.

이 열거형에는 멤버 값를 비트로 조합할 수 있는 FlagsAttribute 특성이 있습니다.

네임스페이스: System.Windows.Forms
어셈블리: System.Windows.Forms(system.windows.forms.dll)

구문

‘선언
<FlagsAttribute> _
Public Enumeration AnchorStyles
‘사용 방법
Dim instance As AnchorStyles
[FlagsAttribute] 
public enum AnchorStyles
[FlagsAttribute] 
public enum class AnchorStyles
/** @attribute FlagsAttribute() */ 
public enum AnchorStyles
FlagsAttribute 
public enum AnchorStyles

멤버

  멤버 이름 설명
Supported by the .NET Compact Framework Bottom 컨트롤이 해당 컨테이너의 아래쪽 가장자리에 앵커로 고정되어 있습니다. 
Supported by the .NET Compact Framework Left 컨트롤이 해당 컨테이너의 왼쪽 가장자리에 앵커로 고정되어 있습니다. 
Supported by the .NET Compact Framework None 컨트롤이 해당 컨테이너의 가장자리에 앵커로 고정되어 있지 않습니다. 
Supported by the .NET Compact Framework Right 컨트롤이 해당 컨테이너의 오른쪽 가장자리에 앵커되어 있습니다. 
Supported by the .NET Compact Framework Top 컨트롤이 해당 컨테이너의 위쪽 가장자리에 앵커되어 있습니다. 

설명

컨트롤이 해당 컨테이너 가장자리에 앵커로 고정되면 컨테이너의 크기가 조정될 때 컨트롤과 지정된 가장자리 사이의 거리가 일정하게 유지됩니다. 예를 들어, 컨트롤이 해당 컨테이너 오른쪽 가장자리에 앵커로 고정되면 컨테이너의 크기가 조정될 때 컨트롤의 오른쪽 가장자리와 컨테이너의 오른쪽 가장자리 사이의 거리는 일정하게 유지됩니다. 컨트롤은 컨트롤 가장자리의 조합 위치에 고정될 수도 있습니다. 컨트롤이 위쪽 및 아래쪽과 같이 해당 컨테이너 반대쪽 가장자리에 고정되면 컨테이너의 크기가 조정될 때 컨트롤의 크기도 조정됩니다. 컨트롤의 Anchor 속성이 AnchorStyles.None으로 설정되어 있으면 조정된 컨테이너 크기의 반만큼 컨트롤이 이동됩니다. 예를 들어, ButtonAnchor 속성을 AnchorStyles.None으로 설정하고 컨트롤이 위치한 Form의 크기를 한쪽 방향으로 20픽셀만큼 조정하면 해당 단추는 양쪽 방향으로 10픽셀만큼 이동합니다.

예제

다음 예제에서는 Button을 폼에 추가하고 공용 속성 중 일부를 설정합니다. 예제에서는 폼의 오른쪽 아래 모퉁이에 단추를 고정시켜 폼의 크기가 조정될 경우 상대적인 위치를 유지할 수 있도록 합니다. 다음에는 BackgroundImage를 설정하고 Image와 같은 크기로 단추의 크기를 조정합니다. 그런 다음 TabStoptrue로 설정하고 TabIndex 속성을 설정합니다. 마지막으로 단추의 Click 이벤트를 처리하는 이벤트 처리기를 추가합니다. 이 예제에서는 이름이 imageList1ImageList가 있다고 가정합니다.

' Add a button to a form and set some of its common properties.
Private Sub AddMyButton()
   ' Create a button and add it to the form.
   Dim button1 As New Button()
   
   ' Anchor the button to the bottom right corner of the form
   button1.Anchor = AnchorStyles.Bottom Or AnchorStyles.Right
   
   ' Assign a background image.
   button1.BackgroundImage = imageList1.Images(0)

   ' Specify the layout style of the background image. Tile is the default.
   button1.BackgroundImageLayout = ImageLayout.Center
   
   ' Make the button the same size as the image.
   button1.Size = button1.BackgroundImage.Size
   
   ' Set the button's TabIndex and TabStop properties.
   button1.TabIndex = 1
   button1.TabStop = True

   ' Add a delegate to handle the Click event.
   AddHandler button1.Click, AddressOf Me.button1_Click
   
   ' Add the button to the form.
   Me.Controls.Add(button1)
End Sub
// Add a button to a form and set some of its common properties.
private void AddMyButton()
{
   // Create a button and add it to the form.
   Button button1 = new Button();

   // Anchor the button to the bottom right corner of the form
   button1.Anchor = (AnchorStyles.Bottom | AnchorStyles.Right);

   // Assign a background image.
   button1.BackgroundImage = imageList1.Images[0];

   // Specify the layout style of the background image. Tile is the default.
   button1.BackgroundImageLayout = ImageLayout.Center;
   
   // Make the button the same size as the image.
   button1.Size = button1.BackgroundImage.Size;

   // Set the button's TabIndex and TabStop properties.
   button1.TabIndex = 1;
   button1.TabStop = true;

   // Add a delegate to handle the Click event.
   button1.Click += new System.EventHandler(this.button1_Click);

   // Add the button to the form.
   this.Controls.Add(button1);
}
   // Add a button to a form and set some of its common properties.
private:
   void AddMyButton()
   {
      // Create a button and add it to the form.
      Button^ button1 = gcnew Button;

      // Anchor the button to the bottom right corner of the form
      button1->Anchor = static_cast<AnchorStyles>(AnchorStyles::Bottom | AnchorStyles::Right);

      // Assign a background image.
      button1->BackgroundImage = imageList1->Images[ 0 ];

      // Specify the layout style of the background image. Tile is the default.
      button1->BackgroundImageLayout = ImageLayout::Center;

      // Make the button the same size as the image.
      button1->Size = button1->BackgroundImage->Size;

      // Set the button's TabIndex and TabStop properties.
      button1->TabIndex = 1;
      button1->TabStop = true;

      // Add a delegate to handle the Click event.
      button1->Click += gcnew System::EventHandler( this, &Form1::button1_Click );

      // Add the button to the form.
      this->Controls->Add( button1 );
   }
// Add a button to a form and set some of its common properties.
private void AddMyButton()
{
    // Create a button and add it to the form.
    Button button1 = new Button();
    // Anchor the button to the bottom right corner of the form
    button1.set_Anchor(AnchorStyles.Bottom | AnchorStyles.Right);
    // Assign a background image.
    button1.set_BackgroundImage(imageList1.get_Images().get_Item(0));
    // Specify the layout style of the background image. Tile is the 
    // default.
    button1.set_BackgroundImageLayout(ImageLayout.Center);
    // Make the button the same size as the image.
    button1.set_Size(button1.get_BackgroundImage().get_Size());
    // Set the button's TabIndex and TabStop properties.
    button1.set_TabIndex(1);
    button1.set_TabStop(true);
    // Add a delegate to handle the Click event.
    button1.add_Click(new System.EventHandler(this.button1_Click));
    // Add the button to the form.
    this.get_Controls().Add(button1);
} //AddMyButton

플랫폼

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

.NET Framework에서 모든 플래폼의 모든 버전을 지원하지는 않습니다. 지원되는 버전의 목록은 시스템 요구 사항을 참조하십시오.

버전 정보

.NET Framework

2.0, 1.1, 1.0에서 지원

.NET Compact Framework

2.0에서 지원

참고 항목

참조

System.Windows.Forms 네임스페이스
Anchor