63 lines
1.9 KiB
C#
63 lines
1.9 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Lskj.Util;
|
|
using Lskj.Business;
|
|
using System.Windows.Forms;
|
|
using Lskj.Model;
|
|
using Lskj.Business.Impl;
|
|
using System.Collections;
|
|
|
|
namespace Lskj.PubModuleDetail
|
|
{
|
|
/// <summary>
|
|
/// c#库被调用统一接口类
|
|
/// </summary>
|
|
public sealed class DllBaseClass : IForm
|
|
{
|
|
public DllBaseClass()
|
|
{
|
|
|
|
}
|
|
|
|
public DllBaseClass(string[] obj)
|
|
{
|
|
try
|
|
{
|
|
FrmMain main = new FrmMain();
|
|
|
|
DynamicModuleDetailModel moduleModel = new DynamicModuleDetailModel(obj);// 基础档案上下结构动态链接库参数
|
|
main.Model = moduleModel;
|
|
moduleModel.DataCaches = new Dictionary<object, Hashtable>();
|
|
if (SystemInfo.Instance.OptimizationSpeed) main.GetDataCaches(moduleModel.DataCaches);
|
|
GridEnum gridEnum = GridEnum.GridView;
|
|
|
|
if (!moduleModel.DataCaches.GetValue(main, "FormType", out int formType))
|
|
{
|
|
formType = BaseImpl.GetBaseType(moduleModel.ModuleCode);
|
|
}
|
|
if (formType == 1)
|
|
{
|
|
gridEnum = GridEnum.BandedGridView;
|
|
}
|
|
if (formType == 2)
|
|
{
|
|
gridEnum = GridEnum.TreeListGridView; // 基础档案暂时注释GridEnum.TreeListGridView此类型,TrcReport和手机端显示卡片冲突.
|
|
}
|
|
main.Model.GridEnumObj = gridEnum;
|
|
this.SubForm = main;
|
|
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
LogUtil.WriteError("Lskj.PubModuleDetail.dll--参数错误-->" + obj.ToString(), ex);
|
|
}
|
|
}
|
|
/// <summary>
|
|
/// 窗口
|
|
/// </summary>
|
|
public Form SubForm { get; set; }
|
|
}
|
|
}
|