在屏幕上绘制位图

本文关键字:位图 绘制 屏幕 | 更新日期: 2023-09-27 17:56:01

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

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语句中,我希望每个控件都转换为位图图像,因此在拖动时,DragEnter事件中,我可以显示控件屏幕截图。我认为我做得正确,首先定义了Bitmap图像的列表,然后制作了一个带有控件宽度和高度的新位图,然后将该位图添加到我的controlsImgs列表中。现在在我的 for 循环中,我必须在屏幕上绘制每个控件图像。怎么办呢?该控件的位置与鼠标位置相同,表示e位置。

在屏幕上绘制位图

使用 Control.DrawToBitmap .(请参阅此处的示例。

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

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