123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
-
- 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 = "IFormScale")]
- public partial class FormScale : Tofly.CoreUI.Win.Form.Forms.FormClass, IFormScale
- {
- public FormScale()
- {
- InitializeComponent();
- }
- #region IFormScale 成员
- ISpinEdit IFormScale.spEdWidth
- {
- get { return this.spEdWidth; }
- }
- ISpinEdit IFormScale.spEdHeight
- {
- get { return this.spEdHeight; }
- }
- IButton IFormScale.btnOK
- {
- get { return this.btnOK; }
- }
- IButton IFormScale.btnCancel
- {
- get { return this.btnCancel; }
- }
- #endregion
- }
- }
|