Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Can't Get Form's Paint Method To Work...
Message
From
28/11/2006 09:24:39
Alexandre Palma
Harms Software, Inc.
Alverca, Portugal
 
General information
Forum:
ASP.NET
Category:
Other
Environment versions
Environment:
VB 8.0
OS:
Windows XP SP2
Network:
Windows 2003 Server
Database:
MS SQL Server
Miscellaneous
Thread ID:
01172750
Message ID:
01172920
Views:
13
and if you try e.Graphics.FillRectangle(brushBlueGradient, RectangleF.op_Implicit(ClientRectangle)) instead of e.Graphics.FillRectangle(brushBlueGradient, New Rectangle(0, 0, Me.ClientSize.Width, Me.ClientSize.Height))

>Hi, and thank you for the response. I did as you suggested and changed my method to be as follows:
>
>
>    Protected Overrides Sub OnPaint(ByVal e As System.Windows.Forms.PaintEventArgs)
>        '***************************************
>        ' Call The Base Paint Method
>        '***************************************
>        MyBase.OnPaint(e)
>
>        '***************************************
>        ' Initialize Variables
>        '***************************************
>        Dim brushBlueGradient As LinearGradientBrush
>
>        '***************************************
>        ' Default Values
>        '***************************************
>        brushBlueGradient = New LinearGradientBrush(Me.ClientRectangle, _
>                                                    Color.FromArgb(115, 160, 196), _
>                                                    Color.FromArgb(194, 213, 224), _
>                                                    LinearGradientMode.Vertical)
>
>        '***************************************
>        ' Draw Main Gradient Area
>        '***************************************
>        e.Graphics.FillRectangle(brushBlueGradient, New Rectangle(0, 0, Me.ClientSize.Width, Me.ClientSize.Height))
>    End Sub
>
>
>Unfortunatly, still no luck. The background of the MDI Parent form is still dark grey. Any ideas?
Alexandre Palma
Senior Application Architect
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform