WPF備忘錄(3)如何從 Datagrid 中獲得單元格的內容與 使用值轉換器進行繫結資料的轉換IValueConverter
一、如何從 Datagrid 中獲得單元格的內容
DataGrid 屬於一種 ItemsControl, 因此,它有 Items 屬性並且用ItemContainer 封裝它的 items.
但是,WPF中的DataGrid 不同於Windows Forms中的 DataGridView。 在DataGrid的Items集合中,DataGridRow
是一個Item,但是,它裡面的單元格卻是被封裝在 DataGridCellsPresenter 的容器中;因此,我們不能使用
像DataGridView.Rows.Cells 這樣的語句去獲得單元格的內容。但是,在WPF中我們可以通過可視樹(VisualTree)
去進入到控制元件“內部“, 那麼,我們當然可以通過VisualTree進入DataGrid中的DataGridRow 和 DataGridCellsPresenter,
並且得到在DataGridCellsPresenter中的例項, 大家可以通過以下的程式碼遍歷VisualTree
DataGridRow rowContainer = (DataGridRow)dataGrid1.ItemContainerGenerator.ContainerFromIndex(rowIndex); DataGridCellsPresenter presenter = GetVisualChild<DataGridCellsPresenter>(rowContainer); DataGridCell cell = (DataGridCell)presenter.ItemContainerGenerator.ContainerFromIndex(columnIndex); // ... public static T GetVisualChild<T>(Visual parent) where T : 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 as T; if (child == null) child = GetVisualChild<T>(v); else break; } return child; }
二、WPF 使用值轉換器進行繫結資料的轉換IValueConverter
有的時候,我們想讓繫結的資料以其他的格式顯示出來,或者轉換成其他的型別,我們可以
使用值轉換器來實現.比如我資料中儲存了一個檔案的路徑”c:abcabc.exe”,但是我想讓他在前臺
列表中顯示為”abc.exe”.首先我們先建一個IvalueConverter介面的類.
class GetFileName : IValueConverter { //Convert方法用來將資料轉換成我們想要的顯示的格式 public object Convert(object value, Type targetType, object parameter, CultureInfo culture) { FileInfo fi = new FileInfo((string)value); return fi.Name; } //ConvertBack方法將顯示值轉換成原來的格式,因為我不需要反向轉換,所以直接丟擲個異常 public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) { throw new NotImplementedException(); } }
為了使用這個轉換器,我們要將專案的名稱空間對映到xaml中,比如我專案名字為自動更新,用local作為空間名稱字首
xmlns:local="clr-namespace:名稱空間"
為了使用的更方便,我們在Resources集合中建立一個轉換器物件
<Window.Resources>
<local:GetFileName x:Key="GetFileName"></local:GetFileName>
</Window.Resources>
現在我們去繫結資料的地方使用StaticResource來指向轉換器
<TextBlock>
<TextBlock.Text>
<Binding Path="FileName">
<Binding.Converter>
<local:GetFileName></local:GetFileName>
</Binding.Converter>
</Binding>
</TextBlock.Text>
</TextBlock>
或者這樣使用:
<TextBlock Text="{Binding Path=FileName,Converter={StaticResource GetFileName}}" />