FormAutoAdjust.cs 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. //======================================================================
  2. //
  3. // Copyright (C) 2013
  4. //
  5. // CLR 版本: 4.0.30319.1
  6. // 命名空间: Tofly.GISUI.RasterAdjust.Win
  7. // 类 名: FormAutoAdjust
  8. // 创 建 人: 李在海
  9. // 创建时间: 2013/7/17 10:32:49
  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 = "IFormAutoAdjust")]
  27. public partial class FormAutoAdjust : Tofly.CoreUI.Win.Form.Forms.FormClass, IFormAutoAdjust
  28. {
  29. public FormAutoAdjust()
  30. {
  31. InitializeComponent();
  32. }
  33. #region IFormAutoAdjust 成员
  34. CoreUI.Control.IListBox IFormAutoAdjust.lstFiles
  35. {
  36. get { return this.lstFiles; }
  37. }
  38. CoreUI.Control.IButton IFormAutoAdjust.btnOpenFiles
  39. {
  40. get { return this.btnOpenFiles; }
  41. }
  42. CoreUI.Control.IButton IFormAutoAdjust.btnDeleteFiles
  43. {
  44. get { return this.btnDeleteFiles; }
  45. }
  46. CoreUI.Control.IButton IFormAutoAdjust.btnOpenFromList
  47. {
  48. get { return this.btnOpenFromList; }
  49. }
  50. CoreUI.Control.IButton IFormAutoAdjust.btnSaveToList
  51. {
  52. get { return this.btnSaveToList; }
  53. }
  54. CoreUI.Control.IRadioGroup IFormAutoAdjust.rdoSelectType
  55. {
  56. get { return this.rdoSelectType; }
  57. }
  58. CoreUI.Control.IRadioGroup IFormAutoAdjust.rdoSpatialReference
  59. {
  60. get { return this.rdoSpatialReference; }
  61. }
  62. CoreUI.Control.IButton IFormAutoAdjust.btnAdjust
  63. {
  64. get { return this.btnAdjust; }
  65. }
  66. CoreUI.Control.IButton IFormAutoAdjust.btnExit
  67. {
  68. get { return this.btnExit; }
  69. }
  70. CoreUI.Control.IComboBox IFormAutoAdjust.cboAdjustType
  71. {
  72. get { return this.cboAdjustType; }
  73. }
  74. CoreUI.Control.IListBox IFormAutoAdjust.lstReport
  75. {
  76. get { return this.lstReport; }
  77. }
  78. CoreUI.Control.IButton IFormAutoAdjust.btnSaveReport
  79. {
  80. get { return this.btnSaveReport; }
  81. }
  82. #endregion
  83. }
  84. }