//======================================================================
//
//        Copyright (C) 2013 
//
//        CLR 版本: 4.0.30319.1
//        命名空间: Tofly.GISUI.RasterAdjust.Win
//        类    名: FormScale
//        创 建 人: 李在海
//        创建时间: 2013/7/11 15:47:07
//        修 改 人: 
//        修改时间: 
//
//======================================================================

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
    }
}