0

私はこのサンプルコードを使用しています:

private TreeViewItem GetNearestContainer(UIElement element)
{
        // Walk up the element tree to the nearest tree view item.
        TreeViewItem container = element as TreeViewItem;

        while ((container == null) && (element != null))
        {
            element = VisualTreeHelper.GetParent(element) as UIElement;
            container = element as TreeViewItem;

        }

        return container;
 }

実行時に、が (実際にはドラッグされている)UIElementとして表示され、次の行に:TextBlockTreeViewItem

TreeViewItem container = element as TreeViewItem

要素がTextBlock. これは正しくキャストできないということですか?Drag and Dropこの記事を使用して実装しようとしています。

4

1 に答える 1

2

ビジュアル ツリーをたどって、このようなテキスト ブロックを含む TreeViewItem を見つけることができると思います。

public static class Exensions
{
    /// <summary>
    /// Traverses the visual tree for a <see cref="DependencyObject"/> looking for a parent of a given type.
    /// </summary>
    /// <param name="targetObject">The object who's tree you want to search.</param>
    /// <param name="targetType">The type of parent control you're after</param>
    /// <returns>
    ///     A reference to the parent object or null if none could be found with a matching type.
    /// </returns>
    public static DependencyObject FindParent(this DependencyObject targetObject, Type targetType)
    {
        DependencyObject results = null;

        if (targetObject != null && targetType != null)
        {
            // Start looking form the target objects parent and keep looking until we either hit null
            // which would be the top of the tree or we find an object with the given target type.
            results = VisualTreeHelper.GetParent(targetObject);
            while (results != null && results.GetType() != targetType) results = VisualTreeHelper.GetParent(results);
        }

        return results;
    }
}

そしてラインに慣れる

TreeViewItem treeViewItem = textBlock.FindParent(typeof(TreeView));
于 2013-07-01T06:37:11.160 に答える