WindowHelper.CreateChildElement Method (IVsUIElement, FrameworkElement, FrameworkElement%)
Creates and sets the specified element as a child of the specified parent.
Namespace: Microsoft.Internal.VisualStudio.PlatformUI
Assembly: Microsoft.VisualStudio.Shell.11.0 (in Microsoft.VisualStudio.Shell.11.0.dll)
Syntax
'Declaration
Public Shared Function CreateChildElement ( _
element As IVsUIElement, _
parent As FrameworkElement, _
<OutAttribute> ByRef frameworkElement As FrameworkElement _
) As Boolean
public static bool CreateChildElement(
IVsUIElement element,
FrameworkElement parent,
out FrameworkElement frameworkElement
)
public:
static bool CreateChildElement(
IVsUIElement^ element,
FrameworkElement^ parent,
[OutAttribute] FrameworkElement^% frameworkElement
)
static member CreateChildElement :
element:IVsUIElement *
parent:FrameworkElement *
frameworkElement:FrameworkElement byref -> bool
public static function CreateChildElement(
element : IVsUIElement,
parent : FrameworkElement,
frameworkElement : FrameworkElement
) : boolean
Parameters
element
Type: Microsoft.VisualStudio.Shell.Interop.IVsUIElementThe element to be created and displayed
parent
Type: System.Windows.FrameworkElementThe framework element to be used as parent
frameworkElement
Type: System.Windows.FrameworkElement%Returns the created child framework element
Return Value
Type: System.Boolean
true if the parent relationship could be established, otherwise false.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.