I altered this custom button for NETCF: http://www.codeproject.com/cs/miscctrl/PocketPCColourBtn.asp
For some reason, which I cannot figure out, when you add a new button to a form the default size is always 200 x 200 pixels. I've opened up all files in the entire package in Emacs and searched for the string "200". I got no relevant hits. Is that size inherited from System.Windows.Forms.Control How do I set a new default size I tried to do it in the constructor with no luck.
/Lars

How to set the default size of a custom control in C#
Cem DEMiRKIR
jam281
RoobyDoo
Aaron Oneal
Error 3 'ColourControls.ColourButton.OnHandleCreated()': no suitable method found to override C:\Proj VS 2005\Bromma\GUIet\Rund Knapp - Custom control - AdvButton\ColourControls\ColourButton.cs 200 29 ColourControls
protected override void OnHandleCreated()
{
Width = 50;
Height = 50;
}