LookupBindingPropertiesAttribute 클래스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
조회 기반 바인딩을 지원하는 속성을 지정합니다. 이 클래스는 상속될 수 없습니다.
public ref class LookupBindingPropertiesAttribute sealed : Attribute
[System.AttributeUsage(System.AttributeTargets.Class)]
public sealed class LookupBindingPropertiesAttribute : Attribute
[<System.AttributeUsage(System.AttributeTargets.Class)>]
type LookupBindingPropertiesAttribute = class
inherit Attribute
Public NotInheritable Class LookupBindingPropertiesAttribute
Inherits Attribute
- 상속
- 특성
예제
다음 코드 예제에서는 조회 기반 바인딩에 사용되는 속성을 보여 줍니다.
// The DemoControl class shows properties
// used with lookup-based binding.
[LookupBindingProperties(
"DataSource",
"DisplayMember",
"ValueMember",
"LookupMember")]
public class DemoControl : Control
{
}
' The DemoControl class shows properties
' used with lookup-based binding.
<LookupBindingProperties( _
"DataSource", _
"DisplayMember", _
"ValueMember", _
"LookupMember")> _
Public Class DemoControl
Inherits Control
End Class
값을 설정 해제하는 경우를 제외하고 특성에는 LookupBindingPropertiesAttribute 네 개의 멤버가 모두 포함되어야 합니다. 다음 코드 예제에서는 컨트롤입니다 ComboBox .
// The DemoComboBox control shows a standard
// combo box binding definition.
[LookupBindingProperties(
"DataSource",
"DisplayMember",
"ValueMember",
"SelectedValue")]
public class DemoComboBox : Control
{
}
' The DemoComboBox control shows a standard
' combo box binding definition.
<LookupBindingProperties( _
"DataSource", _
"DisplayMember", _
"ValueMember", _
"SelectedValue")> _
Public Class DemoComboBox
Inherits Control
End Class
다음 코드 예제에서는 컨트롤이 간단한 바인딩과 목록 바인딩을 모두 지원할 수 있음을 보여 주세요.
// The DemoComboBox2 class shows that a control can
// support both simple binding as well as list binding.
[LookupBindingProperties(
"DataSource",
"DisplayMember",
"ValueMember",
"SelectedValue")]
[DefaultBindingProperty("Text")]
public class DemoComboBox2 : Control
{
}
' The DemoComboBox2 class shows that a control can
' support both simple binding as well as list binding.
<LookupBindingProperties( _
"DataSource", _
"DisplayMember", _
"ValueMember", _
"SelectedValue"), _
DefaultBindingProperty("Text")> _
Public Class DemoComboBox2
Inherits Control
End Class
다음 코드 예제에서는 인수를 지정하지 않고 특성을 설정 해제할 수 있음을 보여 LookupBindingPropertiesAttribute 줍니다.
// NonBindableCombo control shows how to unset the
// LookupBindingProperties by specifying no arguments.
[LookupBindingProperties()]
public class NonBindableCombo : Control
{
}
' NonBindableCombo control shows how to unset the
' LookupBindingProperties by specifying no arguments.
<LookupBindingProperties()> _
Public Class NonBindableCombo
Inherits Control
End Class
설명
는 LookupBindingPropertiesAttribute 조회 기반 바인딩, 특히 ListBox 및 ComboBox 컨트롤에 사용되는 속성을 지정하는 데 사용됩니다.
는 LookupBindingPropertiesAttribute 클래스 수준에서 지정됩니다. 클래스는 상속될 수 있으며 동일한 클래스에서 여러 특성을 허용하지 않습니다.
생성자
LookupBindingPropertiesAttribute() |
매개 변수를 사용하지 않고 LookupBindingPropertiesAttribute 클래스의 새 인스턴스를 초기화합니다. |
LookupBindingPropertiesAttribute(String, String, String, String) |
LookupBindingPropertiesAttribute 클래스의 새 인스턴스를 초기화합니다. |
필드
Default |
LookupBindingPropertiesAttribute 클래스의 기본값을 나타냅니다. |
속성
DataSource |
LookupBindingPropertiesAttribute가 바인딩되는 구성 요소에 대한 데이터 소스 속성의 이름을 가져옵니다. |
DisplayMember |
LookupBindingPropertiesAttribute가 바인딩되는 구성 요소에 대한 표시 멤버 속성의 이름을 가져옵니다. |
LookupMember |
이 특성이 바인딩되는 구성 요소에 대한 조회 멤버의 이름을 가져옵니다. |
TypeId |
파생 클래스에서 구현된 경우 이 Attribute에 대한 고유 식별자를 가져옵니다. (다음에서 상속됨 Attribute) |
ValueMember |
LookupBindingPropertiesAttribute가 바인딩되는 구성 요소에 대한 값 멤버 속성의 이름을 가져옵니다. |
메서드
Equals(Object) |
지정한 Object가 현재 LookupBindingPropertiesAttribute 인스턴스와 같은지 여부를 확인합니다. |
GetHashCode() |
이 인스턴스의 해시 코드를 반환합니다. |
GetType() |
현재 인스턴스의 Type을 가져옵니다. (다음에서 상속됨 Object) |
IsDefaultAttribute() |
파생 클래스에서 재정의된 경우 이 인스턴스 값이 파생 클래스에 대한 기본값인지 여부를 표시합니다. (다음에서 상속됨 Attribute) |
Match(Object) |
파생 클래스에서 재정의된 경우 이 인스턴스가 지정된 개체와 같은지 여부를 나타내는 값을 반환합니다. (다음에서 상속됨 Attribute) |
MemberwiseClone() |
현재 Object의 단순 복사본을 만듭니다. (다음에서 상속됨 Object) |
ToString() |
현재 개체를 나타내는 문자열을 반환합니다. (다음에서 상속됨 Object) |
명시적 인터페이스 구현
_Attribute.GetIDsOfNames(Guid, IntPtr, UInt32, UInt32, IntPtr) |
이름 집합을 해당하는 디스패치 식별자 집합에 매핑합니다. (다음에서 상속됨 Attribute) |
_Attribute.GetTypeInfo(UInt32, UInt32, IntPtr) |
인터페이스의 형식 정보를 가져오는 데 사용할 수 있는 개체의 형식 정보를 검색합니다. (다음에서 상속됨 Attribute) |
_Attribute.GetTypeInfoCount(UInt32) |
개체에서 제공하는 형식 정보 인터페이스의 수를 검색합니다(0 또는 1). (다음에서 상속됨 Attribute) |
_Attribute.Invoke(UInt32, Guid, UInt32, Int16, IntPtr, IntPtr, IntPtr, IntPtr) |
개체에서 노출하는 메서드와 속성에 대한 액세스를 제공합니다. (다음에서 상속됨 Attribute) |
적용 대상
추가 정보
.NET