FTPUpFileForm.cs 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. using LYFZ.ComponentLibrary;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Data;
  6. using System.Drawing;
  7. using System.Linq;
  8. using System.Text;
  9. using System.Windows.Forms;
  10. namespace LYFZ.Software.UI.DoorCityProcess
  11. {
  12. public partial class FTPUpFileForm : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. protected List<CheckBoxEx> cbItems = new List<CheckBoxEx>();
  15. protected List<RadioButtonEx> rbFtpItems = new List<RadioButtonEx>();
  16. protected List<CheckBoxEx> cbBranchItems = new List<CheckBoxEx>();
  17. int localHeight = 0;
  18. protected float gbBoxHeight = 0;
  19. public FTPUpFileForm()
  20. {
  21. InitializeComponent();
  22. //cbItems.Add(cb_Scene);
  23. this.Shown += FTPUpFileForm_Shown;
  24. localHeight = this.Height;
  25. gbBoxHeight = gb_FTPInfo.Height;
  26. }
  27. void FTPUpFileForm_Shown(object sender, EventArgs e)
  28. {
  29. btn_cancel.Click += btn_Click;
  30. btn_Upfile.Click += btn_Click;
  31. cb_Scene.Click += cb_Scene_Click;
  32. CheckAndCloseFrm();
  33. }
  34. void CheckAndCloseFrm()
  35. {
  36. bool b = false;
  37. foreach (var mod in cbItems)
  38. {
  39. b = (mod.Enabled);
  40. if(b)
  41. {
  42. break;
  43. }
  44. }
  45. if (!b)
  46. {
  47. MessageBoxCustom.Show("没有找到相应文件,传片操作退出。");
  48. DialogResult = System.Windows.Forms.DialogResult.No;
  49. }
  50. }
  51. void cb_Scene_Click(object sender, EventArgs e)
  52. {
  53. foreach (var item in cbItems)
  54. {
  55. if (item.Enabled)
  56. {
  57. item.Checked = cb_Scene.Checked;
  58. }
  59. }
  60. }
  61. void btn_Click(object sender, EventArgs e)
  62. {
  63. switch(((ButtonEx)sender).Text)
  64. {
  65. case "取消":
  66. ButtonCancel(sender, e);
  67. break;
  68. case "上传":
  69. ButtonUpFile(sender, e);
  70. break;
  71. }
  72. }
  73. /// <summary>
  74. ///按钮点击上传
  75. /// </summary>
  76. /// <param name="sender"></param>
  77. /// <param name="e"></param>
  78. public virtual void ButtonCancel(object sender, EventArgs e)
  79. {
  80. this.DialogResult = System.Windows.Forms.DialogResult.No;
  81. this.Close();
  82. }
  83. /// <summary>
  84. /// 按钮点击取消
  85. /// </summary>
  86. /// <param name="sender"></param>
  87. /// <param name="e"></param>
  88. public virtual void ButtonUpFile(object sender, EventArgs e)
  89. {
  90. //CheckBoxEx cb = new CheckBoxEx();
  91. //AddCheckBoxModel(cb);
  92. this.DialogResult = System.Windows.Forms.DialogResult.OK;
  93. }
  94. /// <summary>
  95. /// 动态添加场景
  96. /// </summary>
  97. /// <param name="cbEx"></param>
  98. public virtual void AddCheckBoxModel(CheckBoxEx cbEx)
  99. {
  100. cbEx.Text=cbEx.Text.Replace(",", ",");
  101. cbItems.Add(cbEx);
  102. cbEx.AutoSize = true;
  103. int autoHeight = 0;
  104. if(cbItems.Count>0)
  105. {
  106. autoHeight += cbEx.Height * (cbItems.Count );
  107. groupBoxEx1.Controls.Add(cbEx);
  108. cbEx.Location = new Point(cb_Scene.Location.X, cb_Scene.Location.Y + cbEx.Height * (cbItems.Count ));
  109. }
  110. this.Size = new Size(this.Width, localHeight + autoHeight);
  111. }
  112. public virtual RadioButtonEx AddCheckBoxByFtpInfo(DataRow dr)
  113. {
  114. RadioButtonEx cbex = new RadioButtonEx();
  115. cbex.Text = dr["Company_Name"].ToString() + "(" + dr["FTP_Name"].ToString() + ")账户";
  116. cbex.AutoSize = true;
  117. cbex.Tag = dr;
  118. rbFtpItems.Add(cbex);
  119. this.gb_FTPInfo.Controls.Add(cbex);
  120. return cbex;
  121. }
  122. public virtual void FTPUpFileForm_Load(object sender, EventArgs e)
  123. {
  124. }
  125. }
  126. }