PrintVersionSelectSuperSmallForm.cs 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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.MainBusiness.ReportPrint.SuperSmallForm
  10. {
  11. public partial class PrintVersionSelectSuperSmallForm : LYFZ.Software.UI.ReportPrint.SuperSmallForm.PrintVersionSelectSuperSmallForm
  12. {
  13. public PrintVersionSelectSuperSmallForm()
  14. {
  15. }
  16. private string _loadtype = "";
  17. public string LoadType
  18. {
  19. set { _loadtype = value; }
  20. get { return _loadtype; }
  21. }
  22. private string _englishname = "";
  23. public string EnglishName
  24. {
  25. set { _englishname = value; }
  26. get { return _englishname; }
  27. }
  28. /// <summary>
  29. /// 窗体加载事件
  30. /// </summary>
  31. /// <param name="sender"></param>
  32. /// <param name="e"></param>
  33. protected override void PrintVersionSelect_Load(object sender, EventArgs e)
  34. {
  35. if (LoadType != "")
  36. {
  37. DataTable tbl = new LYFZ.BLL.BLL_ErpReportModel().GetList("Rmd_ChineseName='" + LoadType + "'").Tables[0];
  38. for (int i = 0; i < tbl.Rows.Count; i++)
  39. {
  40. DataGridViewRow dgvr = new DataGridViewRow();
  41. DataGridViewCell cell = null;
  42. cell = new DataGridViewTextBoxCell();
  43. cell.Value = tbl.Rows[i]["Rmd_ChineseName"].ToString().Trim() + "_" + tbl.Rows[i]["Rmd_VersionName"].ToString().Trim();
  44. dgvr.Cells.Add(cell);
  45. cell = new DataGridViewTextBoxCell();
  46. cell.Value = tbl.Rows[i]["Rmd_EnglishName"].ToString().Trim();
  47. dgvr.Cells.Add(cell);
  48. this.dgvData.Rows.Add(dgvr);
  49. }
  50. }
  51. }
  52. /// <summary>
  53. /// 数据列表双击事件
  54. /// </summary>
  55. /// <param name="sender"></param>
  56. /// <param name="e"></param>
  57. protected override void dgvData_DoubleClick(object sender, EventArgs e)
  58. {
  59. if (this.dgvData.Rows.Count > 0)
  60. {
  61. if (this.dgvData.CurrentRow.Index >= 0)
  62. {
  63. if (MessageBoxCustom.Show("你选择了" + this.dgvData.Rows[this.dgvData.CurrentRow.Index].Cells["Column1"].Value.ToString().Trim() + "做打印,\r\n 是否确定", "温馨提示", MessageBoxButtons.YesNo) == DialogResult.Yes)
  64. {
  65. EnglishName = this.dgvData.Rows[this.dgvData.CurrentRow.Index].Cells["Column2"].Value.ToString().Trim(); this.Close();
  66. }
  67. }
  68. }
  69. }
  70. /// <summary>
  71. /// 确定
  72. /// </summary>
  73. /// <param name="sender"></param>
  74. /// <param name="e"></param>
  75. protected override void btnOK_Click(object sender, EventArgs e)
  76. {
  77. if (this.dgvData.Rows.Count > 0)
  78. {
  79. if (this.dgvData.CurrentRow.Index > 0)
  80. { EnglishName = this.dgvData.Rows[this.dgvData.CurrentRow.Index].Cells["Column2"].Value.ToString().Trim(); this.Close(); }
  81. }
  82. }
  83. /// <summary>
  84. /// 取消
  85. /// </summary>
  86. /// <param name="sender"></param>
  87. /// <param name="e"></param>
  88. protected override void btnCancel_Click(object sender, EventArgs e)
  89. {
  90. this.Close();
  91. }
  92. }
  93. }