Невозможно использовать перетаскивание Drop в Radtreeview - PullRequest
0 голосов
/ 21 марта 2011

Я связал все данные с RadTreeView, но не могу использовать drag-'n-drop. Я использовал четыре свойства как

IsDragDropEnabled="True" 
IsDropPreviewLineEnabled="True"
AllowDrop="True"
IsDragPreviewEnabled="True"

и я хочу бросить предмет в том же дереве. Но это не работает.

Ответы [ 3 ]

1 голос
/ 27 января 2012

После быстрого прочтения этой статьи о телерике перетаскивание, кажется, работает для меня довольно хорошо.

<telerik:RadTreeView ... EnableDragAndDrop="true" OnNodeDrop="MyTreeView_NodeDrop">

EnableDragAndDrop и OnNodeDrop, по-видимому, являются двумя жизненно важными частями, чтобы заставить его работать, но не были в вашем списке атрибутов, которые вы пробовали. НТН

1 голос
/ 15 февраля 2012
 <telerik:RadTreeView x:Name="treeView1" IsDragDropEnabled="True" Margin="2,0,0,0" ItemsSource="{Binding SelectedSectionList, Mode=TwoWay}" ItemTemplate="{StaticResource SectionTemplate}" IsEditable="True" SelectedItem="{Binding SelectedCustomSectionList, Mode=TwoWay}" Grid.Column="2">

Теперь в коде

Вы должны запустить событие

В конструкторе

this.treeView1.AddHandler(RadDragAndDropManager.DropQueryEvent, new EventHandler<DragDropQueryEventArgs>(OnDropQuery), true);

Тогда

 private void OnDropQuery(object sender, DragDropQueryEventArgs e)
    {
        RadTreeViewItem destinationItem = e.Options.Destination as RadTreeViewItem;
        object source = this.GetItemFromPayload<object>(e.Options.Payload);
        object target = destinationItem != null ? destinationItem.Item : null;
        DropPosition position = destinationItem != null ? destinationItem.DropPosition : DropPosition.Inside;

        if (source != null && target != null)
        {
            Section sourceSection = source as Section;
            Section targetSection = target as Section;
            Question sourceQuestion = source as Question;
            Question targetQuestion = target as Question;

            if (sourceQuestion != null)
            {
                try
                {

                    if (sourceQuestion != null && targetQuestion != null && object.ReferenceEquals(sourceQuestion, targetQuestion))
                    {
                        sourceSection.Questions.Remove(sourceQuestion);
                        targetSection.Questions.Add(sourceQuestion);
                        e.QueryResult = false;
                        return;
                    }

                    if (targetQuestion != null && position == DropPosition.Inside)
                    {
                        sourceSection.Questions.Remove(sourceQuestion);
                        targetSection.Questions.Add(sourceQuestion);
                        e.QueryResult = false;
                        return;
                    }

                    if (position != DropPosition.Inside && targetQuestion == null)
                    {
                        sourceSection.Questions.Remove(sourceQuestion);
                        targetSection.Questions.Add(sourceQuestion);
                        e.QueryResult = false;
                        return;
                    }
                }
                catch (Exception ex)
                {


                }
            }
        }
        else
        {
            e.QueryResult = false;
            return;
        }
        e.QueryResult = true;

    }

Этоэто.Вы сможете перетаскивать.

1 голос
/ 01 июля 2011

Здесь довольно много информации: http://www.telerik.com/help/silverlight/raddraganddrop-events.html

Но у меня также возникают проблемы с представлением дерева.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...