コード例 #1
0
ファイル: Control.cs プロジェクト: zdf0221/Unity-WinForms
 public DragDropEffects DoDragDrop(object data, DragDropEffects allowedEffects)
 {
     Application.DoDragDrop(data, allowedEffects);
     return(allowedEffects); // TODO: ?
 }
コード例 #2
0
ファイル: Control.cs プロジェクト: zdf0221/Unity-WinForms
 internal DragDropEffects DoDragDrop(object data, DragDropEffects allowedEffects, DragDropRenderHandler render)
 {
     Application.DoDragDrop(data, allowedEffects, render);
     return(allowedEffects); // TODO: ?
 }
コード例 #3
0
ファイル: Control.cs プロジェクト: richmondx/Unity-WinForms
 public DragDropEffects DoDragDrop(object data, DragDropEffects allowedEffects, DragDropRenderHandler render)
 {
     Application.DoDragDrop(data, allowedEffects, render);
     return(DragDropEffects.None); // TODO: ?
 }