DataGridViewCell.MouseClickUnsharesRow(DataGridViewCellMouseEventArgs) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
포인터가 행의 셀에 있는 동안 마우스 단추를 클릭하는 경우 행을 공유하지 않을 것인지 여부를 나타냅니다.
protected:
virtual bool MouseClickUnsharesRow(System::Windows::Forms::DataGridViewCellMouseEventArgs ^ e);
protected virtual bool MouseClickUnsharesRow (System.Windows.Forms.DataGridViewCellMouseEventArgs e);
abstract member MouseClickUnsharesRow : System.Windows.Forms.DataGridViewCellMouseEventArgs -> bool
override this.MouseClickUnsharesRow : System.Windows.Forms.DataGridViewCellMouseEventArgs -> bool
Protected Overridable Function MouseClickUnsharesRow (e As DataGridViewCellMouseEventArgs) As Boolean
매개 변수
이벤트 데이터를 포함하는 DataGridViewCellMouseEventArgs입니다.
반환
행을 공유하지 않으면 true
이고, 그렇지 않으면 false
입니다. 기본 DataGridViewCell 클래스는 항상 false
를 반환합니다.
설명
메서드는 MouseClickUnsharesRow 메서드 바로 앞에 호출됩니다 OnMouseClick . 에 대한 호출 OnMouseClick 이 셀을 포함하는 행의 공유를 해제하는 효과가 있는 경우 를 반환 true
해야 합니다. 그렇지 않으면 를 반환 false
해야 합니다.
행 공유에 대한 자세한 내용은 Windows Forms DataGridView 컨트롤의 크기를 조정하는 최선의 방법을 참조하세요.
적용 대상
추가 정보
- DataGridView
- OnMouseClick(DataGridViewCellMouseEventArgs)
- MouseDoubleClickUnsharesRow(DataGridViewCellMouseEventArgs)
- MouseDownUnsharesRow(DataGridViewCellMouseEventArgs)
- MouseEnterUnsharesRow(Int32)
- MouseLeaveUnsharesRow(Int32)
- MouseMoveUnsharesRow(DataGridViewCellMouseEventArgs)
- MouseUpUnsharesRow(DataGridViewCellMouseEventArgs)
- DataGridViewCellMouseEventArgs
- Windows Forms DataGridView 컨트롤의 크기 조정에 대한 모범 사례
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET