1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
-
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Windows.Forms;
- using Tofly.GISUI.RasterAdjust.Form;
- using Tofly.CoreUI.Control;
- namespace Tofly.GISUI.RasterAdjust.Win
- {
- [Tofly.Core.Stereotype.Component(IsSingleton = "false", Name = "IFormSaveAs")]
- public partial class FormSaveAs : Tofly.CoreUI.Win.Form.Forms.FormClass, IFormSaveAs
- {
- public FormSaveAs()
- {
- InitializeComponent();
- }
- #region IFormSaveAs 成员
- ICheckBox IFormSaveAs.chkResampling
- {
- get { return this.chkResampling; }
- }
- ISpinEdit IFormSaveAs.spEdCellSize
- {
- get { return this.spEdCellSize; }
- }
- IComboBox IFormSaveAs.cboResamplingType
- {
- get { return this.cboResamplingType; }
- }
- IButton IFormSaveAs.btnOpen
- {
- get { return this.btnOpen; }
- }
- ITextBox IFormSaveAs.txtPath
- {
- get { return this.txtPath; }
- }
- ICheckBox IFormSaveAs.chkWorldFileExport
- {
- get { return this.chkWorldFileExport; }
- }
- IButton IFormSaveAs.btnOK
- {
- get { return this.btnOK; }
- }
- IButton IFormSaveAs.btnCancel
- {
- get { return this.btnCancel; }
- }
- #endregion
- }
- }
|