13 lines
273 B
C#
13 lines
273 B
C#
|
|
using System.Drawing;
|
|||
|
|
|
|||
|
|
namespace WeifenLuo.WinFormsUI.Docking
|
|||
|
|
{
|
|||
|
|
public static class LayoutUtils
|
|||
|
|
{
|
|||
|
|
public static bool IsZeroWidthOrHeight(Rectangle rectangle)
|
|||
|
|
{
|
|||
|
|
return (rectangle.Width == 0 || rectangle.Height == 0);
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|