Tags-Etiketler
Bu kısımda sitemizde etiketlenmiş makaleleri toplu olarak bulabilirsiniz...
[ font ] /
Makaleler-Article(s)
font ile ilgili toplam 7 makale bulundu ! (A total of 7 article(s) about font was(were) found in all of articles!)
Article |
---|
DBGrid Nesnesindeki Sütun ve Satırların Font Stilini Değiştirmek Merhaba arkadaşlar bu makalemizde DBGrid nesnemizin sütun ve satırlarının font stillerini değiştireceğiz. Formumuza 1 adet DataSource ve ADOTable ekliyoruz. ADOTable nesnesinin ConnectionString kısmından Access veritabanımızı seçiyoruz. | GridView da Mouse İmleci Üzerindeki Satırın Stilini Değiştirmek Merhaba arkadaşlar bu makalemizde GridView nesnesinde Mouse imlecinin üzerine geldiği satırın font özelliklerini, satırın arka plan rengini değiştireceğiz. Bun un için javascript kullanacağız. jquery.min.js javascript dosyasını projenizin bulunduğu klasöre ekleyin. | DataGridView Seçili Satırın Fontunu, Rengini Değiştirme Merhaba arkadaşlar. Bu makalemizde seçili satırın arkaplan rengini ve fontunu değiştireceğiz. | 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.
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 | fontDialog Kullanımı Formunuza 1 adet label, button ve fontDialog ekleyin. Bu örnekte labelimizin font değerlerini değiştireceğiz. Aşağıdaki şekilleri inceleyin...Bahadirsa
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 button1_Click(object sender, EventArgs e)
{
if (fontDialog1.ShowDialog() == System.Windows.Forms.DialogResult.OK)
{
label1.Font = fontDialog1.Font;
}
}
}
}
Bir sonraki makalede görüşmek üzere...Bahadirsa | NumericUpDown ile Label Font Boyutunu Değiştirme Bu örnekte numericupdown kullanarak, font boyutunu istediğimiz şekilde büyüteceğiz.
Aşağıdaki şekli inceleyin.
Public Class Form1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
NumericUpDown1.Minimum = 0
NumericUpDown1.Maximum = 100
Label1.Text = "Merhaba Dünya..."
End Sub
Private Sub NumericUpDown1_ValueChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles NumericUpDown1.ValueChanged
Dim deger As Integer
deger = NumericUpDown1.Value
Label1.Font = New Font("Times New Roman", deger, FontStyle.Regular)
End Sub
End Class
Bir sonraki makalede görüşmek üzere. Bahadır ŞAHİN | Combobox ta Font İsimlerini Gösterme Bu örnekte Combobox ta font ismlerini göstereceğiz. Ayrıca Combobox ta seçilen item e göre Labelimiz o font özelliklerini alacak...Bahadirsa
Forma yazılacak kodlar:
Public Class Form1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Me.Text = "Font Gösterimi"
Label1.Text = "aAbBcCdD"
Dim fontlar As FontFamily() = FontFamily.Families
Dim i As Integer
For i = 0 To UBound(fontlar)
ComboBox1.Items.Add(fontlar(i).Name)
Next
ComboBox1.SelectedIndex = 0
End Sub
Private Sub ComboBox1_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ComboBox1.SelectedIndexChanged
Label1.Font = New Font(ComboBox1.SelectedItem.ToString, 12, FontStyle.Regular)
End Sub
End Class
‘Bir sonraki makalede buluşmak üzere...Bahadirsa |
|
        Sitede yayınlanan makaleleri
Blog sitemizden de takip edebilirsiniz.
Sitemizdeki makaleleri RSS olarak takip edebilirsiniz.