Control.Size Properti

Definisi

Mendapatkan atau mengatur tinggi dan lebar kontrol.

public:
 property System::Drawing::Size Size { System::Drawing::Size get(); void set(System::Drawing::Size value); };
public System.Drawing.Size Size { get; set; }
member this.Size : System.Drawing.Size with get, set
Public Property Size As Size

Nilai Properti

Size yang mewakili tinggi dan lebar kontrol dalam piksel.

Contoh

Contoh kode berikut menambahkan Button ke formulir dan mengatur beberapa properti umumnya. Contoh jangkar tombol ke sudut kanan bawah formulir sehingga mempertahankan posisi relatifnya saat formulir diubah ukurannya. Selanjutnya mengatur BackgroundImage dan mengubah ukuran tombol ke ukuran yang sama dengan Image. Contoh kemudian mengatur ke TabStoptrue dan mengatur TabIndex properti . Terakhir, ini menambahkan penanganan aktivitas untuk menangani Click peristiwa tombol. Contoh ini mengharuskan Anda memiliki nama ImageListimageList1.

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

Keterangan

Size Karena kelas adalah jenis nilai (Structure di Visual Basic, struct di Visual C#), kelas dikembalikan oleh nilai, yang berarti mengakses properti mengembalikan salinan ukuran kontrol. Jadi, menyesuaikan Width properti atau Height yang Size dikembalikan dari properti ini tidak akan memengaruhi Width atau Height kontrol. Untuk menyesuaikan Width atau Height kontrol, Anda harus mengatur properti atau Height kontrolWidth, atau mengatur Size properti dengan baru Size.

Catatan

Untuk mempertahankan performa yang lebih baik, jangan atur Size kontrol di konstruktornya. Metode yang disukai adalah mengganti properti DefaultSize .

Catatan

Pada sistem Windows Server 2003, ukuran dibatasi Form oleh lebar dan tinggi piksel maksimum monitor.

Berlaku untuk

Lihat juga