FormSaveAs.cs 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. //======================================================================
  2. //
  3. // Copyright (C) 2013
  4. //
  5. // CLR 版本: 4.0.30319.1
  6. // 命名空间: Tofly.GISUI.RasterAdjust.Win
  7. // 类 名: FormSaveAs
  8. // 创 建 人: 李在海
  9. // 创建时间: 2013/6/19 10:37:23
  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 = "IFormSaveAs")]
  27. public partial class FormSaveAs : Tofly.CoreUI.Win.Form.Forms.FormClass, IFormSaveAs
  28. {
  29. public FormSaveAs()
  30. {
  31. InitializeComponent();
  32. }
  33. #region IFormSaveAs 成员
  34. ICheckBox IFormSaveAs.chkResampling
  35. {
  36. get { return this.chkResampling; }
  37. }
  38. ISpinEdit IFormSaveAs.spEdCellSize
  39. {
  40. get { return this.spEdCellSize; }
  41. }
  42. IComboBox IFormSaveAs.cboResamplingType
  43. {
  44. get { return this.cboResamplingType; }
  45. }
  46. IButton IFormSaveAs.btnOpen
  47. {
  48. get { return this.btnOpen; }
  49. }
  50. ITextBox IFormSaveAs.txtPath
  51. {
  52. get { return this.txtPath; }
  53. }
  54. ICheckBox IFormSaveAs.chkWorldFileExport
  55. {
  56. get { return this.chkWorldFileExport; }
  57. }
  58. IButton IFormSaveAs.btnOK
  59. {
  60. get { return this.btnOK; }
  61. }
  62. IButton IFormSaveAs.btnCancel
  63. {
  64. get { return this.btnCancel; }
  65. }
  66. #endregion
  67. }
  68. }