This is probably a stupid question, but..
I thought I'd experiment with drag-and-drop, so I did as instructed in the "getting started" subject in the documentation: added AllowDrag=True to the source and AlloDrop=true to the target:
Now, my user control displays nicely, but no drag-and-drop visual cues or anything.
It seems to me that the "getting started" subject is missing the last two-thirds...?
I thought I'd experiment with drag-and-drop, so I did as instructed in the "getting started" subject in the documentation: added AllowDrag=True to the source and AlloDrop=true to the target:
<UserControl x:Class="CreditSuisse.SDP.Client.Application.Workspace" xmlns:telerikDragDrop="clr-namespace:Telerik.Windows.Controls.DragDrop;assembly=Telerik.Windows.Controls" mc:Ignorable="d" > <Grid> <Grid.ColumnDefinitions> <ColumnDefinition Width="*"/> <ColumnDefinition Width="*"/> </Grid.ColumnDefinitions> <StackPanel Grid.Column="0" Orientation="Vertical" Background="LightBlue" VerticalAlignment="Stretch"> <TextBlock x:Name="item1" Background="Blue" Width="75" Height="75" VerticalAlignment="Center" HorizontalAlignment="Center" telerikDragDrop:RadDragAndDropManager.AllowDrag="True" Text="qwerty"/> </StackPanel> <StackPanel Grid.Column="1" Orientation="Vertical" Background="LightGreen" VerticalAlignment="Stretch" telerikDragDrop:RadDragAndDropManager.AllowDrop="True" Drop="StackPanel_Drop"> </StackPanel> </Grid> </UserControl>Now, my user control displays nicely, but no drag-and-drop visual cues or anything.
It seems to me that the "getting started" subject is missing the last two-thirds...?