Sprite.00.cs 538 B

123456789101112131415161718192021222324252627
  1. using System.ComponentModel;
  2. namespace Microsoft.Windows.Forms
  3. {
  4. /// <summary>
  5. /// 图元对象
  6. /// </summary>
  7. [Browsable(false)]
  8. public partial class Sprite : Disposable
  9. {
  10. /// <summary>
  11. /// 构造函数
  12. /// </summary>
  13. public Sprite()
  14. {
  15. }
  16. /// <summary>
  17. /// 构造函数
  18. /// </summary>
  19. /// <param name="owner">所有者</param>
  20. public Sprite(IUIControl owner)
  21. {
  22. this.m_Owner = owner;
  23. }
  24. }
  25. }