Constants.cs 235 B

12345678910111213
  1. using System.Drawing;
  2. namespace CustomControls.Pattern
  3. {
  4. /// <summary>
  5. /// 常量
  6. /// </summary>
  7. public static class Constants
  8. {
  9. public static RectangleF Bounds = new RectangleF(0, 0, 100, 50);
  10. }
  11. }