Home » » C# – textbox’a tıklanınca textbox temizlensin

C# – textbox’a tıklanınca textbox temizlensin


using System;

using System.Collections.Generic;

using System.ComponentModel;

using System.Data;

using System.Drawing;

using System.Linq;//www.gorselprogramlama.com

using System.Text;

using System.Windows.Forms;

namespace WindowsFormsApplication4

{

public partial class Form1 : Form

{

public Form1()

{

InitializeComponent();

}

private void textBox1_Click(object sender, EventArgs e)

{

textBox1.Clear();

}

private void Form1_Load(object sender, EventArgs e)

{

textBox1.Text = "deneme";

}

}

}
 
Support : Vaganzi
Copyright © 2013. Visual Studio Kod Bankası - All Rights Reserved
Powered By Vaganzi