Form1.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
textBox1.Text = "Bahadır ŞAHİN";
}
private void btnFocus_Click(object sender, EventArgs e)
{
textBox1.Text = "Bahadır ŞAHİN";
//textbox taki stringin hepsini seçiyoruz.
textBox1.Focus();
}
private void btnSec_Click(object sender, EventArgs e)
{
//9. karakterden sonra 3 karakter seçiyoruz.
textBox1.Select(9, 3);
}
private void btnReplace_Click(object sender, EventArgs e)
{
//textbox taki Ş harfini S harfi ile değiştiriyoruz.
textBox1.Text = textBox1.Text.Replace("Ş", "S");
}
private void btnInsert_Click(object sender, EventArgs e)
{
//Insert metodu ile textbox taki stringe ekleme yapıyoruz.
textBox1.Text = textBox1.Text.Insert(textBox1.Text.Length , "Merhaba Dünya...");
}
}
}
Bir makalenin daha sonuna geldik. Bir sonraki makalede görüşmek dileğiyle. Hoşçakalın. Bahadır ŞAHİN
0 comments:
Yorum Gönder