Hello everyone. I am Dr. Furkan Gözükara. PhD Computer Engineer. SECourses is a dedicated YouTube channel for the following topics : Tech, AI, News, Science, Robotics, Singularity, ComfyUI, SwarmUI, ML, Artificial Intelligence, Humanoid Robots, Wan 2.2, FLUX, Krea, Qwen Image, VLMs, Stable Diffusion
private void DataGrid_MouseLeftButtonUp(object sender, MouseButtonEventArgs e) { // tıklanan hücrenin satır ve sütun indekslerini alın int columnIndex = myDataGrid.CurrentCell.Column.DisplayIndex; int rowIndex = myDataGrid.Items.IndexOf(myDataGrid.CurrentItem);
// burada tıklanan hücrenin içeriğini değiştirin ya da başka bir işlem yapın // ...
// tıklamayı işleyip işlemediğinizi kontrol etmek için bir mesaj kutusu görüntüleyin MessageBox.Show(string.Format("Tıklanan hücre: satır {0}, sütun {1}", rowIndex, columnIndex)); }