frmChooseScenicToPrint.cs 4.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using LYFZ.Software.MainBusiness.CameraControlBook;
  6. namespace LYFZ.Software.MainBusiness.CameraControlBook
  7. {
  8. class frmChooseScenicToPrint : LYFZ.Software.UI.CameraControlBook.frmChooseScenicToPrint
  9. {
  10. Object obj = null;
  11. bool IsYuYueDan = true;
  12. LYFZ.EnumPublic.PrintTypeEnum type;
  13. List<OrderReportFormMain.ScenicSpot> listScenicSpot;
  14. List<LYFZ.ComponentLibrary.CheckBoxEx> listCheckBox = new List<ComponentLibrary.CheckBoxEx>();
  15. public frmChooseScenicToPrint( LYFZ.EnumPublic.PrintTypeEnum type, Object obj, List<OrderReportFormMain.ScenicSpot> listScenicSpot, bool IsYuYueDan )
  16. {
  17. this.obj = obj;
  18. this.type = type;
  19. this.listScenicSpot = listScenicSpot;
  20. this.IsYuYueDan = IsYuYueDan;
  21. #region 生成控件;
  22. int nCtrlCount = listScenicSpot.Count;
  23. int nHeight = 65/*上下边框总高*/ + nCtrlCount * 27 + 28 + 25 * 2/*上下边距*/;
  24. base.Size = new System.Drawing.Size( 435, nHeight );
  25. for ( int i = 0; i < listScenicSpot.Count; i++ )
  26. {
  27. OrderReportFormMain.ScenicSpot scenic = listScenicSpot[i];
  28. LYFZ.ComponentLibrary.CheckBoxEx check = new ComponentLibrary.CheckBoxEx();
  29. this.plExMainContainer.Controls.Add( check );
  30. check.Tag = scenic;
  31. check.AutoSize = true;
  32. check.BackColor = System.Drawing.Color.Transparent;
  33. check.CurrentCheckState = LYFZ.ComponentLibrary.CheckStateEx.Unchecked;
  34. check.Font = new System.Drawing.Font( "微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)) );
  35. check.ForeColor = System.Drawing.Color.FromArgb( ((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))) );
  36. check.Fourstates = false;
  37. check.IsGreenTick = false;
  38. check.Location = new System.Drawing.Point( 115, 25 + 27 * i );
  39. check.Name = string.Format( "checkBoxEx{0}", i );
  40. check.Size = new System.Drawing.Size( 200, 21 );
  41. check.TabIndex = 0;
  42. check.Text = string.Format( "{0} {1}", scenic.strScenicName, scenic.strSelectPhotoStatus == "OK" ? "√" : "" );
  43. if ( scenic.strSelectPhotoStatus != "OK" )
  44. check.CheckState = System.Windows.Forms.CheckState.Checked;
  45. check.UseVisualStyleBackColor = false;
  46. listCheckBox.Add( check );
  47. }
  48. // ok按钮;
  49. btn_ok.Location = new System.Drawing.Point( 115, 35 + 27 * nCtrlCount );
  50. btn_ok.Click += btn_ok_Click;
  51. // cancle按钮;
  52. btn_cancle.Location = new System.Drawing.Point( 115 + 85 + 45, 35 + 27 * nCtrlCount );
  53. btn_cancle.Click += btn_cancle_Click;
  54. #endregion
  55. }
  56. void btn_cancle_Click( object sender, EventArgs e )
  57. {
  58. Close();
  59. }
  60. void btn_ok_Click( object sender, EventArgs e )
  61. {
  62. List<ReportPrint.SetSmallForm.PrintPreviewSmallForm.ScenicSpot2> listScenic = new List<ReportPrint.SetSmallForm.PrintPreviewSmallForm.ScenicSpot2>();
  63. // 遍历控件状态;
  64. foreach ( LYFZ.ComponentLibrary.CheckBoxEx check in listCheckBox )
  65. {
  66. if ( check.Checked == true )
  67. {
  68. OrderReportFormMain.ScenicSpot scenic = (OrderReportFormMain.ScenicSpot)check.Tag;
  69. listScenic.Add( new ReportPrint.SetSmallForm.PrintPreviewSmallForm.ScenicSpot2
  70. {
  71. strScenicName = scenic.strScenicName,
  72. strViceNumber = scenic.strViceNumber
  73. } );
  74. }
  75. }
  76. if ( listScenic.Count == 0 )
  77. {
  78. MessageBoxCustom.Show( "必须选择一项来打印" );
  79. return;
  80. }
  81. // 调用打印对话框;
  82. LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.PrintFixedFormat( type, obj, listScenic, IsYuYueDan );
  83. Close();
  84. }
  85. }
  86. }