New to Telerik UI for WPF? Download free 30-day trial

Set Drag Visual

DragDropManager enables you to define your own custom drag cue. This can be easily done by handling the DragInitialize event and defining the DragVisual.

We will demonstrate this functionality implemented within a simple ListBox. For the purpose we need to execute the following steps:

  1. Create a ListBox with ItemTemplate and implicit Style for the ListBox Items:

        <Grid x:Name="LayoutRoot" Background="White"> 
             <Grid.Resources> 
                  <DataTemplate x:Name="ItemTemplate"> 
                      <Border Background="Orange"> 
                          <TextBlock Text="{Binding}" /> 
                      </Border> 
                  </DataTemplate> 
                  <Style TargetType="ListBoxItem"> 
                      <Setter Property="telerik:DragDropManager.AllowCapturedDrag" Value="True" /> 
                  </Style> 
              </Grid.Resources> 
              <ListBox x:Name="SampleListBox" ItemsSource="{Binding}" AllowDrop="True"  
                       ItemTemplate="{StaticResource ItemTemplate}" /> 
        </Grid> 
  2. Bind ListBox to simple data and subscribe to DragInitialize event:

        public MainPage() 
        { 
              InitializeComponent(); 
              this.DataContext = new ObservableCollection<string>(from c in Enumerable.Range(0, 10) select "Item" + c); 
              DragDropManager.AddDragInitializeHandler(SampleListBox, OnDragInitialize); 
        } 
  3. Set suitable drag visual that will be displayed while dragging is performed:

        private void OnDragInitialize(object sender, DragInitializeEventArgs args) 
        { 
            args.Data = ((FrameworkElement)args.OriginalSource).DataContext; 
            args.DragVisual = new ContentControl { ContentTemplate = this.LayoutRoot.Resources["ItemTemplate"] as DataTemplate, Content = args.Data }; 
            args.AllowedEffects = DragDropEffects.All; 
            args.Handled = true; 
        } 

On running the application, the following will be visualized:

WPF Drag Drop Visual Cue

In this article