获取给定对象的直接父对象。
命名空间:  VSLangProj
程序集:  VSLangProj(在 VSLangProj.dll 中)
语法
声明
ReadOnly Property Parent As Object
    Get
Object Parent { get; }
property Object^ Parent {
    Object^ get ();
}
abstract Parent : Object
function get Parent () : Object
属性值
类型:System.Object
父对象。
备注
Parent 属性返回对象或集合的直接父对象或父集合。 如果要获取包含集合,则使用 Collection 属性。
示例
Sub ParentExample(ByVal dte As DTE2)
    ' Retrieve and show the Output window.
    Dim outWin As OutputWindow = dte.ToolWindows.OutputWindow
    outWin.Parent.AutoHides = False
    outWin.Parent.Activate()
    ' Find the "Pane1" Output window pane; if it doesn't exist, 
    ' create it.
    Dim pane1 As OutputWindowPane
    Try
        pane1 = outWin.OutputWindowPanes.Item("Pane1")
    Catch
        pane1 = outWin.OutputWindowPanes.Add("Pane1")
    End Try
    ' Find the "Pane2" Output window pane; if it doesn't exist, 
    ' create it.
    Dim pane2 As OutputWindowPane
    Try
        pane2 = outWin.OutputWindowPanes.Item("Pane2")
    Catch
        pane2 = outWin.OutputWindowPanes.Add("Pane2")
    End Try
    MsgBox("The active Output window pane is " & _
        outWin.ActivePane.Name)
    If MsgBox("Activate Pane1?", MsgBoxStyle.YesNo) = _
        MsgBoxResult.Yes Then
        pane1.Activate()
    End If
    MsgBox("The active Output window pane is " & _
        outWin.ActivePane.Name)
End Sub
public void ParentExample(DTE2 dte)
{
    // Retrieve and show the Output window.
    OutputWindow outWin = dte.ToolWindows.OutputWindow;
    outWin.Parent.AutoHides = false;
    outWin.Parent.Activate();
    // Find the "Pane1" Output window pane; if it doesn't exist, 
    // create it.
    OutputWindowPane pane1 = null;
    try
    {
        pane1 = outWin.OutputWindowPanes.Item("Pane1");
    }
    catch
    {
        pane1 = outWin.OutputWindowPanes.Add("Pane1");
    }
    // Find the "Pane2" Output window pane; if it does not exist, 
    // create it.
    OutputWindowPane pane2;
    try
    {
        pane2 = outWin.OutputWindowPanes.Item("Pane2");
    }
    catch
    {
        pane2 = outWin.OutputWindowPanes.Add("Pane2");
    }
    MessageBox.Show("The active Output window pane is " + 
        outWin.ActivePane.Name);
    if (MessageBox.Show("Activate Pane1?", "", MessageBoxButtons.YesNo) 
        == DialogResult.Yes)
        pane1.Activate();
    MessageBox.Show("The active Output window pane is " + 
        outWin.ActivePane.Name);
}
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。