다음을 통해 공유


PenInputPanel.AttachedEditWindow 속성

업데이트: 2007년 11월

사용되지 않습니다. PenInputPanel 개체가 연결되는 창 핸들을 가져오거나 설정합니다. PenInputPanel은 Microsoft.Ink.TextInput으로 대체되었습니다.

네임스페이스:  Microsoft.Ink
어셈블리:  Microsoft.Ink(Microsoft.Ink.dll)

구문

‘선언
Public Property AttachedEditWindow As IntPtr
‘사용 방법
Dim instance As PenInputPanel
Dim value As IntPtr

value = instance.AttachedEditWindow

instance.AttachedEditWindow = value
public IntPtr AttachedEditWindow { get; set; }
public:
property IntPtr AttachedEditWindow {
    IntPtr get ();
    void set (IntPtr value);
}
/** @property */
public IntPtr get_AttachedEditWindow()
/** @property */
public  void set_AttachedEditWindow(IntPtr value)
public function get AttachedEditWindow () : IntPtr
public function set AttachedEditWindow (value : IntPtr)

속성 값

형식: System.IntPtr
PenInputPanel 개체가 연결된 창 핸들입니다.

설명

PenInputPanel 개체가 연결되는 개체나 컨트롤을 새 창 핸들이 있는 창으로 이동하는 경우가 있습니다. 예를 들어 응용 프로그램을 업데이트하고 개체나 컨트롤이 연결되는 창을 변경할 수 있습니다. 이러한 경우 PenInputPanel 개체의 해당 인스턴스에 대해 AttachedEditControl 속성이 개체나 컨트롤로 설정되는 경우 AttachedEditWindow 속성은 연결된 컨트롤의 창 핸들이 변경되면 자동으로 업데이트됩니다. AttachedEditControl 속성을 설정하지 않는 경우에는 연결된 개체나 컨트롤의 창 핸들이 변경될 때 PenInputPanel 개체에 대해 창 핸들을 직접 업데이트해야 합니다.

AttachedEditControl 및 AttachedEditWindow는 서로 독립적인 속성이므로 한 속성을 설정한다고 다른 속성이 업데이트되는 것은 아닙니다. PenInputPanel 개체를 컨트롤이나 창에 연결하는 데 원래 사용했던 속성을 사용하십시오.

ms582240.alert_security(ko-kr,VS.90).gif보안 정보:

부분 신뢰 환경에서 사용하는 경우 이 속성에 SecurityPermissionFlag.AllFlags 권한 및 PenInputPanel에서 요구하는 권한이 필요합니다. 자세한 내용은 Security and Trust를 참조하십시오.

예제

이 C# 예제에서는 PenInputPanel 개체인 thePenInputPanel을 만든 다음 AttachedEditWindow 속성을 설정하여 새로 만든 개체를 InkEdit 컨트롤인 theInkEdit에 연결합니다.

[C#]

// Declare and create a PenInputPanel
PenInputPanel thePenInputPanel = new PenInputPanel();

// Attach the PenInputPanel to the window handle of an InkEdit control
thePenInputPanel.AttachedEditWindow = theInkEdit.Handle;

이 Microsoft® Visual Basic® .NET 예제에서는 PenInputPanel 개체인 thePenInputPanel을 만든 다음 AttachedEditWindow 속성을 설정하여 새로 만든 개체를 InkEdit 컨트롤인 theInkEdit에 연결합니다.

[Visual Basic]

' Declare a new PenInputPanel object
Dim thePenInputPanel As PenInputPanel

' Create the PenInputPanel
Set thePenInputPanel = New PenInputPanel

' Attach the PenInputPanel to an InkEdit control
thePenInputPanel.AttachedEditWindow = theInkEdit.hWnd

플랫폼

Windows Vista

.NET Framework 및 .NET Compact Framework에서 모든 플랫폼의 전체 버전을 지원하지는 않습니다. 지원되는 버전의 목록을 보려면 .NET Framework 시스템 요구 사항을 참조하십시오.

버전 정보

.NET Framework

3.0에서 지원

참고 항목

참조

PenInputPanel 클래스

PenInputPanel 멤버

Microsoft.Ink 네임스페이스

PenInputPanel.AttachedEditControl