PrintPreviewSmallForm.cs 78 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486
  1. using System;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Data;
  6. using System.Drawing;
  7. using System.Drawing.Printing;
  8. using System.Linq;
  9. using System.Reflection;
  10. using System.Text;
  11. using System.Windows.Forms;
  12. namespace LYFZ.Software.MainBusiness.ReportPrint.SetSmallForm
  13. {
  14. public partial class PrintPreviewSmallForm : LYFZ.Software.UI.ReportPrint.SetSmallForm.PrintPreviewSmallForm
  15. {
  16. public PrintPreviewSmallForm()
  17. {
  18. Type type = typeof( System.Windows.Forms.PrintPreviewControl );
  19. m_Position = type.GetField( "position", BindingFlags.Instance | BindingFlags.NonPublic | BindingFlags.ExactBinding );
  20. m_SetPositionMethod = type.GetMethod( "SetPositionNoInvalidate", BindingFlags.Instance | BindingFlags.NonPublic | BindingFlags.ExactBinding );
  21. this.Load += PrintPreviewSmallForm_Load;
  22. this.cmbtreevStyle.ComboBoxTree_NodeMouseClick += cmbtreevStyle_ComboBoxTree_NodeMouseClick;
  23. this.cmbtreevPrinters.ComboBoxTree_NodeMouseClick += cmbtreevPrinters_ComboBoxTree_NodeMouseClick;
  24. this.ptPreview.MouseWheel += ptPreview_MouseWheel;
  25. this.ptPreview.Click += ptPreview_Click;
  26. this.ptPreview.MouseDown += ptPreview_MouseDown;
  27. this.ptPreview.MouseUp += ptPreview_MouseUp;
  28. this.ptPreview.MouseMove += ptPreview_MouseMove;
  29. this.contextMenuStrip1.ItemClicked += contextMenuStrip1_ItemClicked;
  30. this.btnSet.Click += btnSet_Click;
  31. }
  32. LYFZ.BLL.BLL_ErpOrder orbll = new BLL.BLL_ErpOrder();
  33. LYFZ.BLL.BLL_ErpCompanyInfo cpifbll = new BLL.BLL_ErpCompanyInfo();
  34. LYFZ.BLL.BLL_ErpPrinterSetNow ptsnbll = new BLL.BLL_ErpPrinterSetNow();
  35. LYFZ.BLL.BLL_ErpPrinterTemplateSet pttsbll = new BLL.BLL_ErpPrinterTemplateSet();
  36. /// <summary>
  37. /// 打印类型
  38. /// </summary>
  39. public LYFZ.EnumPublic.PrintTypeEnum EnumType;
  40. /// <summary>
  41. /// 要打印的object参数
  42. /// </summary>
  43. public object ObjValue;
  44. /// <summary>
  45. /// 打印机类型
  46. /// </summary>
  47. LYFZ.EnumPublic.PrinterPaperType EnumPrintPaperType;
  48. /// <summary>
  49. /// 相片集合(分页时用)
  50. /// </summary>
  51. List<Image> Imglist = null;
  52. /// <summary>
  53. /// 是否显示流水单号
  54. /// </summary>
  55. bool IsPrintSerialNo = false;
  56. List<Bitmap> bitList = new List<Bitmap>();
  57. /// <summary>
  58. /// 副订单列,用于打印儿童订单时,选择要打印的次;
  59. /// </summary>
  60. public struct ScenicSpot2
  61. {
  62. // 景点或成长名;
  63. public string strScenicName;
  64. // 副订单号;
  65. public string strViceNumber;
  66. }
  67. public List<ScenicSpot2> listScenicSpot = null;
  68. /// <summary>
  69. /// 是否是预约单;
  70. /// </summary>
  71. public bool IsYuYueDan { get; set; } = true;
  72. /// <summary>
  73. /// 获取默认分辨率
  74. /// </summary>
  75. System.Drawing.Printing.PrinterResolution GetResolution
  76. {
  77. get
  78. {
  79. int CurrentX_Y = 0;
  80. int dlg_X = 0;
  81. int dlg_Y = 0;
  82. int dlgCount = this.ptDocument.PrinterSettings.PrinterResolutions.Count;
  83. for ( int i = 0; i < dlgCount; i++ )
  84. {
  85. int CurrntValue = this.ptDocument.PrinterSettings.PrinterResolutions[i].X + this.ptDocument.PrinterSettings.PrinterResolutions[i].Y;
  86. if ( CurrntValue > 0 )
  87. {
  88. if ( CurrentX_Y == 0 )
  89. {
  90. CurrentX_Y = CurrntValue;
  91. dlg_X = this.ptDocument.PrinterSettings.PrinterResolutions[i].X;
  92. dlg_Y = this.ptDocument.PrinterSettings.PrinterResolutions[i].Y;
  93. }
  94. else if ( CurrntValue < CurrentX_Y )
  95. {
  96. CurrentX_Y = this.ptDocument.PrinterSettings.PrinterResolutions[i].X + this.ptDocument.PrinterSettings.PrinterResolutions[i].Y;
  97. dlg_X = this.ptDocument.PrinterSettings.PrinterResolutions[i].X;
  98. dlg_Y = this.ptDocument.PrinterSettings.PrinterResolutions[i].Y;
  99. }
  100. }
  101. }
  102. PrinterResolution priResolution = new PrinterResolution();
  103. priResolution.Kind = System.Drawing.Printing.PrinterResolutionKind.Custom;
  104. if ( CurrentX_Y > 0 )
  105. {
  106. priResolution.X = dlg_X;
  107. priResolution.Y = dlg_Y;
  108. }
  109. else
  110. {
  111. priResolution.X = 120;
  112. priResolution.Y = 180;
  113. }
  114. return priResolution;
  115. }
  116. }
  117. /// <summary>
  118. /// 窗体加载事件
  119. /// </summary>
  120. /// <param name="sender"></param>
  121. /// <param name="e"></param>
  122. void PrintPreviewSmallForm_Load( object sender, EventArgs e )
  123. {
  124. FrmPrintInitialValue frmInitiaValue = new FrmPrintInitialValue();
  125. frmInitiaValue.companyCode = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.CurrentCompanyInfoID;
  126. if ( !frmInitiaValue.CheckSetingPrintSerialNo() && LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.IsGroupEdition )
  127. {
  128. frmInitiaValue.ShowDialog();
  129. }
  130. ReportFixedFormat.PrintCurrentIndexPage = 1;
  131. LYFZ.Model.Model_ErpCompanyInfo modelInfo = cpifbll.GetModel( "Company_DividedShop", LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID() );
  132. if ( modelInfo.ID > 0 && modelInfo.Company_SingleTitle.Trim() != "∝" )
  133. {
  134. LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.PrintInitialSetting();
  135. List<LYFZ.Model.Model_ErpPrinterSetNow> mlist = ptsnbll.GetModelList( "PrintSet_DividedShopNumber = '" + LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID() + "'" );
  136. if ( mlist.Count > 0 )
  137. {
  138. List<Helper.CommandInfo> clist = new List<Helper.CommandInfo>();
  139. for ( int i = 0; i < mlist.Count; i++ )
  140. {
  141. LYFZ.Model.Model_ErpPrinterSetNow model = mlist[i];
  142. #region 标题
  143. if ( !string.IsNullOrEmpty( modelInfo.Company_SingleTitle.Trim() ) && string.IsNullOrEmpty( model.PrintSet_PrintSingleTitle ) )
  144. {
  145. switch ( (LYFZ.EnumPublic.PrintTypeEnum)Enum.Parse( typeof( LYFZ.EnumPublic.PrintTypeEnum ), model.PrintSet_TemplateParentNumber.ToString() ) )
  146. {
  147. case EnumPublic.PrintTypeEnum.财务报表日:
  148. case EnumPublic.PrintTypeEnum.财务报表月:
  149. case EnumPublic.PrintTypeEnum.财务报表年:
  150. case EnumPublic.PrintTypeEnum.制作单明细:
  151. case EnumPublic.PrintTypeEnum.选片缩略图:
  152. break;
  153. case EnumPublic.PrintTypeEnum.订单预约单:
  154. string StrTitle = modelInfo.Company_SingleTitle.Trim();
  155. model.PrintSet_PrintSingleTitle = "预约婚纱单标题‖" + StrTitle + "∥预约儿童单标题‖" + StrTitle + "∥预约写真单标题‖" + StrTitle + "∥预约婚庆单标题‖" + StrTitle + "∥预约服务单标题‖" + StrTitle + "∥";
  156. break;
  157. default:
  158. model.PrintSet_PrintSingleTitle = modelInfo.Company_SingleTitle.Trim();
  159. break;
  160. }
  161. }
  162. #endregion
  163. #region 收款单
  164. if ( !string.IsNullOrEmpty( modelInfo.Company_SingleExplanation.Trim() ) )
  165. {
  166. switch ( (LYFZ.EnumPublic.PrintTypeEnum)Enum.Parse( typeof( LYFZ.EnumPublic.PrintTypeEnum ), model.PrintSet_TemplateParentNumber.ToString() ) )
  167. {
  168. case LYFZ.EnumPublic.PrintTypeEnum.订单收款:
  169. case LYFZ.EnumPublic.PrintTypeEnum.会员充值收款:
  170. case LYFZ.EnumPublic.PrintTypeEnum.会员服务收款:
  171. case LYFZ.EnumPublic.PrintTypeEnum.会员服务消费:
  172. case LYFZ.EnumPublic.PrintTypeEnum.礼服出售收款:
  173. case LYFZ.EnumPublic.PrintTypeEnum.礼服出租收款:
  174. case LYFZ.EnumPublic.PrintTypeEnum.礼服出租退押金:
  175. case LYFZ.EnumPublic.PrintTypeEnum.其它消费收款:
  176. case LYFZ.EnumPublic.PrintTypeEnum.现金支出:
  177. case LYFZ.EnumPublic.PrintTypeEnum.新摄会返还款:
  178. case LYFZ.EnumPublic.PrintTypeEnum.新摄会收款:
  179. case LYFZ.EnumPublic.PrintTypeEnum.其它收入:
  180. bool IsFind = false;
  181. if ( model.PrintSet_PrintOtherDataJson.Trim().IndexOf( '∥' ) != -1 )
  182. {
  183. string[] StrArray = model.PrintSet_PrintOtherDataJson.Trim().Split( '∥' );
  184. for ( int j = 0; j < StrArray.Length; j++ )
  185. {
  186. if ( !string.IsNullOrEmpty( StrArray[j].Trim() ) )
  187. {
  188. string[] StrArray2 = StrArray[j].Trim().Split( '‖' );
  189. if ( StrArray2[0].Trim() == "收款单说明" )
  190. {
  191. IsFind = true; break;
  192. }
  193. }
  194. }
  195. }
  196. if ( !IsFind )
  197. {
  198. model.PrintSet_PrintOtherDataJson += LYFZ.Command.Command_Validate.JudgmentLastChar( model.PrintSet_PrintOtherDataJson, "∥" ) + "收款单说明‖" + modelInfo.Company_SingleExplanation.Trim() + "∥";
  199. }
  200. break;
  201. }
  202. }
  203. #endregion
  204. #region 婚纱订单预约单
  205. if ( !string.IsNullOrEmpty( modelInfo.Company_ReservationExplanation.Trim() ) || !string.IsNullOrEmpty( modelInfo.Company_ChildReserveExplain.Trim() ) || !string.IsNullOrEmpty( modelInfo.Company_PortraitReserveExplain.Trim() ) )
  206. {
  207. switch ( (LYFZ.EnumPublic.PrintTypeEnum)Enum.Parse( typeof( LYFZ.EnumPublic.PrintTypeEnum ), model.PrintSet_TemplateParentNumber.ToString() ) )
  208. {
  209. case LYFZ.EnumPublic.PrintTypeEnum.订单预约单:
  210. bool IsFindA = false;
  211. bool IsFindB = false;
  212. bool IsFindC = false;
  213. if ( model.PrintSet_PrintOtherDataJson.Trim().IndexOf( '∥' ) != -1 )
  214. {
  215. string[] StrArray = model.PrintSet_PrintOtherDataJson.Trim().Split( '∥' );
  216. for ( int j = 0; j < StrArray.Length; j++ )
  217. {
  218. if ( !string.IsNullOrEmpty( StrArray[j].Trim() ) )
  219. {
  220. string[] StrArray2 = StrArray[j].Trim().Split( '‖' );
  221. if ( StrArray2[0].Trim() == "婚纱预约单注意事项说明" )
  222. {
  223. IsFindA = true; break;
  224. }
  225. if ( StrArray2[0].Trim() == "儿童预约单注意事项说明" )
  226. {
  227. IsFindB = true; break;
  228. }
  229. if ( StrArray2[0].Trim() == "写真预约单注意事项说明" )
  230. {
  231. IsFindC = true; break;
  232. }
  233. }
  234. }
  235. }
  236. if ( !IsFindA )
  237. {
  238. model.PrintSet_PrintOtherDataJson += LYFZ.Command.Command_Validate.JudgmentLastChar( model.PrintSet_PrintOtherDataJson, "∥" ) + "婚纱预约单注意事项说明‖" + modelInfo.Company_ReservationExplanation.Trim() + "∥";
  239. }
  240. if ( !IsFindB )
  241. {
  242. model.PrintSet_PrintOtherDataJson += LYFZ.Command.Command_Validate.JudgmentLastChar( model.PrintSet_PrintOtherDataJson, "∥" ) + "儿童预约单注意事项说明‖" + modelInfo.Company_ChildReserveExplain.Trim() + "∥";
  243. }
  244. if ( !IsFindC )
  245. {
  246. model.PrintSet_PrintOtherDataJson += LYFZ.Command.Command_Validate.JudgmentLastChar( model.PrintSet_PrintOtherDataJson, "∥" ) + "写真预约单注意事项说明‖" + modelInfo.Company_PortraitReserveExplain.Trim() + "∥";
  247. }
  248. break;
  249. }
  250. }
  251. #endregion
  252. #region 制作单说明
  253. if ( !string.IsNullOrEmpty( modelInfo.Company_ProductionNotes.Trim() ) )
  254. {
  255. switch ( (LYFZ.EnumPublic.PrintTypeEnum)Enum.Parse( typeof( LYFZ.EnumPublic.PrintTypeEnum ), model.PrintSet_TemplateParentNumber.ToString() ) )
  256. {
  257. case LYFZ.EnumPublic.PrintTypeEnum.制作单明细:
  258. bool IsFind = false;
  259. if ( model.PrintSet_PrintOtherDataJson.Trim().IndexOf( '∥' ) != -1 )
  260. {
  261. string[] StrArray = model.PrintSet_PrintOtherDataJson.Trim().Split( '∥' );
  262. for ( int j = 0; j < StrArray.Length; j++ )
  263. {
  264. if ( !string.IsNullOrEmpty( StrArray[j].Trim() ) )
  265. {
  266. string[] StrArray2 = StrArray[j].Trim().Split( '‖' );
  267. if ( StrArray2[0].Trim() == "制作单说明" )
  268. {
  269. IsFind = true; break;
  270. }
  271. }
  272. }
  273. }
  274. if ( !IsFind )
  275. {
  276. model.PrintSet_PrintOtherDataJson += LYFZ.Command.Command_Validate.JudgmentLastChar( model.PrintSet_PrintOtherDataJson, "∥" ) + "制作单说明‖" + modelInfo.Company_ProductionNotes.Trim() + "∥";
  277. }
  278. break;
  279. }
  280. }
  281. #endregion
  282. #region 礼服单说明
  283. if ( !string.IsNullOrEmpty( modelInfo.Company_DressDescription.Trim() ) )
  284. {
  285. switch ( (LYFZ.EnumPublic.PrintTypeEnum)Enum.Parse( typeof( LYFZ.EnumPublic.PrintTypeEnum ), model.PrintSet_TemplateParentNumber.ToString() ) )
  286. {
  287. case LYFZ.EnumPublic.PrintTypeEnum.礼服出售清单:
  288. case LYFZ.EnumPublic.PrintTypeEnum.礼服出租清单:
  289. bool IsFind = false;
  290. if ( model.PrintSet_PrintOtherDataJson.Trim().IndexOf( '∥' ) != -1 )
  291. {
  292. string[] StrArray = model.PrintSet_PrintOtherDataJson.Trim().Split( '∥' );
  293. for ( int j = 0; j < StrArray.Length; j++ )
  294. {
  295. if ( !string.IsNullOrEmpty( StrArray[j].Trim() ) )
  296. {
  297. string[] StrArray2 = StrArray[j].Trim().Split( '‖' );
  298. if ( StrArray2[0].Trim() == "礼服单说明" )
  299. {
  300. IsFind = true; break;
  301. }
  302. }
  303. }
  304. }
  305. if ( !IsFind )
  306. {
  307. model.PrintSet_PrintOtherDataJson += LYFZ.Command.Command_Validate.JudgmentLastChar( model.PrintSet_PrintOtherDataJson, "∥" ) + "礼服单说明‖" + modelInfo.Company_DressDescription.Trim() + "∥";
  308. }
  309. break;
  310. }
  311. }
  312. #endregion
  313. #region 预约单LOG
  314. if ( !string.IsNullOrEmpty( modelInfo.Company_WeddingSingleLOG.Trim() ) || !string.IsNullOrEmpty( modelInfo.Company_ChildSingleLOG.Trim() ) || !string.IsNullOrEmpty( modelInfo.Company_PortraitLOG.Trim() ) )
  315. {
  316. switch ( (LYFZ.EnumPublic.PrintTypeEnum)Enum.Parse( typeof( LYFZ.EnumPublic.PrintTypeEnum ), model.PrintSet_TemplateParentNumber.ToString() ) )
  317. {
  318. case LYFZ.EnumPublic.PrintTypeEnum.订单预约单:
  319. bool IsFindA = false;
  320. bool IsFindB = false;
  321. bool IsFindC = false;
  322. if ( model.PrintSet_PrintOtherDataJson.Trim().IndexOf( '∥' ) != -1 )
  323. {
  324. string[] StrArray = model.PrintSet_PrintOtherDataJson.Trim().Split( '∥' );
  325. for ( int j = 0; j < StrArray.Length; j++ )
  326. {
  327. if ( !string.IsNullOrEmpty( StrArray[j].Trim() ) )
  328. {
  329. string[] StrArray2 = StrArray[j].Trim().Split( '‖' );
  330. if ( StrArray2[0].Trim() == "预约婚纱单LOG" )
  331. {
  332. IsFindA = true;
  333. }
  334. if ( StrArray2[0].Trim() == "预约儿童单LOG" )
  335. {
  336. IsFindB = true;
  337. }
  338. if ( StrArray2[0].Trim() == "预约写真单LOG" )
  339. {
  340. IsFindC = true;
  341. }
  342. }
  343. }
  344. }
  345. if ( !IsFindA )
  346. {
  347. model.PrintSet_PrintOtherDataJson += LYFZ.Command.Command_Validate.JudgmentLastChar( model.PrintSet_PrintOtherDataJson, "∥" ) + "预约婚纱单LOG‖" + modelInfo.Company_WeddingSingleLOG.Trim() + "∥";
  348. }
  349. if ( !IsFindB )
  350. {
  351. model.PrintSet_PrintOtherDataJson += LYFZ.Command.Command_Validate.JudgmentLastChar( model.PrintSet_PrintOtherDataJson, "∥" ) + "预约儿童单LOG‖" + modelInfo.Company_ChildSingleLOG.Trim() + "∥";
  352. }
  353. if ( !IsFindC )
  354. {
  355. model.PrintSet_PrintOtherDataJson += LYFZ.Command.Command_Validate.JudgmentLastChar( model.PrintSet_PrintOtherDataJson, "∥" ) + "预约写真单LOG‖" + modelInfo.Company_PortraitLOG.Trim() + "∥";
  356. }
  357. break;
  358. }
  359. }
  360. #endregion
  361. clist.Add( ptsnbll.GetUpdateCommandInfo( model ) );
  362. }
  363. modelInfo.Company_SingleTitle = "∝";
  364. modelInfo.Company_SingleExplanation = "";
  365. modelInfo.Company_ReservationExplanation = "";
  366. modelInfo.Company_ChildReserveExplain = "";
  367. modelInfo.Company_PortraitReserveExplain = "";
  368. modelInfo.Company_ProductionNotes = "";
  369. modelInfo.Company_DressDescription = "";
  370. modelInfo.Company_WeddingSingleLOG = "";
  371. modelInfo.Company_ChildSingleLOG = "";
  372. modelInfo.Company_PortraitLOG = "";
  373. clist.Add( cpifbll.GetUpdateCommandInfo( modelInfo ) );
  374. if ( LYFZ.BLL.BaseBllOperate.ExecuteSqlTran( clist ) <= 0 )
  375. {
  376. MessageBoxCustom.Show( "打印参数移动出错" ); return;
  377. }
  378. }
  379. }
  380. try
  381. {
  382. TreeNode root = null;
  383. foreach ( string sPrint in PrinterSettings.InstalledPrinters )//获取所有打印机名称
  384. {
  385. root = new TreeNode();
  386. root.Text = sPrint;
  387. root.Tag = sPrint;
  388. root.Name = sPrint;
  389. this.cmbtreevPrinters.TreeView.Nodes.Add( root );
  390. }
  391. }
  392. catch
  393. {
  394. MessageBoxCustom.Show( "未找到正确安装的打印机,请检测默认打印机的驱动是否正确安装!" );
  395. }
  396. this.GetDefaultPrinter();
  397. this.btnSet.Enabled = LYFZ.BLL.BLL_ErpUser.GetWebInterfaceRights( LYFZ.Model.Model_UserRights.GetSystemMenuPet(), "sm018" );
  398. }
  399. /// <summary>
  400. /// 获取默认打印机
  401. /// </summary>
  402. void GetDefaultPrinter()
  403. {
  404. DataTable tmptbl = orbll.GetView_Custom( "tb_ErpPrinterTemplateSet", StrWhere: " TptSet_TemplateParentNumber = '" + Convert.ToInt32( this.EnumType ) + "'" ).Tables[0];
  405. tmptbl.PrimaryKey = new DataColumn[] { tmptbl.Columns["ID"] };
  406. TreeNode root2 = null;
  407. this.cmbtreevStyle.TreeView.Nodes.Clear();
  408. for ( int i = 0; i < tmptbl.Rows.Count; i++ )
  409. {
  410. root2 = new TreeNode();
  411. root2.Text = tmptbl.Rows[i]["TptSet_TemplateAliases"].ToString();
  412. root2.Tag = tmptbl.Rows[i]["TptSet_MachineType"].ToString();
  413. root2.Name = tmptbl.Rows[i]["ID"].ToString();
  414. this.cmbtreevStyle.TreeView.Nodes.Add( root2 );
  415. }
  416. DataTable tblPrintSet = orbll.GetView_Custom( "tb_ErpPrinterSetNow", StrWhere: "PrintSet_TemplateParentNumber = '" + Convert.ToInt32( this.EnumType ) + "' and PrintSet_PrintDefault = '1' and PrintSet_DividedShopNumber='" + LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID() + "'" ).Tables[0];
  417. if ( tblPrintSet.Rows.Count > 0 )
  418. {
  419. this.EnumPrintPaperType = (LYFZ.EnumPublic.PrinterPaperType)Enum.Parse( typeof( LYFZ.EnumPublic.PrinterPaperType ), tblPrintSet.Rows[0]["PrintSet_MachineType"].ToString().Trim() );
  420. this.cmbtreevStyle.TagFindText( tblPrintSet.Rows[0]["PrintSet_MachineType"].ToString().Trim() );
  421. }
  422. else
  423. {
  424. this.EnumPrintPaperType = (LYFZ.EnumPublic.PrinterPaperType)Enum.Parse( typeof( LYFZ.EnumPublic.PrinterPaperType ), tmptbl.Rows[0]["TptSet_MachineType"].ToString().Trim() );
  425. tblPrintSet = orbll.GetView_Custom( "tb_ErpPrinterSetNow", StrWhere: "PrintSet_TemplateParentNumber = '" + Convert.ToInt32( this.EnumType ) + "' and PrintSet_MachineType = '" + Convert.ToInt32( this.EnumPrintPaperType ) + "' and PrintSet_DividedShopNumber='" + LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID() + "'" ).Tables[0];
  426. this.cmbtreevStyle.TagFindText( tmptbl.Rows[0]["TptSet_MachineType"].ToString().Trim() );
  427. }
  428. this.SetPrintData( tblPrintSet );
  429. // LYFZ.ComponentLibrary.FrmLoadHandling.LoadDoWorkMethod( delegate ( object obj, BackgroundWorker backgroundWorker )
  430. // {
  431. this.GetDocument();
  432. // } );
  433. }
  434. /// <summary>
  435. /// 设置打印数据时所需参数
  436. /// </summary>
  437. void SetPrintData( DataTable tbl )
  438. {
  439. LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.PrintOtherData = new Hashtable();
  440. if ( tbl.Rows.Count > 0 )
  441. {
  442. Hashtable htData = new Hashtable();
  443. if ( tbl.Rows[0]["PrintSet_PrintOtherDataJson"].ToString().Trim() != "" )
  444. {
  445. string[] strArray = tbl.Rows[0]["PrintSet_PrintOtherDataJson"].ToString().Trim().Split( '∥' );
  446. for ( int i = 0; i < strArray.Length; i++ )
  447. {
  448. if ( !string.IsNullOrEmpty( strArray[i].Trim() ) )
  449. {
  450. string[] strArray2 = strArray[i].Trim().Split( '‖' );
  451. switch ( strArray2[0].Trim() )
  452. {
  453. case "预约单内容详情字体大小":
  454. htData["婚纱预约单内容详情字体大小"] = strArray2[1].Trim();
  455. break;
  456. case "婚纱预约单内容详情字体大小":
  457. htData["婚纱预约单内容详情字体大小"] = strArray2[1].Trim();
  458. break;
  459. case "儿童预约单内容详情字体大小":
  460. htData["儿童预约单内容详情字体大小"] = strArray2[1].Trim();
  461. break;
  462. case "写真预约单内容详情字体大小":
  463. htData["写真预约单内容详情字体大小"] = strArray2[1].Trim();
  464. break;
  465. case "婚庆预约单内容详情字体大小":
  466. htData["婚庆预约单内容详情字体大小"] = strArray2[1].Trim();
  467. break;
  468. case "服务预约单内容详情字体大小":
  469. htData["服务预约单内容详情字体大小"] = strArray2[1].Trim();
  470. break;
  471. case "预约单注意事项字体大小":
  472. htData["婚纱预约单注意事项字体大小"] = strArray2[1].Trim();
  473. break;
  474. case "婚纱预约单注意事项字体大小":
  475. htData["婚纱预约单注意事项字体大小"] = strArray2[1].Trim();
  476. break;
  477. case "儿童预约单注意事项字体大小":
  478. htData["儿童预约单注意事项字体大小"] = strArray2[1].Trim();
  479. break;
  480. case "写真预约单注意事项字体大小":
  481. htData["写真预约单注意事项字体大小"] = strArray2[1].Trim();
  482. break;
  483. case "婚庆预约单注意事项字体大小":
  484. htData["婚庆预约单注意事项字体大小"] = strArray2[1].Trim();
  485. break;
  486. case "服务预约单注意事项字体大小":
  487. htData["服务预约单注意事项字体大小"] = strArray2[1].Trim();
  488. break;
  489. case "预约单注意事项说明":
  490. htData["婚纱预约单注意事项说明"] = strArray2[1].Trim();
  491. break;
  492. case "婚纱预约单注意事项说明":
  493. htData["婚纱预约单注意事项说明"] = strArray2[1].Trim();
  494. break;
  495. case "儿童预约单注意事项说明":
  496. htData["儿童预约单注意事项说明"] = strArray2[1].Trim();
  497. break;
  498. case "写真预约单注意事项说明":
  499. htData["写真预约单注意事项说明"] = strArray2[1].Trim();
  500. break;
  501. case "婚庆预约单注意事项说明":
  502. htData["婚庆预约单注意事项说明"] = strArray2[1].Trim();
  503. break;
  504. case "服务预约单注意事项说明":
  505. htData["服务预约单注意事项说明"] = strArray2[1].Trim();
  506. break;
  507. case "制作单说明":
  508. htData["制作单说明"] = strArray2[1].Trim();
  509. break;
  510. case "礼服单说明":
  511. htData["礼服单说明"] = strArray2[1].Trim();
  512. break;
  513. case "收款单说明":
  514. htData["收款单说明"] = strArray2[1].Trim();
  515. break;
  516. }
  517. }
  518. }
  519. }
  520. htData["预约LOG"] = tbl.Rows[0]["PrintSet_PrintSingleLOG"].ToString().Trim();
  521. LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.PrintOtherData = htData;
  522. switch ( this.EnumType )
  523. {
  524. case EnumPublic.PrintTypeEnum.订单预约单:
  525. string[] strArrayTitle = tbl.Rows[0]["PrintSet_PrintSingleTitle"].ToString().Trim().Split( '∥' );
  526. for ( int i = 0; i < strArrayTitle.Length; i++ )
  527. {
  528. if ( !string.IsNullOrEmpty( strArrayTitle[i].Trim() ) )
  529. {
  530. string[] strArrayTitle2 = strArrayTitle[i].Trim().Split( '‖' );
  531. switch ( strArrayTitle2[0].Trim() )
  532. {
  533. case "预约婚纱单标题":
  534. htData["预约婚纱单标题"] = strArrayTitle2[1].Trim();
  535. break;
  536. case "预约儿童单标题":
  537. htData["预约儿童单标题"] = strArrayTitle2[1].Trim();
  538. break;
  539. case "预约写真单标题":
  540. htData["预约写真单标题"] = strArrayTitle2[1].Trim();
  541. break;
  542. case "预约婚庆单标题":
  543. htData["预约婚庆单标题"] = strArrayTitle2[1].Trim();
  544. break;
  545. case "预约服务单标题":
  546. htData["预约服务单标题"] = strArrayTitle2[1].Trim();
  547. break;
  548. }
  549. }
  550. }
  551. break;
  552. default:
  553. LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.DefaultPrintTitle = tbl.Rows[0]["PrintSet_PrintSingleTitle"].ToString().Trim();
  554. break;
  555. }
  556. if ( !string.IsNullOrEmpty( tbl.Rows[0]["PrintSet_PrintPath"].ToString() ) )
  557. {
  558. if ( LYFZ.WinAPI.CustomPublicMethod.CheckValidPrinter( tbl.Rows[0]["PrintSet_PrintPath"].ToString().Trim() ) )
  559. {
  560. this.cmbtreevPrinters.Text = tbl.Rows[0]["PrintSet_PrintPath"].ToString().Trim();
  561. }
  562. }
  563. }
  564. if ( this.cmbtreevPrinters.Text.Trim() == "" )
  565. {
  566. try { this.cmbtreevPrinters.TagFindText( new PrintDocument().PrinterSettings.PrinterName ); }
  567. catch
  568. {
  569. MessageBoxCustom.Show( "未找到默认打印未,请检查是否有正确安装打印机驱动!" );
  570. }
  571. }
  572. }
  573. /// <summary>
  574. /// 风格选择
  575. /// </summary>
  576. /// <param name="sender"></param>
  577. /// <param name="e"></param>
  578. void cmbtreevStyle_ComboBoxTree_NodeMouseClick( object sender, TreeNodeMouseClickEventArgs e )
  579. {
  580. iPage = 0;
  581. pDataList = new List<List<string>>();
  582. if ( this.cmbtreevStyle.Tag != null )
  583. {
  584. if ( this.cmbtreevStyle.Tag.ToString().Trim() != "" )
  585. {
  586. this.ptPreview.AutoZoom = false;
  587. this.ptPreview.Zoom = 1;
  588. this.EnumPrintPaperType = (LYFZ.EnumPublic.PrinterPaperType)Enum.Parse( typeof( LYFZ.EnumPublic.PrinterPaperType ), this.cmbtreevStyle.Tag.ToString().Trim() );
  589. if ( this.ptDocument != null )
  590. {
  591. DataTable tblPrintSet = orbll.GetView_Custom( "tb_ErpPrinterSetNow", StrWhere: "PrintSet_TemplateParentNumber = '" + Convert.ToInt32( this.EnumType ) + "' and PrintSet_MachineType = '" + Convert.ToInt32( this.cmbtreevStyle.Tag ) + "' and PrintSet_DividedShopNumber='" + LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID() + "'" ).Tables[0];
  592. this.SetPrintData( tblPrintSet );
  593. //if (ptDocument_PrintPage != null)
  594. {
  595. this.ptDocument.PrintPage -= ptDocument_PrintPage;
  596. }
  597. this.GetDocument();
  598. }
  599. }
  600. }
  601. }
  602. /// <summary>
  603. /// 打印机选择
  604. /// </summary>
  605. /// <param name="sender"></param>
  606. /// <param name="e"></param>
  607. void cmbtreevPrinters_ComboBoxTree_NodeMouseClick( object sender, TreeNodeMouseClickEventArgs e )
  608. {
  609. iPage = 0;
  610. pDataList = new List<List<string>>();
  611. if ( this.cmbtreevPrinters.Text.Trim() != "" )
  612. {
  613. this.ptDocument.PrinterSettings.PrinterName = this.cmbtreevPrinters.Text.Trim();
  614. if ( this.EnumPrintPaperType == EnumPublic.PrinterPaperType.小票纸 )
  615. {
  616. this.GetDocument();
  617. }
  618. }
  619. }
  620. PrintDialog printdialog = new PrintDialog();
  621. /// <summary>
  622. /// 打印
  623. /// </summary>
  624. /// <param name="sender"></param>
  625. /// <param name="e"></param>
  626. protected override void btnPrint_Click( object sender, EventArgs e )
  627. {
  628. if ( this.cmbtreevPrinters.Text.Trim() == "" )
  629. {
  630. MessageBoxCustom.Show( "请选择打印机!" ); return;
  631. }
  632. iPage = 0;
  633. this.ptDocument.PrinterSettings.PrinterName = this.cmbtreevPrinters.Text.Trim();
  634. this.IsPrintSerialNo = true;
  635. printdialog.Document = this.ptDocument;
  636. printdialog.AllowSomePages = true;
  637. printdialog.AllowPrintToFile = false;
  638. printdialog.ShowHelp = true;
  639. // printdialog.Document.DefaultPageSettings.PrinterResolution.Kind = PrinterResolutionKind.High;
  640. // printdialog.Document.DefaultPageSettings.PrinterSettings.DefaultPageSettings.PrinterResolution.Kind = PrinterResolutionKind.High;
  641. // dlg.Document.DefaultPageSettings.PrinterResolution.Kind = System.Drawing.Printing.PrinterResolutionKind.Custom;
  642. // dlg.Document.DefaultPageSettings.PrinterResolution = this.GetResolution;
  643. // dlg.Document.DefaultPageSettings.PrinterSettings.DefaultPageSettings.PrinterResolution.Kind = System.Drawing.Printing.PrinterResolutionKind.Custom;
  644. // dlg.Document.DefaultPageSettings.PrinterSettings.DefaultPageSettings.PrinterResolution = dlg.Document.DefaultPageSettings.PrinterResolution;
  645. try
  646. {
  647. printdialog.Document.Print();
  648. }
  649. catch ( Exception ex )
  650. {
  651. MessageBoxCustom.Show( "可能打印机未安装或驱动安装有问题,请检验!出错原因:" + ex.Message );
  652. }
  653. this.IsPrintSerialNo = false;
  654. }
  655. /// <summary>
  656. /// 取消
  657. /// </summary>
  658. /// <param name="sender"></param>
  659. /// <param name="e"></param>
  660. protected override void btnCancel_Click( object sender, EventArgs e )
  661. {
  662. this.Close();
  663. }
  664. /// <summary>
  665. /// 存为图片
  666. /// </summary>
  667. /// <param name="sender"></param>
  668. /// <param name="e"></param>
  669. protected override void btnSavePicture_Click( object sender, EventArgs e )
  670. {
  671. SaveFileDialog saveFileDialog1 = new SaveFileDialog();
  672. saveFileDialog1.InitialDirectory = @"C:\Users\e_teng\Desktop\";
  673. saveFileDialog1.Filter = "*.jpg,*.jpeg,*.bmp,*.gif,*.ico,*.png,*.tif,*.wmf|*.jpg;*.jpeg;*.bmp;*.gif;*.ico;*.png;*.tif;*.wmf";
  674. saveFileDialog1.Title = "保存图像";
  675. saveFileDialog1.FileName = this.EnumType.ToString();
  676. if ( saveFileDialog1.ShowDialog() == DialogResult.OK )
  677. {
  678. iPage = 0;
  679. pDataList = new List<List<string>>();
  680. dicKeyList = new Dictionary<string, List<int>>();
  681. string StrPath = saveFileDialog1.FileName;
  682. string QStrPath = StrPath.Substring(0, StrPath.IndexOf('.'));//后缀
  683. string HstrPath = StrPath.Substring(StrPath.IndexOf('.'), StrPath.Length - (StrPath.IndexOf('.')));
  684. for (int i = 0; i < totalPageSize; i++)
  685. {
  686. Bitmap bitmap = new Bitmap(pSize.Width,pSize.Height);
  687. using (Graphics g = Graphics.FromImage(bitmap))
  688. {
  689. g.FillRectangle(new SolidBrush(Color.White), 0, 0, pSize.Width, pSize.Height);
  690. string StrPathNow = QStrPath;
  691. StrPathNow += "第" + (i + 1) + "页";
  692. //bitList[i].Save();
  693. this.GetImagesList(g, new Size(pSize.Width, pSize.Height), null);
  694. bitmap.Save(StrPathNow + HstrPath);
  695. }
  696. }
  697. numValue.Maximum = totalPageSize;
  698. MessageBoxCustom.Show( "保存完毕" );
  699. }
  700. }
  701. /// <summary>
  702. /// 放大
  703. /// </summary>
  704. /// <param name="sender"></param>
  705. /// <param name="e"></param>
  706. protected override void btnZoom_Click( object sender, EventArgs e )
  707. {
  708. this.ptPreview.Zoom += 0.05;
  709. }
  710. /// <summary>
  711. /// 缩小
  712. /// </summary>
  713. /// <param name="sender"></param>
  714. /// <param name="e"></param>
  715. protected override void btnReduce_Click( object sender, EventArgs e )
  716. {
  717. this.ptPreview.Zoom -= 0.05;
  718. }
  719. /// <summary>
  720. /// 适中
  721. /// </summary>
  722. /// <param name="sender"></param>
  723. /// <param name="e"></param>
  724. protected override void btnCenter_Click( object sender, EventArgs e )
  725. {
  726. this.ptPreview.AutoZoom = true;
  727. }
  728. /// <summary>
  729. /// 设置
  730. /// </summary>
  731. /// <param name="sender"></param>
  732. /// <param name="e"></param>
  733. void btnSet_Click( object sender, EventArgs e )
  734. {
  735. LYFZ.Software.MainBusiness.StudioDataSet.PrinterSetFormMain frm = new StudioDataSet.PrinterSetFormMain();
  736. frm.ModuleName = this.EnumType.ToString().Trim();
  737. frm.ShowDialog();
  738. if ( frm.IsSaveed )
  739. {
  740. iPage = 0;
  741. pDataList = new List<List<string>>();
  742. dicKeyList = new Dictionary<string, List<int>>();
  743. this.GetDefaultPrinter();
  744. }
  745. }
  746. /// <summary>
  747. /// 翻页
  748. /// </summary>
  749. /// <param name="sender"></param>
  750. /// <param name="e"></param>
  751. protected override void numValue_ValueChanged( object sender, EventArgs e )
  752. {
  753. this.ptPreview.StartPage = Convert.ToInt32( this.numValue.Value ) - 1;
  754. }
  755. /// <summary>
  756. /// 窗体大小发生变化
  757. /// </summary>
  758. /// <param name="sender"></param>
  759. /// <param name="e"></param>
  760. protected override void PrintPreviewSmallForm_Resize( object sender, EventArgs e )
  761. {
  762. }
  763. System.Drawing.Printing.PrintDocument ptDocument = null;
  764. int StrHeight = 1169;
  765. int StrWidth = 827;
  766. private void GetDocument()
  767. {
  768. if ( this.Imglist != null )
  769. {
  770. this.Imglist.Clear();
  771. }
  772. this.ptDocument = null;
  773. this.ptDocument = new PrintDocument();
  774. this.ptDocument.OriginAtMargins = false;
  775. this.ptDocument.DocumentName = this.EnumType.ToString().Trim();
  776. switch ( this.EnumPrintPaperType )
  777. {
  778. case EnumPublic.PrinterPaperType.A4纸:
  779. //this.StrWidth = 827;
  780. this.StrHeight = 1169;
  781. break;
  782. case EnumPublic.PrinterPaperType.A4半页纸:
  783. //this.StrWidth = 827;
  784. this.StrHeight = 580;
  785. break;
  786. case EnumPublic.PrinterPaperType.针式纸:
  787. this.StrWidth = 830;
  788. this.StrHeight = 366;
  789. break;
  790. case EnumPublic.PrinterPaperType.小票纸:
  791. PrintDocument newptDocument = new PrintDocument();
  792. // this.Invoke( new LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.UpdateControl( delegate ()
  793. // {
  794. newptDocument.PrinterSettings.PrinterName = this.cmbtreevPrinters.Text;
  795. // } ) );
  796. int ss = newptDocument.PrinterSettings.PaperSizes[0].Width;
  797. this.StrWidth = Convert.ToInt32( ss );
  798. this.StrHeight = 827 * LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.PrintPageCount;
  799. break;
  800. }
  801. this.ptDocument.DefaultPageSettings.PaperSize = new System.Drawing.Printing.PaperSize( "A4_3", this.StrWidth, this.StrHeight );
  802. this.ptDocument.DefaultPageSettings.Margins.Top = 0;// 20;
  803. // this.Invoke( new LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.UpdateControl( delegate ()
  804. // {
  805. this.ptDocument.PrinterSettings.PrinterName = this.cmbtreevPrinters.Text.Trim();
  806. printdialog.Document = this.ptDocument;
  807. printdialog.AllowSomePages = true;
  808. printdialog.AllowPrintToFile = false;
  809. printdialog.ShowHelp = true;
  810. // printdialog.Document.DefaultPageSettings.PrinterResolution.Kind = PrinterResolutionKind.High;
  811. // printdialog.Document.DefaultPageSettings.PrinterSettings.DefaultPageSettings.PrinterResolution.Kind = PrinterResolutionKind.High;
  812. // } ) );
  813. this.ptDocument.PrintPage -= ptDocument_PrintPage;
  814. this.ptDocument.PrintPage += ptDocument_PrintPage;
  815. this.ptPreview.Document = this.ptDocument;
  816. }
  817. PaperSize pSize = new PaperSize();
  818. decimal totalPageSize = 0;
  819. /// <summary>
  820. /// 是否获取数据
  821. /// </summary>
  822. bool IsGetData = true;
  823. /// <summary>
  824. /// 从几开始打印
  825. /// </summary>
  826. private int nowpage = 0;
  827. /// <summary>
  828. /// 输出
  829. /// </summary>
  830. /// <param name="sender"></param>
  831. /// <param name="e"></param>
  832. protected void ptDocument_PrintPage( object sender, System.Drawing.Printing.PrintPageEventArgs e )
  833. {
  834. try
  835. {
  836. if ( this.IsGetData )
  837. {
  838. pSize = e.PageSettings.PaperSize;
  839. this.GetImagesList( e.Graphics, new Size( e.PageSettings.PaperSize.Width, e.PageSettings.PaperSize.Height ), e );
  840. if ( ReportFixedFormat.IsHasMorePages )
  841. {
  842. e.HasMorePages = true;
  843. }
  844. else
  845. {
  846. ReportFixedFormat.PrintForCount = 0;
  847. this.numValue.Maximum = ReportFixedFormat.PrintCurrentIndexPage;
  848. this.numValue.Value = 1;
  849. this.ptPreview.StartPage = 0;
  850. }
  851. }
  852. #region 分页
  853. if ( this.Imglist != null && this.Imglist.Count > 0 )
  854. {
  855. Image img = this.Imglist[this.nowpage];
  856. this.nowpage++;
  857. e.Graphics.DrawImage( img, new Rectangle( 17, 17, img.Width, img.Height ), new Rectangle( 0, 0, img.Width, img.Height ), GraphicsUnit.Pixel );
  858. if ( nowpage < ReportFixedFormat.PrintCurrentIndexPage )
  859. {
  860. e.HasMorePages = true;
  861. this.IsGetData = false;
  862. }
  863. else
  864. {
  865. e.HasMorePages = false;
  866. this.nowpage = 0;
  867. this.IsGetData = true;
  868. }
  869. }
  870. #endregion
  871. totalPageSize = this.numValue.Maximum;
  872. }
  873. catch ( Exception ex )
  874. {
  875. MessageBoxCustom.Show( "打印失败!" + ex.Message.ToString() ); return;
  876. }
  877. }
  878. /// <summary>
  879. /// 获取各个风格绘制
  880. /// </summary>
  881. /// <param name="g"></param>
  882. /// <param name="size"></param>
  883. int iPage = 0;
  884. List<List<string>> pDataList = new List<List<string>>();
  885. Dictionary<string, List<int>> dicKeyList = new Dictionary<string, List<int>>();
  886. public void GetImagesList( Graphics g, Size size, System.Drawing.Printing.PrintPageEventArgs e = null )
  887. {
  888. switch ( this.EnumPrintPaperType )
  889. {
  890. case EnumPublic.PrinterPaperType.A4纸:
  891. size = new Size( 794, 1136 );
  892. break;
  893. case EnumPublic.PrinterPaperType.A4半页纸:
  894. size = new Size( 794, 545 );
  895. break;
  896. }
  897. switch ( this.EnumType )
  898. {
  899. case LYFZ.EnumPublic.PrintTypeEnum.会员服务消费:
  900. if ( this.ObjValue != null )
  901. {
  902. switch ( this.EnumPrintPaperType )
  903. {
  904. case EnumPublic.PrinterPaperType.针式纸:
  905. LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.PaymentPrint_MemberServiceUse_Print( this.ObjValue, g, size, this.IsPrintSerialNo );
  906. break;
  907. case EnumPublic.PrinterPaperType.小票纸:
  908. LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.SmallTicket_MemberServiceUse( this.ObjValue, g, size, this.IsPrintSerialNo );
  909. break;
  910. }
  911. }
  912. break;
  913. case LYFZ.EnumPublic.PrintTypeEnum.会员服务收款:
  914. if ( this.ObjValue != null )
  915. {
  916. switch ( this.EnumPrintPaperType )
  917. {
  918. case EnumPublic.PrinterPaperType.针式纸:
  919. LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.PaymentPrint_MemberService_Print( this.ObjValue, g, size, this.IsPrintSerialNo );
  920. break;
  921. case EnumPublic.PrinterPaperType.小票纸:
  922. LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.SmallTicket_MemberServicePayment( this.ObjValue, g, size, this.IsPrintSerialNo );
  923. break;
  924. }
  925. }
  926. break;
  927. case LYFZ.EnumPublic.PrintTypeEnum.新摄会返还款:
  928. if ( this.ObjValue != null )
  929. {
  930. switch ( this.EnumPrintPaperType )
  931. {
  932. case EnumPublic.PrinterPaperType.针式纸:
  933. LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.PaymentPrint_PhotographerRefund_Print( this.ObjValue, g, size, this.IsPrintSerialNo );
  934. break;
  935. case EnumPublic.PrinterPaperType.小票纸:
  936. LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.SmallTicket_PhotographerRefundPayment( this.ObjValue, g, size, this.IsPrintSerialNo );
  937. break;
  938. }
  939. }
  940. break;
  941. case LYFZ.EnumPublic.PrintTypeEnum.新摄会收款:
  942. if ( this.ObjValue != null )
  943. {
  944. switch ( this.EnumPrintPaperType )
  945. {
  946. case EnumPublic.PrinterPaperType.针式纸:
  947. LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.PaymentPrint_PhotographerPayment_Print( this.ObjValue, g, size, this.IsPrintSerialNo );
  948. break;
  949. case EnumPublic.PrinterPaperType.小票纸:
  950. LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.SmallTicket_PhotographerPayment( this.ObjValue, g, size, this.IsPrintSerialNo );
  951. break;
  952. }
  953. }
  954. break;
  955. case LYFZ.EnumPublic.PrintTypeEnum.礼服出售收款:
  956. if ( this.ObjValue != null )
  957. {
  958. switch ( this.EnumPrintPaperType )
  959. {
  960. case EnumPublic.PrinterPaperType.针式纸:
  961. LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.PaymentPrint_SoldPayment_Print( this.ObjValue, g, size, this.IsPrintSerialNo );
  962. break;
  963. case EnumPublic.PrinterPaperType.小票纸:
  964. LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.SmallTicket_SoldPayment( this.ObjValue, g, size, this.IsPrintSerialNo );
  965. break;
  966. }
  967. }
  968. break;
  969. case LYFZ.EnumPublic.PrintTypeEnum.礼服出租收款:
  970. if ( this.ObjValue != null )
  971. {
  972. switch ( this.EnumPrintPaperType )
  973. {
  974. case EnumPublic.PrinterPaperType.针式纸:
  975. LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.PaymentPrint_GownsPayment_Print( this.ObjValue, g, size, this.IsPrintSerialNo );
  976. break;
  977. case EnumPublic.PrinterPaperType.小票纸:
  978. LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.SmallTicket_GownsPayment( this.ObjValue, g, size, this.IsPrintSerialNo );
  979. break;
  980. }
  981. }
  982. break;
  983. case LYFZ.EnumPublic.PrintTypeEnum.礼服出租退押金:
  984. if ( this.ObjValue != null )
  985. {
  986. switch ( this.EnumPrintPaperType )
  987. {
  988. case EnumPublic.PrinterPaperType.针式纸:
  989. LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.PaymentPrint_SoldRefund_Print( this.ObjValue, g, size, this.IsPrintSerialNo );
  990. break;
  991. case EnumPublic.PrinterPaperType.小票纸:
  992. LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.SmallTicket_SoldRefundPayment( this.ObjValue, g, size, this.IsPrintSerialNo );
  993. break;
  994. }
  995. }
  996. break;
  997. case LYFZ.EnumPublic.PrintTypeEnum.会员充值收款:
  998. if ( this.ObjValue != null )
  999. {
  1000. switch ( this.EnumPrintPaperType )
  1001. {
  1002. case EnumPublic.PrinterPaperType.针式纸:
  1003. LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.PaymentPrint_MemberRecharge_Print( this.ObjValue, g, size, this.IsPrintSerialNo );
  1004. break;
  1005. case EnumPublic.PrinterPaperType.小票纸:
  1006. LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.SmallTicket_MemberRechargePayment( this.ObjValue, g, size, this.IsPrintSerialNo );
  1007. break;
  1008. case EnumPublic.PrinterPaperType.A4纸:
  1009. LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.PaymentPrint_MemberRechargeA4_Print( this.ObjValue, g, size, this.IsPrintSerialNo );
  1010. break;
  1011. }
  1012. }
  1013. break;
  1014. case LYFZ.EnumPublic.PrintTypeEnum.订单收款:
  1015. if ( this.ObjValue != null )
  1016. {
  1017. switch ( this.EnumPrintPaperType )
  1018. {
  1019. case EnumPublic.PrinterPaperType.针式纸:
  1020. LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.FixedFormat_OrderPayment_Print( this.ObjValue, g, size, this.IsPrintSerialNo );
  1021. break;
  1022. case EnumPublic.PrinterPaperType.小票纸:
  1023. LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.SmallTicket_OrderPayment( this.ObjValue, g, size, this.IsPrintSerialNo );
  1024. break;
  1025. }
  1026. }
  1027. break;
  1028. case LYFZ.EnumPublic.PrintTypeEnum.其它消费收款:
  1029. if ( this.ObjValue != null )
  1030. {
  1031. switch ( this.EnumPrintPaperType )
  1032. {
  1033. case EnumPublic.PrinterPaperType.针式纸:
  1034. LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.PaymentPrint_OtherConsumption_Print( this.ObjValue, g, size, this.IsPrintSerialNo );
  1035. break;
  1036. case EnumPublic.PrinterPaperType.小票纸:
  1037. LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.SmallTicket_OtherTwoSalesPayment( this.ObjValue, g, size, this.IsPrintSerialNo );
  1038. break;
  1039. }
  1040. }
  1041. break;
  1042. case LYFZ.EnumPublic.PrintTypeEnum.现金支出:
  1043. if ( this.ObjValue != null )
  1044. {
  1045. switch ( this.EnumPrintPaperType )
  1046. {
  1047. case EnumPublic.PrinterPaperType.针式纸:
  1048. LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.PaymentPrint_CashOutlay_Print( this.ObjValue, g, size, this.IsPrintSerialNo );
  1049. break;
  1050. case EnumPublic.PrinterPaperType.小票纸:
  1051. LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.SmallTicket_CashOutlayPayment( this.ObjValue, g, size, this.IsPrintSerialNo );
  1052. break;
  1053. }
  1054. }
  1055. break;
  1056. case LYFZ.EnumPublic.PrintTypeEnum.其它收入:
  1057. if ( this.ObjValue != null )
  1058. {
  1059. switch ( this.EnumPrintPaperType )
  1060. {
  1061. case EnumPublic.PrinterPaperType.针式纸:
  1062. LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.PaymentPrint_OtherIncome_Print( this.ObjValue, g, size, this.IsPrintSerialNo );
  1063. break;
  1064. case EnumPublic.PrinterPaperType.小票纸:
  1065. LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.SmallTicket_OtherIncomePayment( this.ObjValue, g, size, this.IsPrintSerialNo );
  1066. break;
  1067. }
  1068. }
  1069. break;
  1070. case LYFZ.EnumPublic.PrintTypeEnum.库存采购验收单:
  1071. if ( this.ObjValue != null )
  1072. {
  1073. LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.InventoryManagement_PurchasingAcceptance_Print( this.ObjValue, g, size );
  1074. }
  1075. break;
  1076. case LYFZ.EnumPublic.PrintTypeEnum.库存采购单:
  1077. if ( this.ObjValue != null )
  1078. {
  1079. LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.InventoryManagement_PurchaseOrder_Print( this.ObjValue, g, size );
  1080. }
  1081. break;
  1082. case LYFZ.EnumPublic.PrintTypeEnum.库存采购申请单:
  1083. if ( this.ObjValue != null )
  1084. {
  1085. LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.InventoryManagement_PurchaseRequisition_Print( this.ObjValue, g, size );
  1086. }
  1087. break;
  1088. case LYFZ.EnumPublic.PrintTypeEnum.礼服出租清单:
  1089. if ( this.ObjValue != null )
  1090. {
  1091. switch ( this.EnumPrintPaperType )
  1092. {
  1093. case EnumPublic.PrinterPaperType.A4半页纸:
  1094. LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.Dresses_RentalGownsList_Print( this.ObjValue, g, size );
  1095. break;
  1096. case EnumPublic.PrinterPaperType.A4纸:
  1097. LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.Dresses_RentalGownsList_A4Print( this.ObjValue, g, size );
  1098. break;
  1099. }
  1100. }
  1101. break;
  1102. case LYFZ.EnumPublic.PrintTypeEnum.礼服出售清单:
  1103. if ( this.ObjValue != null )
  1104. {
  1105. switch ( this.EnumPrintPaperType )
  1106. {
  1107. case EnumPublic.PrinterPaperType.A4半页纸:
  1108. LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.Dresses_SoldGownsList_Print( this.ObjValue, g, size );
  1109. break;
  1110. case EnumPublic.PrinterPaperType.A4纸:
  1111. LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.Dresses_SoldGownsList_A4Print( this.ObjValue, g, size );
  1112. break;
  1113. }
  1114. }
  1115. break;
  1116. case LYFZ.EnumPublic.PrintTypeEnum.拍照明细表:
  1117. if ( this.ObjValue != null )
  1118. {
  1119. LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.CameraControlBook_PhotographsGuestDetail_Print( this.ObjValue, g, size );
  1120. }
  1121. break;
  1122. case LYFZ.EnumPublic.PrintTypeEnum.拍照派工单:
  1123. if ( this.ObjValue != null )
  1124. {
  1125. this.Imglist = LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.CameraControlBook_PhotographsGuestDispatch_Print( this.ObjValue, g, size );
  1126. ReportFixedFormat.PrintCurrentIndexPage = this.Imglist.Count;
  1127. }
  1128. break;
  1129. case LYFZ.EnumPublic.PrintTypeEnum.选片明细表:
  1130. if ( this.ObjValue != null )
  1131. {
  1132. LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.CameraControlBook_FilmSelectionDetail_Print( this.ObjValue, g, size );
  1133. }
  1134. break;
  1135. case LYFZ.EnumPublic.PrintTypeEnum.看设计明细表:
  1136. if ( this.ObjValue != null )
  1137. {
  1138. LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.CameraControlBook_LookDesignDetail_Print( this.ObjValue, g, size );
  1139. }
  1140. break;
  1141. case LYFZ.EnumPublic.PrintTypeEnum.取件明细表:
  1142. if ( this.ObjValue != null )
  1143. {
  1144. LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.CameraControlBook_TakePiecesDetail_Print( this.ObjValue, g, size );
  1145. }
  1146. break;
  1147. case LYFZ.EnumPublic.PrintTypeEnum.服务明细:
  1148. if ( this.ObjValue != null )
  1149. {
  1150. LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.CameraControlBook_WeddingDetail_Print( this.ObjValue, g, size );
  1151. }
  1152. break;
  1153. case LYFZ.EnumPublic.PrintTypeEnum.制作单明细:
  1154. if ( this.ObjValue != null )
  1155. {
  1156. this.CutPicture( LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.DoorCity_MakeDetail( this.ObjValue, size, g ,ref pDataList,ref dicKeyList, iPage) );
  1157. iPage++;
  1158. if (pDataList.Count > iPage)
  1159. {
  1160. LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.PrintCurrentIndexPage = pDataList.Count;
  1161. }
  1162. }
  1163. break;
  1164. case LYFZ.EnumPublic.PrintTypeEnum.选片缩略图:
  1165. if ( this.ObjValue != null )
  1166. {
  1167. LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.DoorCity_FilmSelectionThumbnail( this.ObjValue, g, size );
  1168. }
  1169. break;
  1170. case LYFZ.EnumPublic.PrintTypeEnum.订单预约单:
  1171. if ( this.ObjValue != null )
  1172. {
  1173. //this.BindPictureList(LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.ReservationSingle(this.ObjValue, g, size, this.EnumPrintPaperType, this.listScenicSpot, this.IsYuYueDan));
  1174. this.CutPicture( LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.ReservationSingle( this.ObjValue, g, size, this.EnumPrintPaperType, this.listScenicSpot,ref pDataList, this.IsYuYueDan,iPage ) );
  1175. iPage++;
  1176. if(pDataList.Count>iPage)
  1177. {
  1178. LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.PrintCurrentIndexPage = pDataList.Count;
  1179. }
  1180. }
  1181. break;
  1182. case LYFZ.EnumPublic.PrintTypeEnum.财务报表日:
  1183. if ( this.ObjValue != null )
  1184. {
  1185. LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.FinanceReportDays( this.ObjValue, g, size );
  1186. }
  1187. break;
  1188. case LYFZ.EnumPublic.PrintTypeEnum.财务报表月:
  1189. if ( this.ObjValue != null )
  1190. {
  1191. LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.FinanceReportMonth( this.ObjValue, g, size );
  1192. }
  1193. break;
  1194. case LYFZ.EnumPublic.PrintTypeEnum.财务报表年:
  1195. if ( this.ObjValue != null )
  1196. {
  1197. LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.FinanceReportYear( this.ObjValue, g, size );
  1198. }
  1199. break;
  1200. case LYFZ.EnumPublic.PrintTypeEnum.加减乘除:
  1201. if ( this.ObjValue != null )
  1202. {
  1203. this.Imglist = new List<Image>();
  1204. size = new Size( e.PageSettings.PaperSize.Width, e.PageSettings.PaperSize.Height );
  1205. this.Imglist = LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.DoorCity_AdditionSubtractionMultiplyDivide( this.ObjValue, g, size );
  1206. }
  1207. break;
  1208. case LYFZ.EnumPublic.PrintTypeEnum.考勤报表:
  1209. if ( this.ObjValue != null )
  1210. {
  1211. LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.SchedulingMonthlyStatistics( this.ObjValue, g, size );
  1212. }
  1213. break;
  1214. case LYFZ.EnumPublic.PrintTypeEnum.员工奖罚:
  1215. {
  1216. if ( this.ObjValue != null )
  1217. {
  1218. switch ( this.EnumPrintPaperType )
  1219. {
  1220. case EnumPublic.PrinterPaperType.针式纸:
  1221. LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.StaffRewardAndPunishment( this.ObjValue, g, size, this.IsPrintSerialNo );
  1222. break;
  1223. case EnumPublic.PrinterPaperType.小票纸:
  1224. LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.SmallTicket_StaffRewardAndPunishment( this.ObjValue, g, size, this.IsPrintSerialNo );
  1225. break;
  1226. }
  1227. }
  1228. }
  1229. break;
  1230. }
  1231. if ( this.Imglist != null && this.Imglist.Count > 0 )
  1232. {
  1233. this.numValue.Minimum = 1;
  1234. this.numValue.Maximum = this.Imglist.Count;
  1235. }
  1236. else
  1237. {
  1238. this.numValue.Maximum = 1;
  1239. this.numValue.Minimum = 1;
  1240. }
  1241. }
  1242. /// <summary>
  1243. /// 将分页的图片集合添加入集合
  1244. /// </summary>
  1245. /// <param name="bitmapList"></param>
  1246. void BindPictureList(List<Bitmap> bitmapList)
  1247. {
  1248. if (bitmapList.Count > 0)
  1249. {
  1250. this.Imglist = new List<Image>();
  1251. int PageCount = bitmapList.Count;
  1252. this.ptPreview.StartPage = 0;
  1253. int forHeight = 0;
  1254. for (int i = 0; i < PageCount; i++)
  1255. {
  1256. this.Imglist.Add(bitmapList[i]);
  1257. // forHeight += CurrntHeight;
  1258. }
  1259. LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.PrintCurrentIndexPage = PageCount;
  1260. }
  1261. }
  1262. /// <summary>
  1263. /// 切图片
  1264. /// </summary>
  1265. /// <param name="bitmp"></param>
  1266. void CutPicture( Bitmap bitmp )
  1267. {
  1268. if ( bitmp != null )
  1269. {
  1270. this.Imglist = new List<Image>();
  1271. int CurrntHeight = 1150 - 120;
  1272. //int CurrntHeight = (this.StrHeight - 137);
  1273. if ( bitmp.Height <= CurrntHeight )
  1274. {
  1275. Bitmap newBmp = new Bitmap( bitmp.Width, this.StrHeight );
  1276. Graphics ng = Graphics.FromImage( newBmp );
  1277. ng.Clear( System.Drawing.Color.White );
  1278. ng.DrawImage( bitmp, new Rectangle( 0, 30, newBmp.Width, CurrntHeight ), new Rectangle( 0, 0, newBmp.Width, CurrntHeight ), GraphicsUnit.Pixel );
  1279. this.Imglist.Add( newBmp );
  1280. }
  1281. else
  1282. {
  1283. int PageCount = bitmp.Height / CurrntHeight;
  1284. if ( bitmp.Height > CurrntHeight )
  1285. {
  1286. if ( (bitmp.Height % CurrntHeight) > 0 )
  1287. {
  1288. PageCount++;
  1289. }
  1290. }
  1291. this.ptPreview.StartPage = 1;
  1292. int forHeight = 0;
  1293. for ( int i = 0; i < PageCount; i++ )
  1294. {
  1295. Bitmap newBmp = new Bitmap( bitmp.Width, this.StrHeight );
  1296. Graphics ng = Graphics.FromImage( newBmp );
  1297. ng.Clear( System.Drawing.Color.White );
  1298. ng.DrawImage( bitmp, new Rectangle( 0, 30, newBmp.Width, CurrntHeight ), new Rectangle( 0, forHeight, newBmp.Width, CurrntHeight ), GraphicsUnit.Pixel );
  1299. string StrPageText = "制表:" + LYFZ.Command.Command_Validate.DateTimeToString( SDateTime.Now, "yyyy-MM-dd HH:mm" ) + " 页:" + (i + 1) + "/" + PageCount;
  1300. SizeF srcsizef = ng.MeasureString( StrPageText, new Font( "宋体", 9 ) );
  1301. int srcFtWidth = Convert.ToInt32( srcsizef.Width );
  1302. int srcFtHeight = Convert.ToInt32( srcsizef.Height );
  1303. ng.DrawString( StrPageText, new Font( "宋体", 9 ), Brushes.Black, new PointF( StrWidth - srcFtWidth - 65, CurrntHeight + 50 ) );
  1304. this.Imglist.Add( newBmp );
  1305. forHeight += CurrntHeight;
  1306. }
  1307. LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.PrintCurrentIndexPage = PageCount;
  1308. }
  1309. }
  1310. }
  1311. #region 鼠标事件
  1312. private FieldInfo m_Position;
  1313. private MethodInfo m_SetPositionMethod;
  1314. private bool isMouseDown;
  1315. private Point startPosition;
  1316. private Point endPosition;
  1317. private Point curPos;
  1318. /// <summary>
  1319. /// 鼠标滚轮
  1320. /// </summary>
  1321. /// <param name="sender"></param>
  1322. /// <param name="e"></param>
  1323. void ptPreview_MouseWheel( object sender, MouseEventArgs e )
  1324. {
  1325. if ( !SystemInformation.MouseWheelPresent )
  1326. {
  1327. return;
  1328. }
  1329. //int scrollAmount;
  1330. //float amount = Math.Abs(e.Delta) / SystemInformation.MouseWheelScrollDelta;
  1331. //amount *= SystemInformation.MouseWheelScrollLines;
  1332. //amount *= 12;//Row height
  1333. //amount *= (float)this.ptPreview.Zoom;//Zoom Rate
  1334. //if (e.Delta < 0)
  1335. //{ scrollAmount = (int)amount; }
  1336. //else
  1337. //{ scrollAmount = -(int)amount; }
  1338. //Point curPos = (Point)(m_Position.GetValue(this.ptPreview));
  1339. //m_SetPositionMethod.Invoke(this.ptPreview, new object[] { new Point(curPos.X + 0, curPos.Y + scrollAmount) });
  1340. if ( e.Delta < 0 )
  1341. {
  1342. if ( this.ptPreview.Zoom > 0.05 )
  1343. {
  1344. this.ptPreview.Zoom -= 0.05;
  1345. }
  1346. }
  1347. else
  1348. {
  1349. this.ptPreview.Zoom += 0.05;
  1350. }
  1351. }
  1352. /// <summary>
  1353. /// 鼠标在控件上点击时,需要处理获得焦点,因为默认不会获得焦点
  1354. /// </summary>
  1355. /// <param name="sender"></param>
  1356. /// <param name="e"></param>
  1357. private void ptPreview_Click( object sender, EventArgs e )
  1358. {
  1359. this.ptPreview.Select(); this.ptPreview.Focus();
  1360. }
  1361. /// <summary>
  1362. /// 鼠标按下,开始拖动
  1363. /// </summary>
  1364. /// <param name="sender"></param>
  1365. /// <param name="e"></param>
  1366. private void ptPreview_MouseDown( object sender, MouseEventArgs e )
  1367. {
  1368. if ( e.Button == MouseButtons.Left )
  1369. {
  1370. isMouseDown = true;
  1371. startPosition = new Point( e.X, e.Y );
  1372. curPos = (Point)(m_Position.GetValue( this.ptPreview ));
  1373. }
  1374. else
  1375. {
  1376. this.contextMenuStrip1.Items.Clear();
  1377. this.contextMenuStrip1.Show( MousePosition.X, MousePosition.Y );
  1378. ToolStripMenuItem item = new ToolStripMenuItem();
  1379. item.Text = "打印";
  1380. item.Tag = "StrPrint";
  1381. contextMenuStrip1.Items.Add( item );
  1382. item = new ToolStripMenuItem();
  1383. item.Text = "适中";
  1384. item.Tag = "StrCenter";
  1385. contextMenuStrip1.Items.Add( item );
  1386. item = new ToolStripMenuItem();
  1387. item.Text = "另存为";
  1388. item.Tag = "StrSaveAs";
  1389. contextMenuStrip1.Items.Add( item );
  1390. }
  1391. }
  1392. /// <summary>
  1393. /// 鼠标释放,完成拖动
  1394. /// </summary>
  1395. /// <param name="sender"></param>
  1396. /// <param name="e"></param>
  1397. private void ptPreview_MouseUp( object sender, MouseEventArgs e )
  1398. {
  1399. isMouseDown = false;
  1400. endPosition = new Point( e.X, e.Y );
  1401. m_SetPositionMethod.Invoke( this.ptPreview, new object[] { new Point( curPos.X + (startPosition.X - endPosition.X), curPos.Y + (startPosition.Y - endPosition.Y) ) } );
  1402. }
  1403. /// <summary>
  1404. /// 鼠标移动,拖动中
  1405. /// </summary>
  1406. /// <param name="sender"></param>
  1407. /// <param name="e"></param>
  1408. private void ptPreview_MouseMove( object sender, MouseEventArgs e )
  1409. {
  1410. if ( isMouseDown == true )
  1411. {
  1412. endPosition = new Point( e.X, e.Y );
  1413. m_SetPositionMethod.Invoke( this.ptPreview, new object[] { new Point( curPos.X + (startPosition.X - endPosition.X), curPos.Y + (startPosition.Y - endPosition.Y) ) } );
  1414. }
  1415. }
  1416. /// <summary>
  1417. /// 右键菜单选择项
  1418. /// </summary>
  1419. /// <param name="sender"></param>
  1420. /// <param name="e"></param>
  1421. void contextMenuStrip1_ItemClicked( object sender, ToolStripItemClickedEventArgs e )
  1422. {
  1423. ToolStripItem item = e.ClickedItem;
  1424. if ( item.Tag.ToString().Trim() == "StrPrint" )
  1425. {
  1426. this.btnPrint_Click( this, null );
  1427. }
  1428. else if ( item.Tag.ToString().Trim() == "StrCenter" )
  1429. {
  1430. this.btnCenter_Click( this, null );
  1431. }
  1432. else if ( item.Tag.ToString().Trim() == "StrSaveAs" )
  1433. {
  1434. this.btnSavePicture_Click( this, null );
  1435. }
  1436. }
  1437. #endregion
  1438. }
  1439. }