ByteViewer 클래스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
16진수, ANSI 및 유니코드 형식으로 바이트 배열을 표시합니다.
public ref class ByteViewer : System::Windows::Forms::Control
public ref class ByteViewer : System::Windows::Forms::TableLayoutPanel
public class ByteViewer : System.Windows.Forms.Control
public class ByteViewer : System.Windows.Forms.TableLayoutPanel
type ByteViewer = class
inherit Control
type ByteViewer = class
inherit TableLayoutPanel
Public Class ByteViewer
Inherits Control
Public Class ByteViewer
Inherits TableLayoutPanel
- 상속
- 상속
예제
다음 코드 예제에서는 Form 호스트는 ByteViewer 에서 컨트롤을 구성 하 고 제어 하는 인터페이스를 ByteViewer제공 합니다.
#using <System.Windows.Forms.dll>
#using <System.dll>
#using <System.Drawing.dll>
#using <System.Design.dll>
using namespace System;
using namespace System::Drawing;
using namespace System::Collections;
using namespace System::ComponentModel;
using namespace System::ComponentModel::Design;
using namespace System::Windows::Forms;
public ref class ByteViewerForm: public System::Windows::Forms::Form
{
private:
System::Windows::Forms::Button^ button1;
System::Windows::Forms::Button^ button2;
System::ComponentModel::Design::ByteViewer^ byteviewer;
public:
ByteViewerForm()
{
// Initialize the controls other than the ByteViewer.
InitializeForm();
// Initialize the ByteViewer.
byteviewer = gcnew ByteViewer;
byteviewer->Location = Point(8,46);
byteviewer->Size = System::Drawing::Size( 600, 338 );
byteviewer->Anchor = static_cast<AnchorStyles>(AnchorStyles::Left | AnchorStyles::Bottom | AnchorStyles::Top);
byteviewer->SetBytes( (array<Byte>^)Array::CreateInstance( Byte::typeid, 0 ) );
this->Controls->Add( byteviewer );
}
private:
// Show a file selection dialog and cues the byte viewer to
// load the data in a selected file.
void loadBytesFromFile( Object^ /*sender*/, EventArgs^ /*e*/ )
{
OpenFileDialog^ ofd = gcnew OpenFileDialog;
if ( ofd->ShowDialog() != ::DialogResult::OK )
return;
byteviewer->SetFile( ofd->FileName );
}
// Clear the bytes in the byte viewer.
void clearBytes( Object^ /*sender*/, EventArgs^ /*e*/ )
{
byteviewer->SetBytes( (array<Byte>^)Array::CreateInstance( Byte::typeid, 0 ) );
}
// Changes the display mode of the byte viewer according to the
// Text property of the RadioButton sender control.
void changeByteMode( Object^ sender, EventArgs^ /*e*/ )
{
System::Windows::Forms::RadioButton^ rbutton = dynamic_cast<System::Windows::Forms::RadioButton^>(sender);
DisplayMode mode;
if ( rbutton->Text->Equals( "ANSI" ) )
{
mode = DisplayMode::Ansi;
}
else
if ( rbutton->Text->Equals( "Hex" ) )
{
mode = DisplayMode::Hexdump;
}
else
if ( rbutton->Text->Equals( "Unicode" ) )
{
mode = DisplayMode::Unicode;
}
else
{
mode = DisplayMode::Auto;
}
// Sets the display mode.
byteviewer->SetDisplayMode( mode );
}
void InitializeForm()
{
this->SuspendLayout();
this->ClientSize = System::Drawing::Size( 680, 440 );
this->MinimumSize = System::Drawing::Size( 660, 400 );
this->Size = System::Drawing::Size( 680, 440 );
this->Name = "Byte Viewer Form";
this->Text = "Byte Viewer Form";
this->button1 = gcnew System::Windows::Forms::Button;
this->button1->Location = System::Drawing::Point( 8, 8 );
this->button1->Size = System::Drawing::Size( 190, 23 );
this->button1->Name = "button1";
this->button1->Text = "Set Bytes From File...";
this->button1->TabIndex = 0;
this->button1->Click += gcnew EventHandler( this, &ByteViewerForm::loadBytesFromFile );
this->Controls->Add( this->button1 );
this->button2 = gcnew System::Windows::Forms::Button;
this->button2->Location = System::Drawing::Point( 198, 8 );
this->button2->Size = System::Drawing::Size( 190, 23 );
this->button2->Name = "button2";
this->button2->Text = "Clear Bytes";
this->button2->Click += gcnew EventHandler( this, &ByteViewerForm::clearBytes );
this->button2->TabIndex = 1;
this->Controls->Add( this->button2 );
System::Windows::Forms::GroupBox^ group = gcnew System::Windows::Forms::GroupBox;
group->Location = Point(418,3);
group->Size = System::Drawing::Size( 220, 36 );
group->Text = "Display Mode";
this->Controls->Add( group );
System::Windows::Forms::RadioButton^ rbutton1 = gcnew System::Windows::Forms::RadioButton;
rbutton1->Location = Point(6,15);
rbutton1->Size = System::Drawing::Size( 46, 16 );
rbutton1->Text = "Auto";
rbutton1->Checked = true;
rbutton1->Click += gcnew EventHandler( this, &ByteViewerForm::changeByteMode );
group->Controls->Add( rbutton1 );
System::Windows::Forms::RadioButton^ rbutton2 = gcnew System::Windows::Forms::RadioButton;
rbutton2->Location = Point(54,15);
rbutton2->Size = System::Drawing::Size( 50, 16 );
rbutton2->Text = "ANSI";
rbutton2->Click += gcnew EventHandler( this, &ByteViewerForm::changeByteMode );
group->Controls->Add( rbutton2 );
System::Windows::Forms::RadioButton^ rbutton3 = gcnew System::Windows::Forms::RadioButton;
rbutton3->Location = Point(106,15);
rbutton3->Size = System::Drawing::Size( 46, 16 );
rbutton3->Text = "Hex";
rbutton3->Click += gcnew EventHandler( this, &ByteViewerForm::changeByteMode );
group->Controls->Add( rbutton3 );
System::Windows::Forms::RadioButton^ rbutton4 = gcnew System::Windows::Forms::RadioButton;
rbutton4->Location = Point(152,15);
rbutton4->Size = System::Drawing::Size( 64, 16 );
rbutton4->Text = "Unicode";
rbutton4->Click += gcnew EventHandler( this, &ByteViewerForm::changeByteMode );
group->Controls->Add( rbutton4 );
this->ResumeLayout( false );
}
};
[STAThread]
int main()
{
Application::Run( gcnew ByteViewerForm );
}
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.ComponentModel.Design;
using System.Windows.Forms;
namespace ByteViewerForm
{
public class ByteViewerForm : System.Windows.Forms.Form
{
private System.Windows.Forms.Button button1;
private System.Windows.Forms.Button button2;
private System.ComponentModel.Design.ByteViewer byteviewer;
public ByteViewerForm()
{
// Initialize the controls other than the ByteViewer.
InitializeForm();
// Initialize the ByteViewer.
byteviewer = new ByteViewer();
byteviewer.Location = new Point( 8, 46 );
byteviewer.Size = new Size( 600, 338 );
byteviewer.Anchor = AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Top;
byteviewer.SetBytes( new byte[] { } );
this.Controls.Add( byteviewer );
}
// Show a file selection dialog and cues the byte viewer to
// load the data in a selected file.
private void loadBytesFromFile(object sender, EventArgs e)
{
OpenFileDialog ofd = new OpenFileDialog();
if( ofd.ShowDialog() != DialogResult.OK )
return;
byteviewer.SetFile(ofd.FileName);
}
// Clear the bytes in the byte viewer.
private void clearBytes(object sender, EventArgs e)
{
byteviewer.SetBytes( new byte[] { } );
}
// Changes the display mode of the byte viewer according to the
// Text property of the RadioButton sender control.
private void changeByteMode(object sender, EventArgs e)
{
System.Windows.Forms.RadioButton rbutton =
(System.Windows.Forms.RadioButton)sender;
DisplayMode mode;
switch( rbutton.Text )
{
case "ANSI":
mode = DisplayMode.Ansi;
break;
case "Hex":
mode = DisplayMode.Hexdump;
break;
case "Unicode":
mode = DisplayMode.Unicode;
break;
default:
mode = DisplayMode.Auto;
break;
}
// Sets the display mode.
byteviewer.SetDisplayMode( mode );
}
private void InitializeForm()
{
this.SuspendLayout();
this.ClientSize = new System.Drawing.Size(680, 440);
this.MinimumSize = new System.Drawing.Size(660, 400);
this.Size = new System.Drawing.Size(680, 440);
this.Name = "Byte Viewer Form";
this.Text = "Byte Viewer Form";
this.button1 = new System.Windows.Forms.Button();
this.button1.Location = new System.Drawing.Point(8, 8);
this.button1.Size = new System.Drawing.Size(190, 23);
this.button1.Name = "button1";
this.button1.Text = "Set Bytes From File...";
this.button1.TabIndex = 0;
this.button1.Click += new EventHandler(this.loadBytesFromFile);
this.Controls.Add(this.button1);
this.button2 = new System.Windows.Forms.Button();
this.button2.Location = new System.Drawing.Point(198, 8);
this.button2.Size = new System.Drawing.Size(190, 23);
this.button2.Name = "button2";
this.button2.Text = "Clear Bytes";
this.button2.Click += new EventHandler(this.clearBytes);
this.button2.TabIndex = 1;
this.Controls.Add(this.button2);
System.Windows.Forms.GroupBox group = new System.Windows.Forms.GroupBox();
group.Location = new Point(418, 3);
group.Size = new Size(220, 36);
group.Text = "Display Mode";
this.Controls.Add( group );
System.Windows.Forms.RadioButton rbutton1 = new System.Windows.Forms.RadioButton();
rbutton1.Location = new Point(6, 15);
rbutton1.Size = new Size(46, 16);
rbutton1.Text = "Auto";
rbutton1.Checked = true;
rbutton1.Click += new EventHandler(this.changeByteMode);
group.Controls.Add( rbutton1 );
System.Windows.Forms.RadioButton rbutton2 = new System.Windows.Forms.RadioButton();
rbutton2.Location = new Point(54, 15);
rbutton2.Size = new Size(50, 16);
rbutton2.Text = "ANSI";
rbutton2.Click += new EventHandler(this.changeByteMode);
group.Controls.Add( rbutton2 );
System.Windows.Forms.RadioButton rbutton3 = new System.Windows.Forms.RadioButton();
rbutton3.Location = new Point(106, 15);
rbutton3.Size = new Size(46, 16);
rbutton3.Text = "Hex";
rbutton3.Click += new EventHandler(this.changeByteMode);
group.Controls.Add( rbutton3 );
System.Windows.Forms.RadioButton rbutton4 = new System.Windows.Forms.RadioButton();
rbutton4.Location = new Point(152, 15);
rbutton4.Size = new Size(64, 16);
rbutton4.Text = "Unicode";
rbutton4.Click += new EventHandler(this.changeByteMode);
group.Controls.Add( rbutton4 );
this.ResumeLayout(false);
}
[STAThread]
static void Main()
{
Application.Run(new ByteViewerForm());
}
}
}
Imports System.Drawing
Imports System.Collections
Imports System.ComponentModel
Imports System.ComponentModel.Design
Imports System.Windows.Forms
Public Class ByteViewerForm
Inherits System.Windows.Forms.Form
Private button1 As System.Windows.Forms.Button
Private button2 As System.Windows.Forms.Button
Private byteviewer As System.ComponentModel.Design.ByteViewer
Public Sub New()
' Initialize the controls other than the ByteViewer.
InitializeForm()
' Initialize the ByteViewer.
byteviewer = New ByteViewer
byteviewer.Location = New Point(8, 46)
byteviewer.Size = New Size(600, 338)
byteviewer.Anchor = AnchorStyles.Left Or AnchorStyles.Bottom Or AnchorStyles.Top
byteviewer.SetBytes(New Byte() {})
Me.Controls.Add(byteviewer)
End Sub
' Show a file selection dialog and cues the byte viewer to
' load the data in a selected file.
Private Sub loadBytesFromFile(ByVal sender As Object, ByVal e As EventArgs)
Dim ofd As New OpenFileDialog
If ofd.ShowDialog() <> System.Windows.Forms.DialogResult.OK Then
Return
End If
byteviewer.SetFile(ofd.FileName)
End Sub
' Clear the bytes in the byte viewer.
Private Sub clearBytes(ByVal sender As Object, ByVal e As EventArgs)
byteviewer.SetBytes(New Byte() {})
End Sub
' Changes the display mode of the byte viewer according to the
' Text property of the RadioButton sender control.
Private Sub changeByteMode(ByVal sender As Object, ByVal e As EventArgs)
Dim rbutton As System.Windows.Forms.RadioButton = _
CType(sender, System.Windows.Forms.RadioButton)
Dim mode As DisplayMode
Select Case rbutton.Text
Case "ANSI"
mode = DisplayMode.Ansi
Case "Hex"
mode = DisplayMode.Hexdump
Case "Unicode"
mode = DisplayMode.Unicode
Case Else
mode = DisplayMode.Auto
End Select
' Sets the display mode.
byteviewer.SetDisplayMode(mode)
End Sub
Private Sub InitializeForm()
Me.SuspendLayout()
Me.ClientSize = New System.Drawing.Size(680, 440)
Me.MinimumSize = New System.Drawing.Size(660, 400)
Me.Size = New System.Drawing.Size(680, 440)
Me.Name = "Byte Viewer Form"
Me.Text = "Byte Viewer Form"
Me.button1 = New System.Windows.Forms.Button
Me.button1.Location = New System.Drawing.Point(8, 8)
Me.button1.Size = New System.Drawing.Size(190, 23)
Me.button1.Name = "button1"
Me.button1.Text = "Set Bytes From File..."
Me.button1.TabIndex = 0
AddHandler Me.button1.Click, AddressOf Me.loadBytesFromFile
Me.Controls.Add(Me.button1)
Me.button2 = New System.Windows.Forms.Button
Me.button2.Location = New System.Drawing.Point(198, 8)
Me.button2.Size = New System.Drawing.Size(190, 23)
Me.button2.Name = "button2"
Me.button2.Text = "Clear Bytes"
AddHandler Me.button2.Click, AddressOf Me.clearBytes
Me.button2.TabIndex = 1
Me.Controls.Add(Me.button2)
Dim group As New System.Windows.Forms.GroupBox
group.Location = New Point(418, 3)
group.Size = New Size(220, 36)
group.Text = "Display Mode"
Me.Controls.Add(group)
Dim rbutton1 As New System.Windows.Forms.RadioButton
rbutton1.Location = New Point(6, 15)
rbutton1.Size = New Size(46, 16)
rbutton1.Text = "Auto"
rbutton1.Checked = True
AddHandler rbutton1.Click, AddressOf Me.changeByteMode
group.Controls.Add(rbutton1)
Dim rbutton2 As New System.Windows.Forms.RadioButton
rbutton2.Location = New Point(54, 15)
rbutton2.Size = New Size(50, 16)
rbutton2.Text = "ANSI"
AddHandler rbutton2.Click, AddressOf Me.changeByteMode
group.Controls.Add(rbutton2)
Dim rbutton3 As New System.Windows.Forms.RadioButton
rbutton3.Location = New Point(106, 15)
rbutton3.Size = New Size(46, 16)
rbutton3.Text = "Hex"
AddHandler rbutton3.Click, AddressOf Me.changeByteMode
group.Controls.Add(rbutton3)
Dim rbutton4 As New System.Windows.Forms.RadioButton
rbutton4.Location = New Point(152, 15)
rbutton4.Size = New Size(64, 16)
rbutton4.Text = "Unicode"
AddHandler rbutton4.Click, AddressOf Me.changeByteMode
group.Controls.Add(rbutton4)
Me.ResumeLayout(False)
End Sub
<STAThread()> _
Shared Sub Main()
Application.Run(New ByteViewerForm)
End Sub
End Class
설명
ByteViewer 는 16진수, ANSI 및 유니코드 형식의 데이터를 보기 위한 인터페이스를 제공합니다.
열거형은 DisplayMode 사용할 표시 모드를 나타내는 데 사용되는 식별자를 지정합니다. 표시 모드는 Auto 바이트 배열의 내용에 따라 기본 표시 모드를 선택합니다.
ByteViewer 는 간단한 알고리즘을 사용하여 버퍼에 저장되는 데이터의 종류를 결정합니다. 16진수 Hexdump 보기는 읽기 전용 편집 상자에 16진수 값과 해당 바이트 표현(chars)을 표시합니다. 기본 열 수는 16개입니다. 및 Unicode 보기는 Ansi 읽기 전용 편집 상자에 바이트 배열을 표시합니다. 이러한 보기에서 NUL
문자는 유니코드 블록 문자로 바뀝니다.
생성자
ByteViewer() |
ByteViewer 클래스의 새 인스턴스를 초기화합니다. |
필드
ScrollStateAutoScrolling |
AutoScroll 속성의 값을 나타냅니다. (다음에서 상속됨 ScrollableControl) |
ScrollStateFullDrag |
사용자가 전체 창 끌기를 활성화했는지 여부를 나타냅니다. (다음에서 상속됨 ScrollableControl) |
ScrollStateHScrollVisible |
HScroll 속성의 값이 |
ScrollStateUserHasScrolled |
사용자가 ScrollableControl 컨트롤을 스크롤했는지 여부를 나타냅니다. (다음에서 상속됨 ScrollableControl) |
ScrollStateVScrollVisible |
VScroll 속성의 값이 |
속성
AccessibilityObject |
컨트롤에 할당된 AccessibleObject를 가져옵니다. (다음에서 상속됨 Control) |
AccessibleDefaultActionDescription |
내게 필요한 옵션 지원 클라이언트 애플리케이션에서 사용되는 컨트롤의 기본 작업 설명을 가져오거나 설정합니다. (다음에서 상속됨 Control) |
AccessibleDescription |
내게 필요한 옵션 지원 클라이언트 애플리케이션에서 사용하는 컨트롤의 설명을 가져오거나 설정합니다. (다음에서 상속됨 Control) |
AccessibleName |
내게 필요한 옵션 지원 클라이언트 애플리케이션에서 사용하는 컨트롤의 이름을 가져오거나 설정합니다. (다음에서 상속됨 Control) |
AccessibleRole |
컨트롤의 액세스 가능 역할을 가져오거나 설정합니다. (다음에서 상속됨 Control) |
AllowDrop |
사용자가 컨트롤로 끌어 온 데이터가 해당 컨트롤에서 허용되는지를 나타내는 값을 가져오거나 설정합니다. (다음에서 상속됨 Control) |
Anchor |
컨트롤이 바인딩되는 컨테이너의 가장자리를 가져오거나 설정하고 해당 부모를 기초로 컨트롤 크기를 조정하는 방법을 결정합니다. (다음에서 상속됨 Control) |
AutoScroll |
컨테이너에서 사용자가 표시되는 컨테이너 경계 밖의 컨트롤까지 스크롤할 수 있는지 여부를 나타내는 값을 가져오거나 설정합니다. (다음에서 상속됨 ScrollableControl) |
AutoScrollMargin |
자동 스크롤 여백의 크기를 가져오거나 설정합니다. (다음에서 상속됨 ScrollableControl) |
AutoScrollMinSize |
자동 스크롤의 최소 크기를 가져오거나 설정합니다. (다음에서 상속됨 ScrollableControl) |
AutoScrollOffset |
ScrollControlIntoView(Control)에서 이 컨트롤이 스크롤되는 위치를 가져오거나 설정합니다. (다음에서 상속됨 Control) |
AutoScrollPosition |
자동 스크롤 위치를 가져오거나 설정합니다. (다음에서 상속됨 ScrollableControl) |
AutoSize |
이 속성은 이 클래스와 관련이 없습니다. (다음에서 상속됨 Control) |
AutoSize |
내용에 따라 컨트롤 크기가 조정되는지 여부를 나타내는 값을 가져오거나 설정합니다. (다음에서 상속됨 Panel) |
AutoSizeMode |
컨트롤의 자동 크기 조정 동작을 나타냅니다. (다음에서 상속됨 Panel) |
BackColor |
컨트롤의 배경색을 가져오거나 설정합니다. (다음에서 상속됨 Control) |
BackgroundImage |
컨트롤에 표시할 배경 이미지를 가져오거나 설정합니다. (다음에서 상속됨 Control) |
BackgroundImageLayout |
ImageLayout 열거형에서 정의된 대로 배경 이미지 레이아웃을 가져오거나 설정합니다. (다음에서 상속됨 Control) |
BindingContext |
컨트롤의 BindingContext를 가져오거나 설정합니다. (다음에서 상속됨 Control) |
BorderStyle |
패널의 테두리 스타일을 가져오거나 설정합니다. (다음에서 상속됨 TableLayoutPanel) |
Bottom |
컨트롤의 아래쪽 가장자리와 해당 컨테이너 클라이언트 영역의 위쪽 가장자리 사이의 거리(픽셀)를 가져옵니다. (다음에서 상속됨 Control) |
Bounds |
부모 컨트롤을 기준으로 비클라이언트 요소를 포함하는 컨트롤의 크기와 위치(픽셀)를 가져오거나 설정합니다. (다음에서 상속됨 Control) |
CanEnableIme |
IME 지원을 사용하도록 ImeMode 속성을 활성 값으로 설정할 수 있는지를 나타내는 값을 가져옵니다. (다음에서 상속됨 Control) |
CanFocus |
컨트롤이 포커스를 받을 수 있는지를 나타내는 값을 가져옵니다. (다음에서 상속됨 Control) |
CanRaiseEvents |
컨트롤에서 이벤트가 발생할 수 있는지를 확인합니다. (다음에서 상속됨 Control) |
CanSelect |
컨트롤을 선택할 수 있는지를 나타내는 값을 가져옵니다. (다음에서 상속됨 Control) |
Capture |
컨트롤이 마우스를 캡처했는지를 나타내는 값을 가져오거나 설정합니다. (다음에서 상속됨 Control) |
CausesValidation |
컨트롤이 포커스를 받을 때 유효성 검사가 필요한 모든 컨트롤에 대해 유효성 검사가 수행되도록 하는지를 나타내는 값을 가져오거나 설정합니다. (다음에서 상속됨 Control) |
CellBorderStyle |
셀 테두리의 스타일을 가져오거나 설정합니다. (다음에서 상속됨 TableLayoutPanel) |
ClientRectangle |
컨트롤의 클라이언트 영역을 나타내는 사각형을 가져옵니다. (다음에서 상속됨 Control) |
ClientSize |
컨트롤 클라이언트 영역의 높이와 너비를 가져오거나 설정합니다. (다음에서 상속됨 Control) |
ColumnCount |
테이블에 포함할 수 있는 최대 열 수를 가져오거나 설정합니다. (다음에서 상속됨 TableLayoutPanel) |
ColumnStyles |
TableLayoutPanel에 대한 열 스타일의 컬렉션을 가져옵니다. (다음에서 상속됨 TableLayoutPanel) |
CompanyName |
컨트롤을 포함하고 있는 애플리케이션의 회사 이름이나 작성자를 가져옵니다. (다음에서 상속됨 Control) |
Container |
IContainer을 포함하는 Component를 가져옵니다. (다음에서 상속됨 Component) |
ContainsFocus |
컨트롤이나 해당 컨트롤의 자식 컨트롤이 현재 입력 포커스를 가지고 있는지를 나타내는 값을 가져옵니다. (다음에서 상속됨 Control) |
ContextMenu |
컨트롤과 연결된 바로 가기 메뉴를 가져오거나 설정합니다. (다음에서 상속됨 Control) |
ContextMenuStrip |
이 컨트롤과 연결된 ContextMenuStrip을 가져오거나 설정합니다. (다음에서 상속됨 Control) |
Controls |
컨트롤에 포함된 컨트롤의 컬렉션을 가져옵니다. (다음에서 상속됨 Control) |
Controls |
TableLayoutPanel에 들어 있는 컨트롤의 컬렉션을 가져옵니다. (다음에서 상속됨 TableLayoutPanel) |
Created |
컨트롤이 만들어졌는지를 나타내는 값을 가져옵니다. (다음에서 상속됨 Control) |
CreateParams |
컨트롤 핸들이 만들어지는 경우 필요한 작성 매개 변수를 가져옵니다. (다음에서 상속됨 Control) |
CreateParams |
컨트롤 핸들이 만들어지는 경우 필요한 작성 매개 변수를 가져옵니다. (다음에서 상속됨 Panel) |
Cursor |
마우스 포인터가 컨트롤 위에 있을 때 표시되는 커서를 가져오거나 설정합니다. (다음에서 상속됨 Control) |
DataBindings |
컨트롤에 대한 데이터 바인딩을 가져옵니다. (다음에서 상속됨 Control) |
DataContext |
데이터 바인딩을 위해 데이터 컨텍스트를 가져오거나 설정합니다. 앰비언트 속성입니다. (다음에서 상속됨 Control) |
DefaultCursor |
컨트롤의 기본 커서를 가져오거나 설정합니다. (다음에서 상속됨 Control) |
DefaultImeMode |
컨트롤에서 지원하는 기본 IME(입력기) 모드를 가져옵니다. (다음에서 상속됨 Control) |
DefaultMargin |
컨트롤 사이에 기본적으로 지정되는 공백(픽셀)을 가져옵니다. (다음에서 상속됨 Control) |
DefaultMaximumSize |
컨트롤의 기본 최대 크기로 지정되는 길이와 높이를 픽셀 단위로 가져옵니다. (다음에서 상속됨 Control) |
DefaultMinimumSize |
컨트롤의 기본 최소 크기로 지정되는 길이와 높이를 픽셀 단위로 가져옵니다. (다음에서 상속됨 Control) |
DefaultPadding |
컨트롤 내용의 기본 내부 간격(픽셀)을 가져옵니다. (다음에서 상속됨 Control) |
DefaultSize |
컨트롤의 기본 크기를 가져옵니다. (다음에서 상속됨 Control) |
DefaultSize |
컨트롤의 기본 크기를 가져옵니다. (다음에서 상속됨 Panel) |
DesignMode |
Component가 현재 디자인 모드인지 여부를 나타내는 값을 가져옵니다. (다음에서 상속됨 Component) |
DeviceDpi |
컨트롤을 현재 표시 중인 디스플레이 디바이스의 DPI 값을 가져옵니다. (다음에서 상속됨 Control) |
DisplayRectangle |
컨트롤의 표시 영역을 나타내는 사각형을 가져옵니다. (다음에서 상속됨 Control) |
DisplayRectangle |
컨트롤의 실제 표시 영역을 나타내는 사각형을 가져옵니다. (다음에서 상속됨 ScrollableControl) |
Disposing |
기본 Control 클래스에 대한 삭제 작업이 진행되고 있는지를 나타내는 값을 가져옵니다. (다음에서 상속됨 Control) |
Dock |
어느 컨트롤 테두리가 부모 컨트롤에 도킹되는지를 가져오거나 설정하고 해당 부모를 기초로 컨트롤 크기를 조정하는 방법을 결정합니다. (다음에서 상속됨 Control) |
DockPadding |
컨트롤의 모든 가장자리에 대한 도킹 안쪽 여백 설정을 가져옵니다. (다음에서 상속됨 ScrollableControl) |
DoubleBuffered |
이 컨트롤에서 깜빡임을 줄이거나 방지하기 위해 보조 버퍼를 사용하여 화면을 다시 그려야 하는지를 나타내는 값을 가져오거나 설정합니다. (다음에서 상속됨 Control) |
Enabled |
컨트롤이 사용자 상호 작용에 응답할 수 있는지를 나타내는 값을 가져오거나 설정합니다. (다음에서 상속됨 Control) |
Events |
이 Component에 연결된 이벤트 처리기의 목록을 가져옵니다. (다음에서 상속됨 Component) |
Focused |
컨트롤에 입력 포커스가 있는지를 나타내는 값을 가져옵니다. (다음에서 상속됨 Control) |
Font |
컨트롤에서 표시되는 텍스트의 글꼴을 가져오거나 설정합니다. (다음에서 상속됨 Control) |
FontHeight |
컨트롤의 글꼴 높이를 가져오거나 설정합니다. (다음에서 상속됨 Control) |
ForeColor |
컨트롤의 전경색을 가져오거나 설정합니다. (다음에서 상속됨 Control) |
GrowStyle |
모든 기존 셀이 꽉 찼을 때 새 셀을 수용하도록 TableLayoutPanel 컨트롤을 확장할지 여부를 나타내는 값을 가져오거나 설정합니다. (다음에서 상속됨 TableLayoutPanel) |
Handle |
컨트롤이 바인딩되는 창 핸들을 가져옵니다. (다음에서 상속됨 Control) |
HasChildren |
컨트롤에 자식 컨트롤이 하나 이상 있는지를 나타내는 값을 가져옵니다. (다음에서 상속됨 Control) |
Height |
컨트롤의 높이를 가져오거나 설정합니다. (다음에서 상속됨 Control) |
HorizontalScroll |
가로 스크롤 막대와 연결된 특성을 가져옵니다. (다음에서 상속됨 ScrollableControl) |
HScroll |
가로 스크롤 막대가 표시되는지 여부를 나타내는 값을 가져오거나 설정합니다. (다음에서 상속됨 ScrollableControl) |
ImeMode |
컨트롤의 IME(입력기) 모드를 가져오거나 설정합니다. (다음에서 상속됨 Control) |
ImeModeBase |
컨트롤의 IME 모드를 가져오거나 설정합니다. (다음에서 상속됨 Control) |
InvokeRequired |
호출자가 컨트롤이 만들어진 스레드와 다른 스레드에 있기 때문에 메서드를 통해 컨트롤을 호출하는 경우 해당 호출자가 호출 메서드를 호출해야 하는지를 나타내는 값을 가져옵니다. (다음에서 상속됨 Control) |
IsAccessible |
컨트롤이 내게 필요한 옵션 지원 애플리케이션에 표시되는지를 나타내는 값을 가져오거나 설정합니다. (다음에서 상속됨 Control) |
IsAncestorSiteInDesignMode |
이 컨트롤의 상위 항목 중 하나가 있고 DesignMode에 해당 사이트가 있는지를 나타냅니다. 이 속성은 읽기 전용입니다. (다음에서 상속됨 Control) |
IsDisposed |
컨트롤이 삭제되었는지를 나타내는 값을 가져옵니다. (다음에서 상속됨 Control) |
IsHandleCreated |
컨트롤에 연결된 핸들이 있는지를 나타내는 값을 가져옵니다. (다음에서 상속됨 Control) |
IsMirrored |
컨트롤이 미러링되는지를 나타내는 값을 가져옵니다. (다음에서 상속됨 Control) |
LayoutEngine |
컨트롤 레이아웃 엔진의 캐시된 인스턴스를 가져옵니다. (다음에서 상속됨 Control) |
LayoutEngine |
패널 레이아웃 엔진의 캐시된 인스턴스를 가져옵니다. (다음에서 상속됨 TableLayoutPanel) |
LayoutSettings |
표 레이아웃 설정을 나타내는 값을 가져오거나 설정합니다. (다음에서 상속됨 TableLayoutPanel) |
Left |
컨트롤의 왼쪽 가장자리와 해당 컨테이너 클라이언트 영역의 왼쪽 가장자리 사이의 거리(픽셀)를 가져오거나 설정합니다. (다음에서 상속됨 Control) |
Location |
해당 컨테이너의 왼쪽 위 모퉁이를 기준으로 컨트롤의 왼쪽 위 모퉁이의 좌표를 가져오거나 설정합니다. (다음에서 상속됨 Control) |
Margin |
컨트롤 사이의 공백을 가져오거나 설정합니다. (다음에서 상속됨 Control) |
MaximumSize |
GetPreferredSize(Size)에서 지정할 수 있는 상한을 나타내는 크기를 가져오거나 설정합니다. (다음에서 상속됨 Control) |
MinimumSize |
GetPreferredSize(Size)에서 지정할 수 있는 하한을 나타내는 크기를 가져오거나 설정합니다. (다음에서 상속됨 Control) |
Name |
컨트롤의 이름을 가져오거나 설정합니다. (다음에서 상속됨 Control) |
Padding |
컨트롤의 안쪽 여백을 가져오거나 설정합니다. (다음에서 상속됨 Control) |
Parent |
컨트롤의 부모 컨테이너를 가져오거나 설정합니다. (다음에서 상속됨 Control) |
PreferredSize |
컨트롤이 들어갈 수 있는 사각형 영역의 크기를 가져옵니다. (다음에서 상속됨 Control) |
ProductName |
컨트롤이 포함된 어셈블리의 제품 이름을 가져옵니다. (다음에서 상속됨 Control) |
ProductVersion |
컨트롤이 포함된 어셈블리의 버전을 가져옵니다. (다음에서 상속됨 Control) |
RecreatingHandle |
컨트롤이 현재 자신의 핸들을 다시 만들고 있는지를 나타내는 값을 가져옵니다. (다음에서 상속됨 Control) |
Region |
컨트롤과 연결된 창 영역을 가져오거나 설정합니다. (다음에서 상속됨 Control) |
RenderRightToLeft |
사용되지 않음.
사용되지 않음.
이 속성은 더 이상 사용되지 않습니다. (다음에서 상속됨 Control) |
ResizeRedraw |
크기를 조정하는 경우 컨트롤이 자신을 다시 그리는지를 나타내는 값을 가져오거나 설정합니다. (다음에서 상속됨 Control) |
Right |
컨트롤의 오른쪽 가장자리와 해당 컨테이너 클라이언트 영역의 왼쪽 가장자리 사이의 거리(픽셀)를 가져옵니다. (다음에서 상속됨 Control) |
RightToLeft |
오른쪽에서 왼쪽으로 쓰는 글꼴을 사용하는 로캘을 지원하도록 컨트롤 요소가 정렬되어 있는지를 나타내는 값을 가져오거나 설정합니다. (다음에서 상속됨 Control) |
RowCount |
테이블에 포함할 수 있는 최대 행 수를 가져오거나 설정합니다. (다음에서 상속됨 TableLayoutPanel) |
RowStyles |
TableLayoutPanel에 대한 행 스타일의 컬렉션을 가져옵니다. (다음에서 상속됨 TableLayoutPanel) |
ScaleChildren |
자식 컨트롤의 배율을 결정하는 값을 가져옵니다. (다음에서 상속됨 Control) |
ShowFocusCues |
컨트롤이 포커스 영역을 표시할지를 나타내는 값을 가져옵니다. (다음에서 상속됨 Control) |
ShowKeyboardCues |
사용자 인터페이스가 키보드 액셀러레이터 키를 표시하는지 아니면 숨기는지를 나타내는 값을 가져옵니다. (다음에서 상속됨 Control) |
Site |
컨트롤의 사이트를 가져오거나 설정합니다. (다음에서 상속됨 Control) |
Size |
컨트롤의 높이와 너비를 가져오거나 설정합니다. (다음에서 상속됨 Control) |
TabIndex |
컨트롤 컨테이너 내의 컨트롤 탭 순서를 가져오거나 설정합니다. (다음에서 상속됨 Control) |
TabStop |
Tab 키를 사용하여 이 컨트롤의 포커스를 이동할 수 있는지를 나타내는 값을 가져오거나 설정합니다. (다음에서 상속됨 Control) |
TabStop |
Tab 키를 사용하여 이 컨트롤의 포커스를 이동할 수 있는지를 나타내는 값을 가져오거나 설정합니다. (다음에서 상속됨 Panel) |
Tag |
컨트롤에 대한 데이터가 포함된 개체를 가져오거나 설정합니다. (다음에서 상속됨 Control) |
Text |
이 컨트롤과 관련된 텍스트를 가져오거나 설정합니다. (다음에서 상속됨 Control) |
Text |
이 멤버는 이 컨트롤에 의미가 없습니다. (다음에서 상속됨 Panel) |
Top |
컨트롤의 위쪽 가장자리와 해당 컨테이너 클라이언트 영역의 위쪽 가장자리 사이의 거리(픽셀)를 가져오거나 설정합니다. (다음에서 상속됨 Control) |
TopLevelControl |
다른 Windows Forms 컨트롤에 의해 부모로 지정될 수 없는 부모 컨트롤을 가져옵니다. 일반적으로 이것은 컨트롤이 포함된 가장 바깥쪽 Form입니다. (다음에서 상속됨 Control) |
UseWaitCursor |
현재 컨트롤과 모든 자식 컨트롤에 대기 커서를 사용할지를 나타내는 값을 가져오거나 설정합니다. (다음에서 상속됨 Control) |
VerticalScroll |
세로 스크롤 막대와 관련된 특징을 가져옵니다. (다음에서 상속됨 ScrollableControl) |
Visible |
컨트롤과 모든 해당 자식 컨트롤이 표시되는지를 나타내는 값을 가져오거나 설정합니다. (다음에서 상속됨 Control) |
VScroll |
세로 스크롤 막대가 표시되는지 여부를 나타내는 값을 가져오거나 설정합니다. (다음에서 상속됨 ScrollableControl) |
Width |
컨트롤의 너비를 가져오거나 설정합니다. (다음에서 상속됨 Control) |
WindowTarget |
이 속성은 이 클래스와 관련이 없습니다. (다음에서 상속됨 Control) |
메서드
이벤트
AutoSizeChanged |
이 이벤트는 이 클래스와 관련이 없습니다. (다음에서 상속됨 Control) |
AutoSizeChanged |
AutoSize 속성 값이 변경되면 발생합니다. (다음에서 상속됨 Panel) |
BackColorChanged |
BackColor 속성 값이 변경되면 발생합니다. (다음에서 상속됨 Control) |
BackgroundImageChanged |
BackgroundImage 속성 값이 변경되면 발생합니다. (다음에서 상속됨 Control) |
BackgroundImageLayoutChanged |
BackgroundImageLayout 속성이 변경되면 발생합니다. (다음에서 상속됨 Control) |
BindingContextChanged |
BindingContext 속성 값이 변경되면 발생합니다. (다음에서 상속됨 Control) |
CausesValidationChanged |
CausesValidation 속성 값이 변경되면 발생합니다. (다음에서 상속됨 Control) |
CellPaint |
셀을 다시 그리면 발생합니다. (다음에서 상속됨 TableLayoutPanel) |
ChangeUICues |
포커스 또는 키보드 UI(사용자 인터페이스) 큐가 변경될 때 발생합니다. (다음에서 상속됨 Control) |
Click |
컨트롤을 클릭하면 발생합니다. (다음에서 상속됨 Control) |
ClientSizeChanged |
ClientSize 속성 값이 변경되면 발생합니다. (다음에서 상속됨 Control) |
ContextMenuChanged |
ContextMenu 속성 값이 변경되면 발생합니다. (다음에서 상속됨 Control) |
ContextMenuStripChanged |
ContextMenuStrip 속성 값이 변경되면 발생합니다. (다음에서 상속됨 Control) |
ControlAdded |
Control.ControlCollection에 새로운 컨트롤이 추가되면 발생합니다. (다음에서 상속됨 Control) |
ControlRemoved |
Control.ControlCollection에서 컨트롤이 제거되면 발생합니다. (다음에서 상속됨 Control) |
CursorChanged |
Cursor 속성 값이 변경되면 발생합니다. (다음에서 상속됨 Control) |
DataContextChanged |
DataContext 속성 값이 변경되면 발생합니다. (다음에서 상속됨 Control) |
Disposed |
Dispose() 메서드를 호출하여 구성 요소를 삭제할 때 발생합니다. (다음에서 상속됨 Component) |
DockChanged |
Dock 속성 값이 변경되면 발생합니다. (다음에서 상속됨 Control) |
DoubleClick |
컨트롤을 두 번 클릭하면 발생합니다. (다음에서 상속됨 Control) |
DpiChangedAfterParent |
부모 컨트롤 또는 양식의 DPI가 변경된 후에 컨트롤의 DPI 설정이 프로그래밍 방식으로 변경되면 발생합니다. (다음에서 상속됨 Control) |
DpiChangedBeforeParent |
부모 컨트롤 또는 양식에 대한 DPI 변경 이벤트가 발생하기 전에 컨트롤의 DPI 설정이 프로그래밍 방식으로 변경되면 발생합니다. (다음에서 상속됨 Control) |
DragDrop |
끌어서 놓기 작업이 완료될 때 발생합니다. (다음에서 상속됨 Control) |
DragEnter |
개체를 컨트롤의 범위 안으로 끌 때 발생합니다. (다음에서 상속됨 Control) |
DragLeave |
컨트롤의 범위 밖으로 개체를 끌 때 발생합니다. (다음에서 상속됨 Control) |
DragOver |
개체를 컨트롤의 범위 위로 끌 때 발생합니다. (다음에서 상속됨 Control) |
EnabledChanged |
Enabled 속성 값이 변경되면 발생합니다. (다음에서 상속됨 Control) |
Enter |
컨트롤이 입력되면 발생합니다. (다음에서 상속됨 Control) |
FontChanged |
Font 속성 값이 변경되면 발생합니다. (다음에서 상속됨 Control) |
ForeColorChanged |
ForeColor 속성 값이 변경되면 발생합니다. (다음에서 상속됨 Control) |
GiveFeedback |
끌기 작업을 수행하는 동안 발생합니다. (다음에서 상속됨 Control) |
GotFocus |
컨트롤이 포커스를 받으면 발생합니다. (다음에서 상속됨 Control) |
HandleCreated |
컨트롤의 핸들을 만들면 발생합니다. (다음에서 상속됨 Control) |
HandleDestroyed |
컨트롤의 핸들이 소멸될 때 발생합니다. (다음에서 상속됨 Control) |
HelpRequested |
사용자가 컨트롤에 대한 도움말을 요청하면 발생합니다. (다음에서 상속됨 Control) |
ImeModeChanged |
ImeMode 속성이 변경되면 발생합니다. (다음에서 상속됨 Control) |
Invalidated |
컨트롤을 다시 그려야 할 때 발생합니다. (다음에서 상속됨 Control) |
KeyDown |
컨트롤에 포커스가 있을 때 키를 누르면 발생합니다. (다음에서 상속됨 Control) |
KeyDown |
이 멤버는 이 컨트롤에 의미가 없습니다. (다음에서 상속됨 Panel) |
KeyPress |
컨트롤에 포커스가 있을 때 문자, 스페이스 또는 백스페이스 키를 누르면 발생합니다. (다음에서 상속됨 Control) |
KeyPress |
이 멤버는 이 컨트롤에 의미가 없습니다. (다음에서 상속됨 Panel) |
KeyUp |
컨트롤에 포커스가 있을 때 키를 눌렀다 놓으면 발생합니다. (다음에서 상속됨 Control) |
KeyUp |
이 멤버는 이 컨트롤에 의미가 없습니다. (다음에서 상속됨 Panel) |
Layout |
컨트롤이 자식 컨트롤의 위치를 변경하면 발생합니다. (다음에서 상속됨 Control) |
Leave |
입력 포커스가 컨트롤을 벗어나면 발생합니다. (다음에서 상속됨 Control) |
LocationChanged |
Location 속성 값이 변경되면 발생합니다. (다음에서 상속됨 Control) |
LostFocus |
컨트롤이 포커스를 잃을 때 발생합니다. (다음에서 상속됨 Control) |
MarginChanged |
컨트롤의 여백이 변경되면 발생합니다. (다음에서 상속됨 Control) |
MouseCaptureChanged |
컨트롤이 마우스 캡처를 잃을 때 발생합니다. (다음에서 상속됨 Control) |
MouseClick |
컨트롤을 마우스로 클릭할 때 발생합니다. (다음에서 상속됨 Control) |
MouseDoubleClick |
컨트롤을 마우스로 두 번 클릭할 때 발생합니다. (다음에서 상속됨 Control) |
MouseDown |
마우스 포인터가 컨트롤 위에 있을 때 마우스 단추를 클릭하면 발생합니다. (다음에서 상속됨 Control) |
MouseEnter |
마우스 포인터가 컨트롤에 들어가면 발생합니다. (다음에서 상속됨 Control) |
MouseHover |
마우스 포인터가 컨트롤 위에 있을 때 발생합니다. (다음에서 상속됨 Control) |
MouseLeave |
마우스 포인터가 컨트롤을 벗어나면 발생합니다. (다음에서 상속됨 Control) |
MouseMove |
마우스 포인터를 컨트롤 위로 이동하면 발생합니다. (다음에서 상속됨 Control) |
MouseUp |
마우스 포인터가 컨트롤 위에 있을 때 마우스 단추를 눌렀다 놓으면 발생합니다. (다음에서 상속됨 Control) |
MouseWheel |
컨트롤에 포커스가 있을 때 마우스 휠을 움직이면 발생합니다. (다음에서 상속됨 Control) |
Move |
컨트롤이 이동하면 발생합니다. (다음에서 상속됨 Control) |
PaddingChanged |
컨트롤의 안쪽 여백이 변경되면 발생합니다. (다음에서 상속됨 Control) |
Paint |
컨트롤을 다시 그리면 발생합니다. (다음에서 상속됨 Control) |
ParentChanged |
Parent 속성 값이 변경되면 발생합니다. (다음에서 상속됨 Control) |
PreviewKeyDown |
이 컨트롤에 포커스가 있는 동안 키를 누르면 KeyDown 이벤트 전에 발생합니다. (다음에서 상속됨 Control) |
QueryAccessibilityHelp |
AccessibleObject가 내게 필요한 옵션 지원 애플리케이션에 도움말을 제공하면 발생합니다. (다음에서 상속됨 Control) |
QueryContinueDrag |
끌어서 놓기 작업 중에 발생하며 끌기 소스가 끌어서 놓기 작업을 취소해야 할지를 결정하도록 합니다. (다음에서 상속됨 Control) |
RegionChanged |
Region 속성 값이 변경되면 발생합니다. (다음에서 상속됨 Control) |
Resize |
컨트롤의 크기를 조정하면 발생합니다. (다음에서 상속됨 Control) |
RightToLeftChanged |
RightToLeft 속성 값이 변경되면 발생합니다. (다음에서 상속됨 Control) |
Scroll |
클라이언트 영역이 사용자 또는 코드에 의해 스크롤될 때 발생합니다. (다음에서 상속됨 ScrollableControl) |
SizeChanged |
Size 속성 값이 변경되면 발생합니다. (다음에서 상속됨 Control) |
StyleChanged |
컨트롤 스타일이 변경되면 발생합니다. (다음에서 상속됨 Control) |
SystemColorsChanged |
시스템 색이 변경되면 발생합니다. (다음에서 상속됨 Control) |
TabIndexChanged |
TabIndex 속성 값이 변경되면 발생합니다. (다음에서 상속됨 Control) |
TabStopChanged |
TabStop 속성 값이 변경되면 발생합니다. (다음에서 상속됨 Control) |
TextChanged |
Text 속성 값이 변경되면 발생합니다. (다음에서 상속됨 Control) |
TextChanged |
이 멤버는 이 컨트롤에 의미가 없습니다. (다음에서 상속됨 Panel) |
Validated |
컨트롤의 유효성 검사가 완료되면 발생합니다. (다음에서 상속됨 Control) |
Validating |
컨트롤의 유효성을 검사할 때 발생합니다. (다음에서 상속됨 Control) |
VisibleChanged |
Visible 속성 값이 변경되면 발생합니다. (다음에서 상속됨 Control) |
명시적 인터페이스 구현
IDropTarget.OnDragDrop(DragEventArgs) |
DragDrop 이벤트를 발생시킵니다. (다음에서 상속됨 Control) |
IDropTarget.OnDragEnter(DragEventArgs) |
DragEnter 이벤트를 발생시킵니다. (다음에서 상속됨 Control) |
IDropTarget.OnDragLeave(EventArgs) |
DragLeave 이벤트를 발생시킵니다. (다음에서 상속됨 Control) |
IDropTarget.OnDragOver(DragEventArgs) |
DragOver 이벤트를 발생시킵니다. (다음에서 상속됨 Control) |
IExtenderProvider.CanExtend(Object) |
이 멤버에 대한 설명은 CanExtend(Object)를 참조하세요. (다음에서 상속됨 TableLayoutPanel) |
적용 대상
추가 정보
.NET