System.Windows.Forms.Control

1. virtual fuctions OnPaint, OnCreated are breaking, but System.EventHandler
is good
.
2.SetStyle(System.Windows.Forms.ControlStyles.Opaque,false);

is breaking (I try it in inner constructor class from inherit)

but bellow is good:

System.Drawing.Bitmap bitmap=new
System.Drawing.Bitmap(control.Width,control.Height);

bitmap.MakeTransparent(control.BackColor);

control.BackgroundImage=bitmap;

Re: errors 1.1 by Piotr

Piotr
Thu Mar 23 11:39:59 CST 2006


> System.Drawing.Bitmap bitmap=new
> System.Drawing.Bitmap(control.Width,control.Height);
>
> bitmap.MakeTransparent(control.BackColor);
>
> control.BackgroundImage=bitmap;

with System.Windows.Forms.RichTextBox is breaking. (with Control runing
good)



Re: errors 1.1 by Piotr

Piotr
Thu Mar 23 12:49:56 CST 2006

3. System.Drawing.Font.Width should be present.