当前位置: 代码迷 >> Delphi >> surfacelistbox和ScatterView 实现拖拽图片的功能,该如何处理
  详细解决方案

surfacelistbox和ScatterView 实现拖拽图片的功能,该如何处理

热度:3235   发布时间:2013-02-25 00:00:00.0
surfacelistbox和ScatterView 实现拖拽图片的功能
我后台代码生成的surfacelistbox,如何后台添加SurfaceDragDrop.DragEnter事件?  
前台生成代码:<s:SurfaceListBox
        Name="DropTarget" 
        Grid.Column="1"
        Width="210" Margin="50"
        Background="Gray"
        AllowDrop="True"
        ItemTemplate="{StaticResource SurfaceListBoxItemDataTemplate}"
        ItemsSource="{Binding Path=TargetItems}"
        s:SurfaceDragDrop.DragEnter="DropTargetDragEnter"
        s:SurfaceDragDrop.DragLeave="DropTargetDragLeave"
        s:SurfaceDragDrop.Drop="DropTargetDrop"/>
后台实例化SurfaceListBox,
SurfaceListBox listbox=new SurfaceListBox();如何添加 
        s:SurfaceDragDrop.DragEnter="DropTargetDragEnter"
        s:SurfaceDragDrop.DragLeave="DropTargetDragLeave"
        s:SurfaceDragDrop.Drop="DropTargetDrop"这几个事件,高手指点啊。。。。。。。。。。。。。。。
------解决方案--------------------------------------------------------
顶下。。。。。。。。。
  相关解决方案