FormDisplay.cs 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. //======================================================================
  2. //
  3. // Copyright (C) 2013
  4. //
  5. // CLR 版本: 4.0.30319.1
  6. // 命名空间: Tofly.GISUI.RasterAdjust.Win
  7. // 类 名: FormDisplay
  8. // 创 建 人: 李在海
  9. // 创建时间: 2013/7/12 11:03:42
  10. // 修 改 人:
  11. // 修改时间:
  12. //
  13. //======================================================================
  14. using System;
  15. using System.Collections.Generic;
  16. using System.ComponentModel;
  17. using System.Data;
  18. using System.Drawing;
  19. using System.Linq;
  20. using System.Text;
  21. using System.Windows.Forms;
  22. using Tofly.GISUI.RasterAdjust.Form;
  23. using Tofly.CoreUI.Control;
  24. namespace Tofly.GISUI.RasterAdjust.Win
  25. {
  26. [Tofly.Core.Stereotype.Component(IsSingleton = "false", Name = "IFormDisplay")]
  27. public partial class FormDisplay : Tofly.CoreUI.Win.Form.Forms.FormClass, IFormDisplay
  28. {
  29. public FormDisplay()
  30. {
  31. InitializeComponent();
  32. }
  33. #region IFormDisplay 成员
  34. IComboBox IFormDisplay.cboLayer
  35. {
  36. get { return this.cboLayer; }
  37. }
  38. ISpinEdit IFormDisplay.spEdContrast
  39. {
  40. get { return this.spEdContrast; }
  41. }
  42. ISpinEdit IFormDisplay.spEdBrightness
  43. {
  44. get { return this.spEdBrightness; }
  45. }
  46. ISpinEdit IFormDisplay.spEdTransparency
  47. {
  48. get { return this.spEdTransparency; }
  49. }
  50. IButton IFormDisplay.btnDefault
  51. {
  52. get { return this.btnDefault; }
  53. }
  54. IButton IFormDisplay.btnOK
  55. {
  56. get { return this.btnOK; }
  57. }
  58. IButton IFormDisplay.btnCancel
  59. {
  60. get { return this.btnCancel; }
  61. }
  62. #endregion
  63. }
  64. }