DragHandleAnchor.cs 549 字节
namespace AccAOI
{
    // Cyotek ImageBox
    // Copyright (c) 2010-2014 Cyotek.
    // http://cyotek.com
    // http://cyotek.com/blog/tag/imagebox

    // Licensed under the MIT License. See imagebox-license.txt for the full text.

    // If you use this control in your applications, attribution, donations or contributions are welcome.

    public enum DragHandleAnchor
  {
    None,

    TopLeft,

    TopCenter,

    TopRight,

    MiddleLeft,

    MiddleCenter,

    MiddleRight,

    BottomLeft,

    BottomCenter,

    BottomRight
  }
}