FormScale.cs 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. //======================================================================
  2. //
  3. // Copyright (C) 2013
  4. //
  5. // CLR 版本: 4.0.30319.1
  6. // 命名空间: Tofly.GISUI.RasterAdjust.Win
  7. // 类 名: FormScale
  8. // 创 建 人: 李在海
  9. // 创建时间: 2013/7/11 15:47:07
  10. // 修 改 人:
  11. // 修改时间:
  12. //
  13. //======================================================================
  14. using System;
  15. using System.Collections.Generic;
  16. using System.ComponentModel;
  17. using System.Data;
  18. using System.Drawing;
  19. using System.Linq;
  20. using System.Text;
  21. using System.Windows.Forms;
  22. using Tofly.GISUI.RasterAdjust.Form;
  23. using Tofly.CoreUI.Control;
  24. namespace Tofly.GISUI.RasterAdjust.Win
  25. {
  26. [Tofly.Core.Stereotype.Component(IsSingleton = "false", Name = "IFormScale")]
  27. public partial class FormScale : Tofly.CoreUI.Win.Form.Forms.FormClass, IFormScale
  28. {
  29. public FormScale()
  30. {
  31. InitializeComponent();
  32. }
  33. #region IFormScale 成员
  34. ISpinEdit IFormScale.spEdWidth
  35. {
  36. get { return this.spEdWidth; }
  37. }
  38. ISpinEdit IFormScale.spEdHeight
  39. {
  40. get { return this.spEdHeight; }
  41. }
  42. IButton IFormScale.btnOK
  43. {
  44. get { return this.btnOK; }
  45. }
  46. IButton IFormScale.btnCancel
  47. {
  48. get { return this.btnCancel; }
  49. }
  50. #endregion
  51. }
  52. }