textbox’a değer girilmediği zaman tıklanabilir olmasın — C#
[code labg=”csharp”]
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;//www.gorselprogramlama.com
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace textbox_giris_varsa_buton_tiklanabilir
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();//www.gorselprogramlama.com
}
private void textBox1_TextChanged(object sender, EventArgs e)
{
button1.Enabled = true;//www.gorselprogramlama.com
}
private void textBox1_Leave(object sender, EventArgs e)
{
button1.Enabled = false;
}//www.gorselprogramlama.com
}
}
[/code]



