本文整理汇总了C#中System.Windows.DependencyObject.GetVisualAncestor方法的典型用法代码示例。如果您正苦于以下问题:C# DependencyObject.GetVisualAncestor方法的具体用法?C# DependencyObject.GetVisualAncestor怎么用?C# DependencyObject.GetVisualAncestor使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Windows.DependencyObject
的用法示例。
在下文中一共展示了DependencyObject.GetVisualAncestor方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: FindRoot
public static UIElement FindRoot(DependencyObject visual)
{
var parentWindow = Window.GetWindow(visual);
var rootElement = parentWindow != null ? parentWindow.Content as UIElement : null;
if (rootElement == null)
{
if (Application.Current != null && Application.Current.MainWindow != null)
{
rootElement = Application.Current.MainWindow.Content as UIElement;
}
if (rootElement == null)
{
rootElement = visual.GetVisualAncestor<Page>() ?? visual.GetVisualAncestor<UserControl>() as UIElement;
}
}
// i don't want the fu... windows forms reference
// if (rootElement == null) {
// var elementHost = m_DragInfo.VisualSource.GetVisualAncestor<ElementHost>();
// rootElement = elementHost != null ? elementHost.Child : null;
// }
return rootElement;
}
示例2: Scroll
static void Scroll(DependencyObject o, DragEventArgs e)
{
ScrollViewer scrollViewer = o.GetVisualAncestor<ScrollViewer>();//o.GetVisualDescendent<ScrollViewer>();
if (scrollViewer != null)
{
Point position = e.GetPosition(scrollViewer);
double scrollMargin = Math.Min(scrollViewer.FontSize * 4, scrollViewer.ActualHeight / 2);
if (position.X >= scrollViewer.ActualWidth - scrollMargin &&
scrollViewer.HorizontalOffset < scrollViewer.ExtentWidth - scrollViewer.ViewportWidth)
{
scrollViewer.LineRight();
}
else if (position.X < scrollMargin && scrollViewer.HorizontalOffset > 0)
{
scrollViewer.LineLeft();
}
else if (position.Y >= scrollViewer.ActualHeight - scrollMargin &&
scrollViewer.VerticalOffset <= scrollViewer.ExtentHeight - scrollViewer.ViewportHeight)
{
scrollViewer.LineDown();
}
else if (position.Y < scrollMargin && scrollViewer.VerticalOffset >= 0)
{
scrollViewer.LineUp();
}
}
}