I try to make some drag&drop on WPF using MVVM
I found this link from Bea Stollnitz http://bea.stollnitz which propose a solution with a DragDropHelper here : bea.stollnitz.com/files/46/DragDropListBox.zip
but when i try to customize it with some events generating components such as button or radioButton in datatemplate, i have this error on drag & drop
"Cannot access adorners on element that has no adorners."
on this line
this.adornerLayer.Update(this.AdornedElement);
you can reproduce it easily by downloading bea.stollnitz.com/files/46/DragDropListBox.zip
and replacing
<DataTemplate x:Key="pictureTemplate">
<DataTemplate.Resources>
<Style TargetType="Image">
<Setter Property="Width" Value="50" />
<Setter Property="Height" Value="50" />
<Setter Property="Margin" Value="10" />
</Style>
</DataTemplate.Resources>
<Image Source="{Binding Path=Location}" />
</DataTemplate>
by
<DataTemplate x:Key="pictureTemplate">
<DataTemplate.Resources>
<Style TargetType="Image">
<Setter Property="Width" Value="50" />
<Setter Property="Height" Value="50" />
<Setter Property="Margin" Value="10" />
</Style>
</DataTemplate.Resources>
<Grid>
<Image Source="{Binding Path=Location}" />
<RadioButton />
</Grid>
</DataTemplate>
i.e. adding a radiobutton in the template
i already find some links but none of them explain a clear way to solve the issue.
No events passed to WPF adorner layer
that propose to add this code
VisualCollection visualChildren; FrameworkElement @object;
public CustomAdorner(UIElement adornedElement) :
base(adornedElement)
{
visualChildren = new VisualCollection(this);
@object = new Button {Content = "prova"};
visualChildren.Add(@object);
}
protected override Visual GetVisualChild(int index)
{
return visualChildren[index];
}
but i'm sure where to add it and same thing for this link
that propose
private bool IsItemDisconnected(object item)
{
bool isDisconnected = false;
var itemType = item.GetType();
if (itemType.FullName.Equals("MS.Internal.NamedObject"))
{
isDisconnected = true;
}
return isDisconnected;
}
this last link talk about a .NET 4 issue but i also have the bug on 3.5