SelectedCellsChangedEventArgs 생성자

정의

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 또는 removedCellsnull인 경우

설명

입력된 매개 변수 여야 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 또는 removedCellsnull인 경우

설명

입력된 매개 변수 여야 null, 아니지만 비어 있을 수 있습니다.

적용 대상