123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
-
- 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 = "IFormGetGrid")]
- public partial class FormGetGrid : Tofly.CoreUI.Win.Form.Forms.FormClass, IFormGetGrid
- {
- public FormGetGrid()
- {
- InitializeComponent();
- }
- #region IFormGetGrid 成员
- ITextBox IFormGetGrid.txtSheetNumber
- {
- get { return this.txtSheetNumber; }
- }
- ILabel IFormGetGrid.lblSheetNumber
- {
- get { return this.lblSheetNumber; }
- }
- IRadioGroup IFormGetGrid.rdoSpatialReference
- {
- get { return this.rdoSpatialReference; }
- }
- ICheckBox IFormGetGrid.chkNumber
- {
- get { return this.chkNumber; }
- }
- ISpinEdit IFormGetGrid.spEdSpacing
- {
- get { return this.spEdSpacing; }
- }
- ILabel IFormGetGrid.lblSpacing
- {
- get { return this.lblSpacing; }
- }
- IButton IFormGetGrid.btnOK
- {
- get { return this.btnOK; }
- }
- IButton IFormGetGrid.btnCancel
- {
- get { return this.btnCancel; }
- }
- #endregion
- }
- }
|