12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using LYFZ.Software.MainBusiness.CameraControlBook;
- namespace LYFZ.Software.MainBusiness.CameraControlBook
- {
- class frmChooseScenicToPrint : LYFZ.Software.UI.CameraControlBook.frmChooseScenicToPrint
- {
- Object obj = null;
- bool IsYuYueDan = true;
- LYFZ.EnumPublic.PrintTypeEnum type;
- List<OrderReportFormMain.ScenicSpot> listScenicSpot;
- List<LYFZ.ComponentLibrary.CheckBoxEx> listCheckBox = new List<ComponentLibrary.CheckBoxEx>();
- public frmChooseScenicToPrint( LYFZ.EnumPublic.PrintTypeEnum type, Object obj, List<OrderReportFormMain.ScenicSpot> listScenicSpot, bool IsYuYueDan )
- {
- this.obj = obj;
- this.type = type;
- this.listScenicSpot = listScenicSpot;
- this.IsYuYueDan = IsYuYueDan;
- #region 生成控件;
- int nCtrlCount = listScenicSpot.Count;
- int nHeight = 65/*上下边框总高*/ + nCtrlCount * 27 + 28 + 25 * 2/*上下边距*/;
- base.Size = new System.Drawing.Size( 435, nHeight );
- for ( int i = 0; i < listScenicSpot.Count; i++ )
- {
- OrderReportFormMain.ScenicSpot scenic = listScenicSpot[i];
- LYFZ.ComponentLibrary.CheckBoxEx check = new ComponentLibrary.CheckBoxEx();
- this.plExMainContainer.Controls.Add( check );
- check.Tag = scenic;
- check.AutoSize = true;
- check.BackColor = System.Drawing.Color.Transparent;
- check.CurrentCheckState = LYFZ.ComponentLibrary.CheckStateEx.Unchecked;
- check.Font = new System.Drawing.Font( "微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)) );
- check.ForeColor = System.Drawing.Color.FromArgb( ((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))) );
- check.Fourstates = false;
- check.IsGreenTick = false;
- check.Location = new System.Drawing.Point( 115, 25 + 27 * i );
- check.Name = string.Format( "checkBoxEx{0}", i );
- check.Size = new System.Drawing.Size( 200, 21 );
- check.TabIndex = 0;
- check.Text = string.Format( "{0} {1}", scenic.strScenicName, scenic.strSelectPhotoStatus == "OK" ? "√" : "" );
- if ( scenic.strSelectPhotoStatus != "OK" )
- check.CheckState = System.Windows.Forms.CheckState.Checked;
- check.UseVisualStyleBackColor = false;
- listCheckBox.Add( check );
- }
- // ok按钮;
- btn_ok.Location = new System.Drawing.Point( 115, 35 + 27 * nCtrlCount );
- btn_ok.Click += btn_ok_Click;
- // cancle按钮;
- btn_cancle.Location = new System.Drawing.Point( 115 + 85 + 45, 35 + 27 * nCtrlCount );
- btn_cancle.Click += btn_cancle_Click;
- #endregion
- }
- void btn_cancle_Click( object sender, EventArgs e )
- {
- Close();
- }
- void btn_ok_Click( object sender, EventArgs e )
- {
- List<ReportPrint.SetSmallForm.PrintPreviewSmallForm.ScenicSpot2> listScenic = new List<ReportPrint.SetSmallForm.PrintPreviewSmallForm.ScenicSpot2>();
- // 遍历控件状态;
- foreach ( LYFZ.ComponentLibrary.CheckBoxEx check in listCheckBox )
- {
- if ( check.Checked == true )
- {
- OrderReportFormMain.ScenicSpot scenic = (OrderReportFormMain.ScenicSpot)check.Tag;
- listScenic.Add( new ReportPrint.SetSmallForm.PrintPreviewSmallForm.ScenicSpot2
- {
- strScenicName = scenic.strScenicName,
- strViceNumber = scenic.strViceNumber
- } );
- }
- }
- if ( listScenic.Count == 0 )
- {
- MessageBoxCustom.Show( "必须选择一项来打印" );
- return;
- }
- // 调用打印对话框;
- LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.PrintFixedFormat( type, obj, listScenic, IsYuYueDan );
- Close();
- }
- }
- }
|