VB.NET Custom Control (custom drawing) Refresh Problem - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T12:06:15Zhttp://stackoverflow.com/feeds/question/527611http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/527611/vb-net-custom-control-custom-drawing-refresh-problem2VB.NET Custom Control (custom drawing) Refresh Problemropstah2009-02-09T10:03:58Z2009-02-09T17:44:26Z
<p>Hi,</p>
<p>i've created a simple solution with 2 projects. The 1st project (class library) contains a custom control called Container which draws itself with rounded corners. The 2nd project (windows forms) is a test application.</p>
<p>If I add a Container instance to main Form in the 2nd project it shows the rounded corners nicely. Also when I run the 2nd project I can see the Container.</p>
<p>However when I start moving the form (click and hold the titlebar), especially when I move it very fastly, all the drawing is messed up, drawn over and over again but not clearing it's surface first...</p>
<p>I can call Container1.Refresh() in the Form1.Move event, but I don't want to set this everytime because this also means I have to call Container1.Refresh() in the Form1.Resize event and who knows which other event...</p>
<p>Is there an event in the Container (control) class itself where I should call Me.Refresh() or Me.Update() or Me.Invalidate() ?</p>
<p>For reference (Form1.vb)</p>
<pre><code>Public Class Form1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
End Sub
Private Sub Form1_Move(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Move
Me.Container1.Refresh()
End Sub
</code></pre>
<p>End Class</p>
<p>for reference (Container.vb):</p>
<pre><code>Imports System.Windows.Forms
Imports System.Drawing
Imports System.Drawing.Drawing2D
Public Class Container : Inherits Control
Private _Gp As GraphicsPath
Private Sub Container_Paint(ByVal sender As Object, ByVal e As System.Windows.Forms.PaintEventArgs) Handles Me.Paint
Dim r As Rectangle = e.ClipRectangle
Dim gp As New GraphicsPath
Dim cs As Integer = 25 'CornerSize'
r.Inflate(-5, -5)
gp.AddArc(r.X, r.Y, cs, cs, 180, 90)
gp.AddArc(r.X + r.Width - cs, r.Y, cs, cs, 270, 90)
gp.AddArc(r.X + r.Width - cs, r.Y + r.Height - cs, cs, cs, 0, 90)
gp.AddArc(r.X, r.Y + r.Height - cs, cs, cs, 90, 90)
Dim t As Single = cs / 2 + r.Y
gp.AddLine(r.X, r.Y + r.Height - cs, r.X, t)
e.Graphics.SmoothingMode = Drawing.Drawing2D.SmoothingMode.AntiAlias
e.Graphics.DrawPath(Pens.Black, gp)
End Sub
End Class
</code></pre>
http://stackoverflow.com/questions/527611/vb-net-custom-control-custom-drawing-refresh-problem/527626#5276261Answer by Konrad Rudolph for VB.NET Custom Control (custom drawing) Refresh ProblemKonrad Rudolph2009-02-09T10:07:57Z2009-02-09T10:13:14Z<p>It shouldn't be necessary to force a redraw here (under normal circumstances) since that redraw is automatically forced as soon as your control gets nudged.</p>
<p>However, what you <em>need</em> to do is clearing the background of your control before painting anything else: otherwise, your painting operation will mingle with previous painting processes. Just add an</p>
<pre><code>e.Graphics.Clear(BackColor)
</code></pre>
<p>before your other drawing operations in the <code>Paint</code> event handler. Also, consider using the <code>OnPaint</code> method rather than the <code>Paint</code> event since you subclass the control and don't <em>need</em> to resort to the <code>Paint</code> event handler.</p>
<p>For the record, <code>Refresh</code> forces a synchronous redraw which is usually not desired. Rather, use <code>Invalidate</code> which enqueues the redraw request into the default window message queue.</p>
http://stackoverflow.com/questions/527611/vb-net-custom-control-custom-drawing-refresh-problem/527653#5276533Answer by Bevan for VB.NET Custom Control (custom drawing) Refresh ProblemBevan2009-02-09T10:20:27Z2009-02-09T10:20:27Z<p>It looks to me as though your <code>Container</code> class isn't painting its entire area - normally a control is responsible for painting its <em>entire</em> rectangle.</p>
<p>In order to have a control that doesn't do this - that has transparent areas (like your rounded corners) - you need to give your control the <code>WS_EX_TRANSPARENT</code> property. Note that this is a Windows API subject, not a .NET one, so you're heading in the direction of some minor voodoo.</p>
<p>While it's written in C#, the CodeProject article <a href="http://www.codeproject.com/KB/miscctrl/transparent_controls.aspx" rel="nofollow">Making Transparent Controls with C# and .NET 3.5</a> does seem directly relevant to what you're trying to achieve.</p>
<p>To quote that article, you first need to override the constructor of your UserControl and configure the background:</p>
<pre><code>public TranspControl()
{
SetStyle(ControlStyles.SupportsTransparentBackColor, true);
SetStyle(ControlStyles.Opaque, true);
this.BackColor = Color.Transparent;
}
</code></pre>
<p>Then, you need to override the <code>CreateParams()</code> method to set the control style <code>WS_EX_TRANSPARENT</code>:</p>
<pre><code>protected override CreateParams CreateParams
{
get
{
CreateParams cp = base.CreateParams;
cp.ExStyle |= 0x20;
return cp;
}
}
</code></pre>
http://stackoverflow.com/questions/527611/vb-net-custom-control-custom-drawing-refresh-problem/529130#5291303Answer by nobugz for VB.NET Custom Control (custom drawing) Refresh Problemnobugz2009-02-09T17:44:26Z2009-02-09T17:44:26Z<p>This is your problem:</p>
<pre><code>Dim r As Rectangle = e.ClipRectangle
</code></pre>
<p>Change it to:</p>
<pre><code>Dim r As Rectangle = Me.ClientRectangle
</code></pre>