123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
-
- 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 = "IFormAutoAdjust")]
- public partial class FormAutoAdjust : Tofly.CoreUI.Win.Form.Forms.FormClass, IFormAutoAdjust
- {
- public FormAutoAdjust()
- {
- InitializeComponent();
- }
- #region IFormAutoAdjust 成员
- CoreUI.Control.IListBox IFormAutoAdjust.lstFiles
- {
- get { return this.lstFiles; }
- }
- CoreUI.Control.IButton IFormAutoAdjust.btnOpenFiles
- {
- get { return this.btnOpenFiles; }
- }
- CoreUI.Control.IButton IFormAutoAdjust.btnDeleteFiles
- {
- get { return this.btnDeleteFiles; }
- }
- CoreUI.Control.IButton IFormAutoAdjust.btnOpenFromList
- {
- get { return this.btnOpenFromList; }
- }
- CoreUI.Control.IButton IFormAutoAdjust.btnSaveToList
- {
- get { return this.btnSaveToList; }
- }
- CoreUI.Control.IRadioGroup IFormAutoAdjust.rdoSelectType
- {
- get { return this.rdoSelectType; }
- }
- CoreUI.Control.IRadioGroup IFormAutoAdjust.rdoSpatialReference
- {
- get { return this.rdoSpatialReference; }
- }
- CoreUI.Control.IButton IFormAutoAdjust.btnAdjust
- {
- get { return this.btnAdjust; }
- }
- CoreUI.Control.IButton IFormAutoAdjust.btnExit
- {
- get { return this.btnExit; }
- }
- CoreUI.Control.IComboBox IFormAutoAdjust.cboAdjustType
- {
- get { return this.cboAdjustType; }
- }
- CoreUI.Control.IListBox IFormAutoAdjust.lstReport
- {
- get { return this.lstReport; }
- }
- CoreUI.Control.IButton IFormAutoAdjust.btnSaveReport
- {
- get { return this.btnSaveReport; }
- }
- #endregion
- }
- }
|