我后台代码生成的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"这几个事件,高手指点啊。。。。。。。。。。。。。。。
------解决方案--------------------------------------------------------
顶下。。。。。。。。。