다음을 통해 공유


IXamlDirect.CreateInstance(XamlTypeIndex) 메서드

정의

XamlTypeIndex 매개 변수로 지정된 형식의 IXamlDirect 인스턴스를 만듭니다.

이 설명서는 UWP용 WinUI 2에 적용됩니다(Windows 앱 SDKWinUI의 경우 Windows 앱 SDK 네임스페이스 참조).

public:
 Platform::Object ^ CreateInstance(XamlTypeIndex typeIndex);
IInspectable CreateInstance(XamlTypeIndex const& typeIndex);
public object CreateInstance(XamlTypeIndex typeIndex);
Public Function CreateInstance (typeIndex As XamlTypeIndex) As Object

매개 변수

typeIndex
XamlTypeIndex

XamlTypeIndex 열거형에 나열된 지원되는 형식 집합의 특정 XAML 형식을 참조합니다.

반환

Object

Platform::Object

IInspectable

IXamlDirect 인스턴스를 반환합니다.

예제

다음 예제에서는 Border 요소에 대한 IXamlDirect 인스턴스를 만드는 방법을 보여줍니다.

XamlDirect xd = XamlDirect.GetDefault();
IXamlDirect border = xd.CreateInstance(XamlTypeIndex.Border);
XamlDirect^ xd = XamlDirect::GetDefault();
IXamlDirect^ border = xd->CreateInstance(XamlTypeIndex::Border);

적용 대상

추가 정보