DataGridViewColumnCollection 클래스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
DataGridViewColumn 컨트롤에 있는 DataGridView 개체의 컬렉션을 나타냅니다.
public ref class DataGridViewColumnCollection : System::Windows::Forms::BaseCollection, System::Collections::IList
[System.ComponentModel.ListBindable(false)]
public class DataGridViewColumnCollection : System.Windows.Forms.BaseCollection, System.Collections.IList
[<System.ComponentModel.ListBindable(false)>]
type DataGridViewColumnCollection = class
inherit BaseCollection
interface IList
interface ICollection
interface IEnumerable
Public Class DataGridViewColumnCollection
Inherits BaseCollection
Implements IList
- 상속
- 특성
- 구현
예제
다음 코드 예제에서는이 형식의 사용을 보여 줍니다.
private DataGridView dataGridView1 = new DataGridView();
private void AddColorColumn()
{
DataGridViewComboBoxColumn comboBoxColumn =
new DataGridViewComboBoxColumn();
comboBoxColumn.Items.AddRange(
Color.Red, Color.Yellow, Color.Green, Color.Blue);
comboBoxColumn.ValueType = typeof(Color);
dataGridView1.Columns.Add(comboBoxColumn);
dataGridView1.EditingControlShowing +=
new DataGridViewEditingControlShowingEventHandler(
dataGridView1_EditingControlShowing);
}
private void dataGridView1_EditingControlShowing(object sender,
DataGridViewEditingControlShowingEventArgs e)
{
ComboBox combo = e.Control as ComboBox;
if (combo != null)
{
// Remove an existing event-handler, if present, to avoid
// adding multiple handlers when the editing control is reused.
combo.SelectedIndexChanged -=
new EventHandler(ComboBox_SelectedIndexChanged);
// Add the event handler.
combo.SelectedIndexChanged +=
new EventHandler(ComboBox_SelectedIndexChanged);
}
}
private void ComboBox_SelectedIndexChanged(object sender, EventArgs e)
{
((ComboBox)sender).BackColor = (Color)((ComboBox)sender).SelectedItem;
}
Private WithEvents dataGridView1 As New DataGridView()
Private Sub AddColorColumn()
Dim comboBoxColumn As New DataGridViewComboBoxColumn()
comboBoxColumn.Items.AddRange( _
Color.Red, Color.Yellow, Color.Green, Color.Blue)
comboBoxColumn.ValueType = GetType(Color)
dataGridView1.Columns.Add(comboBoxColumn)
End Sub
Private Sub dataGridView1_EditingControlShowing(ByVal sender As Object, _
ByVal e As DataGridViewEditingControlShowingEventArgs) _
Handles dataGridView1.EditingControlShowing
Dim combo As ComboBox = CType(e.Control, ComboBox)
If (combo IsNot Nothing) Then
' Remove an existing event-handler, if present, to avoid
' adding multiple handlers when the editing control is reused.
RemoveHandler combo.SelectedIndexChanged, _
New EventHandler(AddressOf ComboBox_SelectedIndexChanged)
' Add the event handler.
AddHandler combo.SelectedIndexChanged, _
New EventHandler(AddressOf ComboBox_SelectedIndexChanged)
End If
End Sub
Private Sub ComboBox_SelectedIndexChanged( _
ByVal sender As Object, ByVal e As EventArgs)
Dim comboBox1 As ComboBox = CType(sender, ComboBox)
comboBox1.BackColor = _
CType(CType(sender, ComboBox).SelectedItem, Color)
End Sub
설명
컨트롤의 속성을 통해 이 클래스의 instance 검색할 ColumnsDataGridView 수 있습니다. 컬렉션은 속성을 통해 컨트롤에 대한 참조를 DataGridView 유지 관리합니다.
생성자
DataGridViewColumnCollection(DataGridView) |
지정된 DataGridViewColumnCollection에 대한 DataGridView 클래스의 새 인스턴스를 초기화합니다. |
속성
Count |
컬렉션의 총 요소 수를 가져옵니다. (다음에서 상속됨 BaseCollection) |
DataGridView |
컬렉션에서 열 관련 작업이 수행되는 DataGridView를 가져옵니다. |
IsReadOnly |
컬렉션이 읽기 전용인지를 나타내는 값을 가져옵니다. (다음에서 상속됨 BaseCollection) |
IsSynchronized |
ICollection에 대한 액세스가 동기화되는지 여부를 나타내는 값을 가져옵니다. (다음에서 상속됨 BaseCollection) |
Item[Int32] |
컬렉션의 지정된 인덱스에서 열을 가져오거나 설정합니다. |
Item[String] |
컬렉션의 지정된 열 이름을 가져오거나 설정합니다. |
List |
BaseCollection 인스턴스에 포함된 요소의 목록을 가져옵니다. |
SyncRoot |
BaseCollection에 대한 액세스를 동기화하는 데 사용할 수 있는 개체를 가져옵니다. (다음에서 상속됨 BaseCollection) |
메서드
이벤트
CollectionChanged |
컬렉션이 변경될 때 발생합니다. |
명시적 인터페이스 구현
ICollection.CopyTo(Array, Int32) |
대상 배열의 지정된 인덱스에서 시작하여 컬렉션의 전체 내용을 호환되는 1차원 Array에 복사합니다. |
ICollection.Count |
컬렉션의 요소 수를 가져옵니다. |
ICollection.IsSynchronized |
컬렉션에 대한 액세스가 동기화되었는지 여부를 나타내는 값을 가져옵니다. |
ICollection.SyncRoot |
컬렉션에 대한 액세스를 동기화하는 데 사용할 수 있는 개체를 가져옵니다. |
IEnumerable.GetEnumerator() |
컬렉션을 반복하는 열거자를 반환합니다. |
IList.Add(Object) |
컬렉션의 끝에 개체를 추가합니다. |
IList.Clear() |
컬렉션에서 모든 요소를 제거합니다. |
IList.Contains(Object) |
개체가 컬렉션에 있는지 여부를 확인합니다. |
IList.IndexOf(Object) |
컬렉션에 있는 특정 항목의 인덱스를 확인합니다. |
IList.Insert(Int32, Object) |
컬렉션에서 지정한 인덱스에 요소를 삽입합니다. |
IList.IsFixedSize |
컬렉션의 크기가 고정되어 있는지를 나타내는 값을 가져옵니다. |
IList.IsReadOnly |
컬렉션이 읽기 전용인지를 나타내는 값을 가져옵니다. |
IList.Item[Int32] |
지정한 인덱스에 있는 요소를 가져오거나 설정합니다. |
IList.Remove(Object) |
컬렉션에서 첫 번째 지정된 개체를 제거합니다. |
IList.RemoveAt(Int32) |
컬렉션에서 지정된 인덱스의 요소를 제거합니다. |
확장 메서드
Cast<TResult>(IEnumerable) |
IEnumerable의 요소를 지정된 형식으로 캐스팅합니다. |
OfType<TResult>(IEnumerable) |
지정된 형식에 따라 IEnumerable의 요소를 필터링합니다. |
AsParallel(IEnumerable) |
쿼리를 병렬화할 수 있도록 합니다. |
AsQueryable(IEnumerable) |
IEnumerable을 IQueryable로 변환합니다. |
적용 대상
추가 정보
.NET