Visual.RemoveVisualChild(Visual) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
2 つのビジュアル間の親子リレーションシップを削除します。
protected:
void RemoveVisualChild(System::Windows::Media::Visual ^ child);
protected void RemoveVisualChild (System.Windows.Media.Visual child);
member this.RemoveVisualChild : System.Windows.Media.Visual -> unit
Protected Sub RemoveVisualChild (child As Visual)
パラメーター
- child
- Visual
親ビジュアルから削除するビジュアル子オブジェクト。
例
次の例は、ビジュアルの子のカスタム ストレージ要件を定義する方法を示しています。 この例では、and メソッドを AddVisualChild 使用して、親ビジュアルと RemoveVisualChild child
. ビジュアル ツリーを正しく列挙するために、この例ではメソッドとVisualChildrenCountプロパティのオーバーライドされた実装をGetVisualChild提供します。
注意
ビジュアル オブジェクト間に親子関係を作成するために使用 VisualCollection できますが、親にリンクされている子が 1 つだけの場合は、独自のカスタム ストレージ実装を提供する方が効率的です。
// Create a host visual derived from the FrameworkElement class.
// This class provides layout, event handling, and container support for
// the child visual object.
public class MyVisualHost : FrameworkElement
{
private DrawingVisual _child;
public MyVisualHost(DrawingVisual drawingVisual)
{
_child = drawingVisual;
this.AddVisualChild(_child);
}
public DrawingVisual Child
{
get
{
return _child;
}
set
{
if (_child != value)
{
this.RemoveVisualChild(_child);
_child = value;
this.AddVisualChild(_child);
}
}
}
// Provide a required override for the VisualChildrenCount property.
protected override int VisualChildrenCount
{
get { return _child == null ? 0 : 1; }
}
// Provide a required override for the GetVisualChild method.
protected override Visual GetVisualChild(int index)
{
if (_child == null)
{
throw new ArgumentOutOfRangeException();
}
return _child;
}
' Create a host visual derived from the FrameworkElement class.
' This class provides layout, event handling, and container support for
' the child visual object.
Public Class MyVisualHost
Inherits FrameworkElement
Private _child As DrawingVisual
Public Sub New(ByVal drawingVisual As DrawingVisual)
_child = drawingVisual
Me.AddVisualChild(_child)
End Sub
Public Property Child() As DrawingVisual
Get
Return _child
End Get
Set(ByVal value As DrawingVisual)
If _child IsNot value Then
Me.RemoveVisualChild(_child)
_child = value
Me.AddVisualChild(_child)
End If
End Set
End Property
' Provide a required override for the VisualChildrenCount property.
Protected Overrides ReadOnly Property VisualChildrenCount() As Integer
Get
Return If(_child Is Nothing, 0, 1)
End Get
End Property
' Provide a required override for the GetVisualChild method.
Protected Overrides Function GetVisualChild(ByVal index As Integer) As Visual
If _child Is Nothing Then
Throw New ArgumentOutOfRangeException()
End If
Return _child
End Function
注釈
このメソッドは RemoveVisualChild 、2 つのビジュアル間の親子関係を削除します。 このメソッドは、ビジュアル子オブジェクトの AddVisualChild 基になるストレージ実装をより低レベルで制御する必要がある場合に、メソッドと共に使用する必要があります。 VisualCollection は、子オブジェクトを格納するための既定の実装として使用できます。