在屏幕上绘制位图

时间:2014-04-01 13:04:44

标签: c# winforms bitmap drag-and-drop

我希望我的控件在拖动时显示在屏幕上。

private void flowLayoutPanel1_DragEnter(object sender, DragEventArgs e)
{
    FlowLayoutPanel _destination = (FlowLayoutPanel)sender;
    e.Effect = _destination.Controls.GetChildIndex(_destination.GetChildAtPoint(_destination.PointToClient(new Point(e.X, e.Y)))) >= 0 ? DragDropEffects.Move : DragDropEffects.None;


    foreach (Control control in flowLayoutPanel1.Controls)
    {
        List <Bitmap> controlsImgs = new List<Bitmap>();
        Rectangle controlsRect = new Rectangle(e.X,e.Y,control.Width,control.Height);
        Bitmap b = new Bitmap(control.Width, control.Height);
        control.DrawToBitmap(b, new Rectangle(0, 0, b.Width, b.Height));
        controlsImgs.Add(b);

    }

    for (int i = 0; i < controlsImgs.Count; i++)
    {
        //TODO
    }
}

这是我拥有的,我有一个FlowLayoutPanel,你可以拖放一些控件作为面板,在我的foreach语句中我希望每个控件转换成位图图像,所以在拖动时,在{ {1}}事件,我可以显示控件截图。我认为我做得很好,首先定义了一个DragEnter图像列表,然后用控件的宽度和高度创建了一个新的位图,然后我将该位图添加到我的Bitmap列表中。现在在我的for循环中,我必须在屏幕上绘制每个控件图像。怎么做 ?该控件的位置与鼠标位置相同,表示controlsImgs位置。

1 个答案:

答案 0 :(得分:0)

使用Control.DrawToBitmap。 (参见示例here。)

要设置新光标,请使用GiveFeedback事件。做:

e.UseDefaultCursors = false;
Cursor.Current = MyCursor;