0

我想要做的是找到一种方法来了解对象(图像)的坐标(或任何属性),以便我可以使用它来编码在图像上放置椭圆的位置。我发现了一些关于如何在堆栈面板中找到 texbox 位置的内容,但是当我尝试使用该示例时,它会抛出一个异常“TargetInvocationException 未处理”。也许我只是不明白如何引用不同的对象。我知道问题出在第一个 Dim 声明中。

在 Xaml 中:

<Window x:Class="MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="MainWindow" Height="350" Width="525">
    <Canvas x:Name="Can1">      
        <Image x:Name="Table1" Source="c:\images\table.jpg" Width="100" Height="100" Canvas.Left="75" Canvas.Top="75" />
        <Ellipse Canvas.Left="100" Canvas.Top="100" Width="50" Height="50" Stroke="Green" StrokeThickness="4" />
    </Canvas>
</Window>

在代码中:

Class MainWindow 
    Dim gt1 As GeneralTransform = Table1.TransformToAncestor(Can1)
    Dim currentpoint As Point = gt1.Transform(New Point(0, 0))
End Class
4

1 回答 1

1

所以它应该是:

     Class MainWindow 
      Private Sub MainWindow_Loaded(ByVal sender As Object, ByVal e As System.Windows.RoutedEventArgs) Handles Me.Loaded 
        Dim GT1 As GeneralTransform = Table1.TransformToAncestor(Can1) 
        Dim currentpoint As Point = GT1.Transform(New Point(0, 0)) 
      End Sub
     End Class
于 2012-06-20T18:15:37.680 回答