SelectedCellsChangedEventArgs Construtores
Definição
Importante
Algumas informações dizem respeito a um produto pré-lançado que pode ser substancialmente modificado antes de ser lançado. A Microsoft não faz garantias, de forma expressa ou implícita, em relação à informação aqui apresentada.
Inicializa uma nova instância da SelectedCellsChangedEventArgs classe.
Sobrecargas
| Name | Description |
|---|---|
| SelectedCellsChangedEventArgs(List<DataGridCellInfo>, List<DataGridCellInfo>) |
Inicializa uma nova instância da SelectedCellsChangedEventArgs classe com as células especificadas adicionadas e removidas da seleção. |
| SelectedCellsChangedEventArgs(ReadOnlyCollection<DataGridCellInfo>, ReadOnlyCollection<DataGridCellInfo>) |
Inicializa uma nova instância da SelectedCellsChangedEventArgs classe com as células especificadas adicionadas e removidas da seleção. |
SelectedCellsChangedEventArgs(List<DataGridCellInfo>, List<DataGridCellInfo>)
Inicializa uma nova instância da SelectedCellsChangedEventArgs classe com as células especificadas adicionadas e removidas da seleção.
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))
Parâmetros
- addedCells
- List<DataGridCellInfo>
As células acrescentavam à seleção.
- removedCells
- List<DataGridCellInfo>
As células removidas da seleção.
Exceções
addedCells ou removedCells é null.
Observações
Os parâmetros de entrada não podem ser null, mas podem estar vazios.
Aplica-se a
SelectedCellsChangedEventArgs(ReadOnlyCollection<DataGridCellInfo>, ReadOnlyCollection<DataGridCellInfo>)
Inicializa uma nova instância da SelectedCellsChangedEventArgs classe com as células especificadas adicionadas e removidas da seleção.
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))
Parâmetros
- addedCells
- ReadOnlyCollection<DataGridCellInfo>
As células acrescentavam à seleção.
- removedCells
- ReadOnlyCollection<DataGridCellInfo>
As células removidas da seleção.
Exceções
addedCells ou removedCells é null.
Observações
Os parâmetros de entrada não podem ser null, mas podem estar vazios.