我想在它的覆盖绘制事件中绘制一个其他控件的控件。通过绘制我的意思是真正的绘图,而不是将控件放在另一个控件内。有没有好办法呢?
答案 0 :(得分:1)
尝试 ControlPaint 类上的静态方法。绘制的控件可能不像GUI的其余部分那样被剥离,但效果将非常可信。下面是我的一些代码的简化版本。它覆盖了ownerstrall ListBox的DrawItem方法,使用 ControlPaint.DrawButton 方法使列表项看起来像按钮。
对于复选框,组合,甚至拖动句柄,该类还有更多好东西。
protected override void OnDrawItem(System.Windows.Forms.DrawItemEventArgs e)
{
e.DrawBackground();
if (e.Index > -1)
{
String itemText = String.Format("{0}", this.Items.Count > 0 ? this.Items[e.Index] : this.Name);
//Snip
System.Windows.Forms.ControlPaint.DrawButton(e.Graphics, e.Bounds, ButtonState.Normal);
e.Graphics.DrawString(itemText, this.Font, SystemBrushes.ControlText, e.Bounds);
}
}
答案 1 :(得分:0)
也许您所追求的是一个“面板”,您可以从中继承并创建自己的行为?
class MyPanel : System.Windows.Forms.Panel
{
protected override void OnPaint(System.Windows.Forms.PaintEventArgs e)
{
base.OnPaint(e);
}
}
抓住e.graphics,你可以在控件的范围内做任何你想做的事情。从内存中你可以设置控件等的最小大小,但你需要跳转到MSDN中的windows.forms文档以获取更多细节(或者你可以在这里提出另一个问题;))。
或者,如果您的实例添加功能,您应该从控件继承您尝试增强和覆盖它的绘制方法?
也许您可以详细说明(在您的问题中)您希望为此做什么?
答案 2 :(得分:0)
public delegate void OnPaintDelegate( PaintEventArgs e );
private void panel1_Paint( object sender, PaintEventArgs e ) {
OnPaintDelegate paintDelegate = (OnPaintDelegate)Delegate.CreateDelegate(
typeof( OnPaintDelegate )
, this.button1
, "OnPaint" );
paintDelegate( e );
}
答案 3 :(得分:0)
您可以添加/覆盖OnPaint处理程序@TcKs建议或使用BitBlt函数:
[DllImport("gdi32.dll")]
private static extern bool BitBlt(
IntPtr hdcDest,
int nXDest,
int nYDest,
int nWidth,
int nHeight,
IntPtr hdcSrc,
int nXSrc,
int nYSrc,
int dwRop
);
private const Int32 SRCCOPY = 0xCC0020;
....
Graphics sourceGraphics = sourceControl.CreateGraphics();
Graphics targetGraphics = targetControl.CreateGraphics();
Size controlSize = sourceControl.Size;
IntPtr sourceDc = sourceGraphics.GetHdc();
IntPtr targerDc = targetGraphics.GetHdc();
BitBlt(targerDc, 0, 0, controlSize.Width, controlSize.Height, sourceDc, 0, 0, SRCCOPY);
sourceGraphics.ReleaseHdc(sourceDc);
targetGraphics.ReleaseHdc(targerDc);
答案 4 :(得分:0)
使用控件的DrawToBitmap方法可以非常轻松地完成此操作。这是一个片段,它将创建一个Button并将其绘制在相同大小的PictureBox上:
Button btn = new Button();
btn.Text = "Hey!";
Bitmap bmp = new Bitmap(btn.Width, btn.Height);
btn.DrawToBitmap(bmp, new Rectangle(0, 0, btn.Width, btn.Height));
PictureBox pb = new PictureBox();
pb.Size = btn.Size;
pb.Image = bmp;
要在另一个控件的Paint事件中使用此方法,您将如上所述从控件创建位图,然后在控件的表面上绘制它,如下所示:
e.Graphics.DrawImage(bmp, 0, 0);
bmp.Dispose();