Visual.TransformToDescendant(Visual) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
傳回轉換,這個轉換可用來將 Visual 的座標轉換為指定的視覺物件子系。
public:
System::Windows::Media::GeneralTransform ^ TransformToDescendant(System::Windows::Media::Visual ^ descendant);
public System.Windows.Media.GeneralTransform TransformToDescendant (System.Windows.Media.Visual descendant);
member this.TransformToDescendant : System.Windows.Media.Visual -> System.Windows.Media.GeneralTransform
Public Function TransformToDescendant (descendant As Visual) As GeneralTransform
參數
傳回
型別 GeneralTransform 的值。
例外狀況
descendant
為 null
。
視覺不是 descendant
視覺物件的祖系。
這些視覺物件都不會產生關聯。
範例
下列標記範例顯示 TextBlock 包含在 物件中的 StackPanel 。
<StackPanel Name="myStackPanel" Margin="8">
<TextBlock Name="myTextBlock" Margin="4" Text="Hello, world" />
</StackPanel>
下列程式碼範例示範如何使用 TransformToDescendant 方法來擷取相對於其子 TextBlock 系 的 StackPanel 位移。 位移值包含在傳 GeneralTransform 回的值內。
// Return the general transform for the specified visual object.
GeneralTransform generalTransform1 = myStackPanel.TransformToDescendant(myTextBlock);
// Retrieve the point value relative to the child.
Point currentPoint = generalTransform1.Transform(new Point(0, 0));
' Return the general transform for the specified visual object.
Dim generalTransform1 As GeneralTransform = myStackPanel.TransformToDescendant(myTextBlock)
' Retrieve the point value relative to the child.
Dim currentPoint As Point = generalTransform1.Transform(New Point(0, 0))
位移會考慮 Margin 所有物件的值。 在此情況下, X 為 -4,且 Y 為 -4。 位移值是負值,因為父物件是相對於其子物件的負位移。