Skip to content

Instantly share code, notes, and snippets.

@olohmann
Created September 14, 2009 19:32
Show Gist options
  • Save olohmann/186874 to your computer and use it in GitHub Desktop.
Save olohmann/186874 to your computer and use it in GitHub Desktop.
public class DragDropFriendlyListBox : ListBox
{
/// <summary>
/// Gets the container for item override.
/// </summary>
/// <returns>The DragDropFriendlyListBoxItem container.</returns>
protected override DependencyObject GetContainerForItemOverride()
{
return new DragDropFriendlyListBoxItem();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment