基线 SVN r240
SVN-Revision: r240
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using Lskj.Util;
|
||||
using System.Windows.Forms;
|
||||
using Lskj.Model;
|
||||
using Lskj.Business;
|
||||
using Lskj.Business.Impl;
|
||||
using Lskj.PrintTool;
|
||||
|
||||
namespace Lskj.PrintTool
|
||||
{
|
||||
/// <summary>
|
||||
/// 单据模版入口
|
||||
/// </summary>
|
||||
public class DllBaseClass : IForm
|
||||
{
|
||||
public DllBaseClass()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public DllBaseClass(string[] obj)
|
||||
{
|
||||
try
|
||||
{
|
||||
DynamicPrint moduleModel = new DynamicPrint(obj);
|
||||
FormMain main = new FormMain();
|
||||
this.SubForm = main;
|
||||
main.data = moduleModel.Data;
|
||||
main.stitchingAddress = moduleModel.StitchingAddress;
|
||||
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
LogUtil.WriteError("Lskj.PrintTool.dll--参数错误-->" + obj.ToString(), ex);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
public Form SubForm { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user