System.Windows.Forms.ThemeWin32Classic.ManagedWindowBorderWidth C# (CSharp) Method

ManagedWindowBorderWidth() public method

public ManagedWindowBorderWidth ( System.Windows.Forms.InternalWindowManager wm ) : int
wm System.Windows.Forms.InternalWindowManager
return int
		public override int ManagedWindowBorderWidth (InternalWindowManager wm)
		{
			if ((wm.IsToolWindow && wm.form.FormBorderStyle == FormBorderStyle.FixedToolWindow) ||
				wm.IsMinimized)
				return 3;
			else
				return 4;
		}
ThemeWin32Classic