代码拉取完成,页面将自动刷新
同步操作将从 活字格开发实验室/插件:PDA(Android)交互命令 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
using GrapeCity.Forguncy.Commands;
using GrapeCity.Forguncy.Plugin;
using System;
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
namespace AndroidPDACommand
{
[Icon("pack://application:,,,/AndroidPDACommand;component/Resources/Icon_Printer.png")]
[Category("活字格安卓容器(HAC)")]
[OrderWeight(300)]
public class DothanPrinter_Device : Command
{
/// <summary>
/// 在设计器中展示的插件名称
/// </summary>
/// <returns>易读的字符串</returns>
public override string ToString()
{
if (Operation == SupportedOperations.GetPrinterState && String.IsNullOrEmpty(OutParamaterName))
{
return "管理蓝牙打印机设备(DothanTech版)"; // 命令列表中默认显示的名称
}
else
{
return "管理蓝牙打印机设备(DothanTech版):" + Operation.ToString();
}
}
/// <summary>
/// 插件类型:设置为服务端命令插件
/// </summary>
/// <returns>插件类型枚举</returns>
public override CommandScope GetCommandScope()
{
return CommandScope.ClientSide;
}
private bool setPropertyVisiblity(string propertyName, bool N, bool O = true)
{
if (propertyName == nameof(PrinterName))
{
return N;
}
else if (propertyName == nameof(OutParamaterName))
{
return O;
}
else
{
return true; // 输出参数为常驻显示
}
}
public override bool GetDesignerPropertyVisible(string propertyName, CommandScope commandScope)
{
switch (this.Operation)
{
case SupportedOperations.Cancel:
{
return setPropertyVisiblity(propertyName, false, false);
}
case SupportedOperations.ReopenPrinter:
{
return setPropertyVisiblity(propertyName, false);
}
case SupportedOperations.GetAllPrinters:
{
return setPropertyVisiblity(propertyName, false);
}
case SupportedOperations.ClosePrinter:
{
return setPropertyVisiblity(propertyName, false, false);
}
case SupportedOperations.OpenPrinter:
{
return setPropertyVisiblity(propertyName, true);
}
case SupportedOperations.GetPrinterState:
{
return setPropertyVisiblity(propertyName, false);
}
default:
{
return base.GetDesignerPropertyVisible(propertyName, commandScope);
}
}
}
[OrderWeight(10)]
[DisplayName("操作")]
[ComboProperty]
[SearchableProperty]
public SupportedOperations Operation { get; set; }
[OrderWeight(100)]
[DisplayName("打印机名称(留空则使用默认打印机)")]
[FormulaProperty]
public object PrinterName { get; set; }
[OrderWeight(999)]
[DisplayName("将结果返回到变量")]
[ResultToProperty]
public String OutParamaterName { get; set; }
public enum SupportedOperations
{
[Description("GetPrinterState:获取打印机状态")]
GetPrinterState,
[Description("OpenPrinter:连接打印机")]
OpenPrinter,
[Description("ReopenPrinter:连接上次连接过的打印机")]
ReopenPrinter,
[Description("GetAllPrinters:返回所有已配对的打印机的名称列表,以逗号分割")]
GetAllPrinters,
[Description("Cancel:强制取消所有已提交(CommitJob)打印任务")]
Cancel,
[Description("ClosePrinter:强制终止当前打印任务并断开与打印机的连接")]
ClosePrinter
}
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。