21 lines
454 B
C#
21 lines
454 B
C#
|
|
using System.Drawing;
|
|||
|
|
|
|||
|
|
namespace WeifenLuo.WinFormsUI.Docking
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public static class LayoutUtils
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="rectangle"></param>
|
|||
|
|
/// <returns></returns>
|
|||
|
|
public static bool IsZeroWidthOrHeight(Rectangle rectangle)
|
|||
|
|
{
|
|||
|
|
return (rectangle.Width == 0 || rectangle.Height == 0);
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|