@msdn=http://search.microsoft.com/search/results.aspx?qu=$$$ @pinvoke=http://pinvoke.net/$$$.htm Summary: The CreateRoundRectRgn API !!!!C# Signature: [DllImport("gdi32.dll")] static extern IntPtr CreateRoundRectRgn(int x1, int y1, int x2, int y2, int cx, int cy); !!!!User-Defined Types: None. !!!!Notes: None. !!!!Tips & Tricks: Please add some! !!!!Sample Code: private void Form_Paint( object p_SenderObject, System.Windows.Forms.PaintEventArgs p_Arguments ) { IntPtr _RegionHandle = CreateRoundRectRgn( 10, 10, 60, 60, 10, 10 ); Region _Region = Region.FromHrgn( _RegionHandle ); p_Arguments.Graphics.FillRegion( new SolidBrush( Color.Black ), _Region ); } !!!!Alternative Managed API: Do you know one? Please contribute it! Documentation: CreateRoundRectRgn@msdn on MSDN
Edit gdi32.CreateRound...
You do not have permission to change this page. If you feel this is in error, please send feedback with the contact link on the main page.