123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
-
- 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 = "IFormDisplay")]
- public partial class FormDisplay : Tofly.CoreUI.Win.Form.Forms.FormClass, IFormDisplay
- {
- public FormDisplay()
- {
- InitializeComponent();
- }
- #region IFormDisplay 成员
- IComboBox IFormDisplay.cboLayer
- {
- get { return this.cboLayer; }
- }
- ISpinEdit IFormDisplay.spEdContrast
- {
- get { return this.spEdContrast; }
- }
- ISpinEdit IFormDisplay.spEdBrightness
- {
- get { return this.spEdBrightness; }
- }
- ISpinEdit IFormDisplay.spEdTransparency
- {
- get { return this.spEdTransparency; }
- }
- IButton IFormDisplay.btnDefault
- {
- get { return this.btnDefault; }
- }
- IButton IFormDisplay.btnOK
- {
- get { return this.btnOK; }
- }
- IButton IFormDisplay.btnCancel
- {
- get { return this.btnCancel; }
- }
- #endregion
- }
- }
|