Combobox ta Font Gösterimi
Bu örnekte combobox nesnesinde font gösterimi konusunu işleyeceğiz. Formunuza 1 adet label ve combobox ekleyin. Aşağıdaki şekili inceleyin.
Şekil 1
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace WindowsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
label1.Text = "aAbBcCdD";
FontFamily[] fontlar = FontFamily.Families;
int i;
for (i = 0; i <= 10; i++)
{
comboBox1.Items.Add(fontlar[i].Name);
comboBox1.SelectedIndex = 0;
}
}
private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
{
label1.Font = new Font(comboBox1.Text, 12 , FontStyle.Regular);
}
}
}
//Bir sonraki makalede görüşmek üzere...Bahadır