frmLoginSettings.cs 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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 frmLoginSettings : LYFZ.ComponentLibrary.BaseContentsFormMain
  12. {
  13. public frmLoginSettings()
  14. {
  15. InitializeComponent();
  16. this.IsLoginValidation = false;
  17. }
  18. public LYFZ.ComponentLibrary.TextBoxEx TxtHostName
  19. {
  20. get { return this.txtHostName; }
  21. }
  22. public LYFZ.ComponentLibrary.TextBoxEx TxtHostPort
  23. {
  24. get { return this.txtHostPort; }
  25. }
  26. public LYFZ.ComponentLibrary.ButtonEx BtnEnter
  27. {
  28. get { return this.btnEnter; }
  29. }
  30. public LYFZ.ComponentLibrary.ButtonEx BtnFrmClose
  31. {
  32. get { return this.btnFrmClose; }
  33. }
  34. public LYFZ.ComponentLibrary.CheckBoxEx CbxTestshareddirectory {
  35. get { return this.cbx_Testshareddirectory; }
  36. }
  37. public LYFZ.ComponentLibrary.CheckBoxEx ChbUpdate
  38. {
  39. get { return this.chbUpdate; }
  40. }
  41. }
  42. }