20 Ekim 2020 Salı

C# CheckBox

 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 WindowsFormsApp17

{

    public partial class Form1 : Form

    {

        public Form1()

        {

            InitializeComponent();

        }


        private void Kalıntxt_CheckedChanged(object sender, EventArgs e)//kalın

        {

            textBox1.Font = new Font(textBox1.Font.Name, textBox1.Font.Size, textBox1.Font.Style ^ FontStyle.Bold);

        }


        private void checkBox2_CheckedChanged(object sender, EventArgs e)//Eğik

        {

            textBox1.Font = new Font(textBox1.Font.Name, textBox1.Font.Size, textBox1.Font.Style ^ FontStyle.Italic);

        }


        private void checkBox3_CheckedChanged(object sender, EventArgs e)//Altı Çizili

        {

            textBox1.Font = new Font(textBox1.Font.Name, textBox1.Font.Size, textBox1.Font.Style ^ FontStyle.Underline);

        }

    }

}



Hiç yorum yok:

Yorum Gönder