来自List& Label .lst文件

时间:2018-03-15 12:41:46

标签: listlabel

目前我们正在使用WPF应用程序来创建/编辑List& Label Templates,但我们正在考虑转移到WebDesigner。因为我们使用项目包含,所以我们需要使用存储库模式。

我一直在尝试导入现有模板,但是我遇到了一些与RepositoryItemDescriptor有关的问题。要创建RepositoryItem对象,您必须在构造函数中提供Descriptor,但我找不到有关如何从生成的.lst文件中获取它的任何信息。

我们可以使用的数据是:

  • TemplateType:列表或表单
  • TemplateData:.lst文件(byte[]
  • 的内容
  • IsMainTemplate:bool,是“项目包含”还是
  • 文件名:.lst文件的名称

RepositoryItem构造函数需要:string internalID, string descriptor, string type, DateTime lastModificationUTC

我现在拥有的是:

public class TemplateBaseModel : RepositoryItem
{
    // Properties

    // we have our own Ids and modification date, override RepositoryItem properties
    public new InternalID => $"repository://{{{Id}}}";
    public DateTime LastModificationUTC => ModifiedOn; 

    public TemplateBaseModel() : base($"repository://{{{Guid.NewGuid()}}}", /* ?? */, RepositoryItemType.ProjectList.Value, DateTime.Now) { }
    public TemplateBaseModel(string internalID, string descriptor, string type, DateTime lastModificationUTC) : base(internalID, descriptor, type, lastModificationUTC) { }
}

在文档中,我只能找到它的内容(序列化为字符串的内部元数据,可以使用类RepositoryItemDescriptor进行编辑),但不能创建它的方式或如何获取它,以及如果我尝试调试我得到的示例(在CreateOrUpdate()方法中)@2@PgUAAENoS19QYWNrZWQAeNqd1E1PE1EYxfHfmsTvMAyJEeLY8iKCtpChU5MmvAiOC2NcjDCYmqFtZkaEqF9dXThgsTVGt/fm+Z9zz3lyv3/r2HXlQiFwKVeqDI2NdIVWPdIWCuRGTo2dGRp5ryv0Suq5yKpNoUCllhk5kymMjeS6QtdyldCuHfcs6FgUiQQSqUQgEk3dJY70pF57oS8wURo7N1TIBd64Z0GgY1HfodRA6rXAqVIgdN+SK21tbZlnt4o9J41W2OjNo9Qy72Y421OcVGzvD6R9fQcNcdb7A4WhSm3FQ4GhWu7CimUrt6T5rJvJacruHcruHEosldo38PI3ykjmQi7Qk4ilYoElJ/qOvTJwoi+Z4s33daMeeGDJiyna8szs725+zf6vmz8Tf+71U5WJzGmT/5ncucxHhdoXE6VcJVe6lFsWCGdOQzsCb+ds8I3T6R2+2/qv/ZjNvit0IjcxVhmqjZWuDZpXhHfanE2rKzSQCO0o53Ceamn5rGdTrC3Ws6YtkuiJbYts2LJlXWRbbNWayIbEE7E9sZ4Na9Y91vdVR+vWx9+9pa5NmvwKhVaTzQe5U7WWQqX+R+q+TKV20PxI54ZyZ0I7LmXK5t17PkkcOnSkdKxtT6pwLNbVnava0brt6abP1txGfwD+q8AH,这也无济于事。

知道如何从RepositoryItem文件正确创建.lst吗?或者如何创建/获取descriptor

1 个答案:

答案 0 :(得分:2)

您应该尝试使用RepositoryImportUtil命名空间中的类combit.ListLabel23.Repository。这个帮助程序类为您完成所有艰苦的工作。给定IRepository接口和lst文件,所需的代码将类似于

IRepository listLabelRepository = <yourRepository>;

using (ListLabel LL = new ListLabel())
{
    LL.FileRepository = listLabelRepository;
    using (RepositoryImportUtil importUtil = new RepositoryImportUtil(listLabelRepository))
    {
        importUtil.ImportProjectFileWithDependencies(LL, 
            @"<PathToRootProject>");
    }
}

如果此方法不符合您的要求,则帮助程序类还有几个other methods,以帮助您导入现有项目。