当前位置: 首页>>代码示例>>C#>>正文


C# Control.DoDragDrop方法代码示例

本文整理汇总了C#中Control.DoDragDrop方法的典型用法代码示例。如果您正苦于以下问题:C# Control.DoDragDrop方法的具体用法?C# Control.DoDragDrop怎么用?C# Control.DoDragDrop使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Control的用法示例。


在下文中一共展示了Control.DoDragDrop方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: DoDragDropInternal

        /// <summary>
        /// Performs a default drag and drop operation for the specified drag source.
        /// </summary>
        /// <param name="control">The drag source Control.</param>
        /// <param name="dataObject">The data object associated to the drag and drop operation.</param>
        /// <param name="allowedEffects">The allowed drop effects.</param>
        /// <param name="data">The associated data.</param>
        /// <returns>The accepted drop effects from the completed operation.</returns>
        private static DragDropEffects DoDragDropInternal(Control control, IDataObject dataObject,
            DragDropEffects allowedEffects,
            KeyValuePair<string, object>[] data)
        {
            // Set the data onto the data object.
            if (data != null)
            {
                foreach (KeyValuePair<string, object> dataPair in data)
                    dataObject.SetDataEx(dataPair.Key, dataPair.Value);

            }

            try
            {
                return control.DoDragDrop(dataObject, allowedEffects);
            }
            finally
            {
                UnregisterDefaultDragSource(control);
            }
        }
开发者ID:applejian,项目名称:cyberduck,代码行数:29,代码来源:DragDropLib.cs

示例2: DoDragDrop

        ///yla ext
        public static DragDropEffects DoDragDrop(Control control, Bitmap dragImage, Point cursorOffset,
            DragDropEffects allowedEffects,
            Runtime.InteropServices.ComTypes.IDataObject data)
        {
            AllowDropDescription(true);

            DataObject d =  new DataObject(data);
            ((IDataObject) d).SetDragImage(dragImage, cursorOffset);
            RegisterDefaultDragSource(control, d);
            try
            {
                return control.DoDragDrop(d, allowedEffects);
            }
            finally
            {
                UnregisterDefaultDragSource(control);
            }
        }
开发者ID:applejian,项目名称:cyberduck,代码行数:19,代码来源:DragDropLib.cs


注:本文中的Control.DoDragDrop方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。