コード例 #1
0
 public DragDropEffects DoDragDrop(object data, DragDropEffects allowedEffects)
 {
     LastDoDragDropArgs = new DoDragDropArgs()
     {
         Data = data, AllowedEffects = allowedEffects
     };
     return(NextDoDragDropResult);
 }
コード例 #2
0
ファイル: MockSite.cs プロジェクト: bbriggs/FieldWorks
		public DragDropEffects DoDragDrop(object data, DragDropEffects allowedEffects)
		{
			LastDoDragDropArgs = new DoDragDropArgs() {Data = data, AllowedEffects = allowedEffects};
			return NextDoDragDropResult;
		}