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 WindowsFormsApp7
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
comboBox1.SelectedText = "10";
comboBox2.SelectedText = "Tahoma";
}
private void label2_Click(object sender, EventArgs e)
{
}
private void button4_Click(object sender, EventArgs e)
{
//yazı boyutu 2 arttırma
textBox1.Font = new Font(textBox1.Font.FontFamily, textBox1.Font.Size+2);
}
private void button1_Click_1(object sender, EventArgs e)
{
//Kalın Yazı
textBox1.Font = new Font(textBox1.Font.FontFamily,textBox1.Font.Size, FontStyle.Bold);
}
private void comboBox2_SelectedIndexChanged(object sender, EventArgs e)
{
//Font Değiştirme
string font = comboBox2.SelectedItem.ToString();
textBox1.Font = new Font(font,textBox1.Font.Size);
}
private void button2_Click(object sender, EventArgs e)
{
//İtalik
textBox1.Font = new Font(textBox1.Font.FontFamily, textBox1.Font.Size, FontStyle.Italic);
}
private void button3_Click(object sender, EventArgs e)
{
//Altı Cizgili
textBox1.Font = new Font(textBox1.Font.FontFamily, textBox1.Font.Size, FontStyle.Underline);
}
private void button6_Click(object sender, EventArgs e)
{
//Normal
textBox1.Font = new Font(textBox1.Font.FontFamily, textBox1.Font.Size, FontStyle.Regular);
}
private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
{
//Yazı Boyutu
int boyut = Convert.ToInt32(comboBox1.SelectedItem);
textBox1.Font = new Font(textBox1.Font.FontFamily,boyut);
}
private void button5_Click(object sender, EventArgs e)
{
//yazı boyutu 2 azaltma
textBox1.Font = new Font(textBox1.Font.FontFamily, textBox1.Font.Size - 2);
}
private void radioButton1_CheckedChanged(object sender, EventArgs e)
{
//yazı mavi yap
textBox1.ForeColor =Color.Blue;
}
private void radioButton3_CheckedChanged(object sender, EventArgs e)
{
//yazı yeşil yap
textBox1.ForeColor = Color.Green;
}
private void radioButton4_CheckedChanged(object sender, EventArgs e)
{
//yazı sarı yap
textBox1.ForeColor = Color.Yellow;
}
private void radioButton2_CheckedChanged(object sender, EventArgs e)
{
//yazı kırmızı yap
textBox1.ForeColor = Color.Red;
}
}
}