frmSystemSetting.cs 904 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. namespace LYFZ.Software.UI
  10. {
  11. public partial class frmSystemSetting : LYFZ.ComponentLibrary.BaseContentsFormMain
  12. {
  13. public frmSystemSetting()
  14. {
  15. InitializeComponent();
  16. }
  17. public LYFZ.ComponentLibrary.ButtonEx BtnSave {
  18. get { return this.btnSave; }
  19. }
  20. public LYFZ.ComponentLibrary.ButtonEx BtnClose
  21. {
  22. get { return this.btnClose; }
  23. }
  24. public ComponentLibrary.TabControlEx SetTabControlEx
  25. {
  26. get { return this.tabControlEx1; }
  27. }
  28. public System.Windows.Forms.TabPage GeneralSettingTabPage
  29. {
  30. get { return this.tabPage1; }
  31. }
  32. }
  33. }