IContainerControl 인터페이스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
다른 컨트롤에 대한 부모로 동작할 컨트롤에 대한 기능을 제공합니다.
public interface class IContainerControl
public interface IContainerControl
type IContainerControl = interface
Public Interface IContainerControl
- 파생
예제
다음 예제에서 상속 되는 ScrollableControl 클래스 및 구현을 IContainerControl 인터페이스입니다. 구현에 추가 되는 ActiveControl 속성 및 ActivateControl 메서드.
using namespace System;
using namespace System::Windows::Forms;
using namespace System::Drawing;
public ref class MyContainer: public ScrollableControl, public IContainerControl
{
private:
Control^ activeControl;
public:
MyContainer()
{
// Make the container control Blue so it can be distinguished on the form.
this->BackColor = Color::Blue;
// Make the container scrollable.
this->AutoScroll = true;
}
property Control^ ActiveControl
{
// Add implementation to the IContainerControl.ActiveControl property.
virtual Control^ get()
{
return activeControl;
}
virtual void set( Control^ value )
{
// Make sure the control is a member of the ControlCollection.
if ( this->Controls->Contains( value ) )
{
activeControl = value;
}
}
}
// Add implementations to the IContainerControl.ActivateControl(Control) method.
virtual bool ActivateControl( Control^ active )
{
if ( this->Controls->Contains( active ) )
{
// Select the control and scroll the control into view if needed.
active->Select( );
this->ScrollControlIntoView( active );
this->activeControl = active;
return true;
}
return false;
}
};
using System;
using System.Windows.Forms;
using System.Drawing;
public class MyContainer : ScrollableControl, IContainerControl
{
private Control activeControl;
public MyContainer()
{
// Make the container control Blue so it can be distinguished on the form.
this.BackColor = Color.Blue;
// Make the container scrollable.
this.AutoScroll = true;
}
// Add implementation to the IContainerControl.ActiveControl property.
public Control ActiveControl
{
get
{
return activeControl;
}
set
{
// Make sure the control is a member of the ControlCollection.
if(this.Controls.Contains(value))
{
activeControl = value;
}
}
}
// Add implementations to the IContainerControl.ActivateControl(Control) method.
public bool ActivateControl(Control active)
{
if(this.Controls.Contains(active))
{
// Select the control and scroll the control into view if needed.
active.Select();
this.ScrollControlIntoView(active);
this.activeControl = active;
return true;
}
return false;
}
}
Imports System.Windows.Forms
Imports System.Drawing
Public Class MyContainerControl
Inherits ScrollableControl
Implements IContainerControl
Private myActiveControl As Control
Public Sub New()
' Make the container control Blue so it can be distinguished on the form.
Me.BackColor = Color.Blue
' Make the container scrollable.
Me.AutoScroll = True
End Sub
' Add implementation to the IContainerControl.ActiveControl property.
Public Property ActiveControl() As Control Implements IContainerControl.ActiveControl
Get
Return Me.myActiveControl
End Get
Set
' Make sure the control is a member of the ControlCollection.
If Me.Controls.Contains(value) Then
Me.myActiveControl = value
End If
End Set
End Property
' Add implementation to the IContainerControl.ActivateControl(Control) method.
public Function ActivateControl(active As Control) As Boolean Implements IContainerControl.ActivateControl
If Me.Controls.Contains(active) Then
' Select the control and scroll the control into view if needed.
active.Select()
Me.ScrollControlIntoView(active)
Me.myActiveControl = active
Return True
End If
Return False
End Function
End Class
구현자 참고
컨트롤 컬렉션을 부모로 만들 클래스에서 이 인터페이스를 구현합니다. 이 인터페이스의 멤버를 통해 자식 컨트롤을 활성화하거나 현재 활성 상태인 컨트롤을 확인할 수 있습니다. 클래스 ActivateControl(Control) 에서 구현되는 경우 매개 변수로 사용하고 Control 지정된 컨트롤을 활성화합니다. 이 속성은 ActiveControl 활성 상태인 컨트롤을 활성화하거나 검색합니다.
가장 일반적인 시나리오에서는 이 인터페이스를 직접 구현할 필요가 없습니다. 예를 들어 Windows 컨트롤 라이브러리 프로젝트를 만드는 경우 Visual Studio 초기 클래스를 생성합니다. 해당 클래스는 클래스에서 UserControl 상속되고 UserControl 자동으로 구현됩니다 IContainerControl .
속성
ActiveControl |
Container 컨트롤에 있는 활성 컨트롤을 가져오거나 설정합니다. |
메서드
ActivateControl(Control) |
지정된 컨트롤을 활성화합니다. |