22 Ekim 2020 Perşembe

C# GrupBox

 using System;

using System.Collections.Generic;

using System.ComponentModel;

using System.Data;

using System.Drawing;

using System.Linq;

using System.Text;

using System.Threading.Tasks;

using System.Windows.Forms;


namespace WindowsFormsApp20

{

    public partial class Form1 : Form

    {

        public Form1()

        {

            InitializeComponent();

        }


        

        private void Form1_Load(object sender, EventArgs e)

        {

            //Kodla GroupBox nesnesi oluşturularak içerisine 1 adet label,1 adet de TextBox nesnesi ekleyelim

            GroupBox groupbox1 = new GroupBox();

            Label label1 = new Label();

            label1.Location = new Point(20, 30);

            label1.Text = "Adı Soyadı:";

            TextBox text1 = new TextBox();

            text1.Text = "ali yılmaz";

            text1.Location = new Point(150, 30);

            Controls.Add(groupBox1);

            groupBox1.FlatStyle = FlatStyle.Flat;

            groupBox1.AutoSize = true;//GroupBox içerisindeki nesnelere göre otomatik boyut alması için 

            //Aoutosize özelliğine true değerini verdik

            groupBox1.Left = groupBox1.Padding.Left + groupBox1.Margin.Left;//GropBox'ın yatay konumunu (Left) belirlemek için..

           //komut satırı ile yatay aralık değeri(Padding.Left) ile yatay kenar boşluklarını (Margin.Left) topladık

            groupBox1.Controls.Add(label1);

            groupBox1.Controls.Add(text1);

        }

    }

}



Hiç yorum yok:

Yorum Gönder