private void dataGridView1_CellClick(object sender, DataGridViewCellEventArgs e)
{
OyunÇalıştırma = dataGridView1.CurrentRow.Cells[2].Value.ToString();
OyunÇalıştırmaİsmi = dataGridView1.CurrentRow.Cells[1].Value.ToString();
if (OyunÇalıştırma == "")
{
LabelOyunİsmi.Text = "Lütfen listeden Bir Oyun Seçiniz.";
}
else
{
LabelOyunİsmi.Text = OyunÇalıştırmaİsmi;
Process.Start(OyunÇalıştırma);
}
}