我是XAML新手,所以請注意我的問題可能包含一些主題misundrestanding。XAML - 獲取用戶控件相對於整個窗口的位置作爲綁定屬性
是否可以綁定XAML usercontrol global(相對於窗口)位置來檢查它是否當前在屏幕上可見?用戶控件裏面插入的ScrollViewer,我想在這樣的:
<UserControl x:Class="Test.MessageControl"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Width="300">
<StackPanel >
<Label Name="LabelTest"
Content="{Binding RelativeSource={RelativeSource Self},
Path=MAGIC-GOES-HERE-Location.Y }" />
</StackPanel>
</UserControl>