SelectedCellsChangedEventArgs 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
初始化 SelectedCellsChangedEventArgs 類別的新執行個體。
多載
SelectedCellsChangedEventArgs(List<DataGridCellInfo>, List<DataGridCellInfo>) |
使用已加入和移除所指定儲存格後的選取範圍,初始化 SelectedCellsChangedEventArgs 類別的新執行個體。 |
SelectedCellsChangedEventArgs(ReadOnlyCollection<DataGridCellInfo>, ReadOnlyCollection<DataGridCellInfo>) |
使用已加入和移除所指定儲存格後的選取範圍,初始化 SelectedCellsChangedEventArgs 類別的新執行個體。 |
SelectedCellsChangedEventArgs(List<DataGridCellInfo>, List<DataGridCellInfo>)
使用已加入和移除所指定儲存格後的選取範圍,初始化 SelectedCellsChangedEventArgs 類別的新執行個體。
public:
SelectedCellsChangedEventArgs(System::Collections::Generic::List<System::Windows::Controls::DataGridCellInfo> ^ addedCells, System::Collections::Generic::List<System::Windows::Controls::DataGridCellInfo> ^ removedCells);
public SelectedCellsChangedEventArgs (System.Collections.Generic.List<System.Windows.Controls.DataGridCellInfo> addedCells, System.Collections.Generic.List<System.Windows.Controls.DataGridCellInfo> removedCells);
new System.Windows.Controls.SelectedCellsChangedEventArgs : System.Collections.Generic.List<System.Windows.Controls.DataGridCellInfo> * System.Collections.Generic.List<System.Windows.Controls.DataGridCellInfo> -> System.Windows.Controls.SelectedCellsChangedEventArgs
Public Sub New (addedCells As List(Of DataGridCellInfo), removedCells As List(Of DataGridCellInfo))
參數
- addedCells
- List<DataGridCellInfo>
加入至選取範圍的儲存格。
- removedCells
- List<DataGridCellInfo>
從選取範圍中移除的儲存格。
例外狀況
addedCells
或 removedCells
為 null
。
備註
輸入參數不能是 null
,但可以是空的。
適用於
SelectedCellsChangedEventArgs(ReadOnlyCollection<DataGridCellInfo>, ReadOnlyCollection<DataGridCellInfo>)
使用已加入和移除所指定儲存格後的選取範圍,初始化 SelectedCellsChangedEventArgs 類別的新執行個體。
public:
SelectedCellsChangedEventArgs(System::Collections::ObjectModel::ReadOnlyCollection<System::Windows::Controls::DataGridCellInfo> ^ addedCells, System::Collections::ObjectModel::ReadOnlyCollection<System::Windows::Controls::DataGridCellInfo> ^ removedCells);
public SelectedCellsChangedEventArgs (System.Collections.ObjectModel.ReadOnlyCollection<System.Windows.Controls.DataGridCellInfo> addedCells, System.Collections.ObjectModel.ReadOnlyCollection<System.Windows.Controls.DataGridCellInfo> removedCells);
new System.Windows.Controls.SelectedCellsChangedEventArgs : System.Collections.ObjectModel.ReadOnlyCollection<System.Windows.Controls.DataGridCellInfo> * System.Collections.ObjectModel.ReadOnlyCollection<System.Windows.Controls.DataGridCellInfo> -> System.Windows.Controls.SelectedCellsChangedEventArgs
Public Sub New (addedCells As ReadOnlyCollection(Of DataGridCellInfo), removedCells As ReadOnlyCollection(Of DataGridCellInfo))
參數
- addedCells
- ReadOnlyCollection<DataGridCellInfo>
加入至選取範圍的儲存格。
- removedCells
- ReadOnlyCollection<DataGridCellInfo>
從選取範圍中移除的儲存格。
例外狀況
addedCells
或 removedCells
為 null
。
備註
輸入參數不能是 null
,但可以是空的。