日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > C# >内容正文

C#

datagrid wpf 获取选中_c# WPF DataGrid 获取选中单元格信息

發布時間:2025/3/8 C# 33 豆豆
生活随笔 收集整理的這篇文章主要介紹了 datagrid wpf 获取选中_c# WPF DataGrid 获取选中单元格信息 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

private void Button_Click(objectsender, RoutedEventArgs e)

{

DataGridCell cell= dg.GetCell(1, 2);

TextBlock tb= cell.Content asTextBlock;

Console.WriteLine(tb.Text);

}public static classDataGridExtension

{///

///獲取DataGrid控件單元格///

/// DataGrid控件

/// 單元格所在的行號

/// 單元格所在的列號

/// 指定的單元格

public static DataGridCell GetCell(this DataGrid dataGrid, int rowIndex, intcolumnIndex)

{

DataGridRow rowContainer=dataGrid.GetRow(rowIndex);if (rowContainer != null)

{

DataGridCellsPresenter presenter= GetVisualChild(rowContainer);

DataGridCell cell=(DataGridCell)presenter.ItemContainerGenerator.ContainerFromIndex(columnIndex);if (cell == null)

{

dataGrid.ScrollIntoView(rowContainer, dataGrid.Columns[columnIndex]);

cell=(DataGridCell)presenter.ItemContainerGenerator.ContainerFromIndex(columnIndex);

}returncell;

}return null;

}///

///獲取DataGrid的行///

/// DataGrid控件

/// DataGrid行號

/// 指定的行號

public static DataGridRow GetRow(this DataGrid dataGrid, introwIndex)

{

DataGridRow rowContainer=(DataGridRow)dataGrid.ItemContainerGenerator.ContainerFromIndex(rowIndex);if (rowContainer == null)

{

dataGrid.UpdateLayout();

dataGrid.ScrollIntoView(dataGrid.Items[rowIndex]);

rowContainer=(DataGridRow)dataGrid.ItemContainerGenerator.ContainerFromIndex(rowIndex);

}returnrowContainer;

}///

///獲取父可視對象中第一個指定類型的子可視對象///

/// 可視對象類型

/// 父可視對象

/// 第一個指定類型的子可視對象

public static T GetVisualChild(Visual parent) whereT : Visual

{

T child= default(T);int numVisuals =VisualTreeHelper.GetChildrenCount(parent);for (int i = 0; i < numVisuals; i++)

{

Visual v=(Visual)VisualTreeHelper.GetChild(parent, i);

child= v asT;if (child == null)

{

child= GetVisualChild(v);

}if (child != null)

{break;

}

}returnchild;

}

}

總結

以上是生活随笔為你收集整理的datagrid wpf 获取选中_c# WPF DataGrid 获取选中单元格信息的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。