1 Star 0 Fork 2

zkleaf/ PDA解决方案:活字格设计器插件( PDA(Android)交互命令)

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Open_Builtin_Activity.cs 1.30 KB
一键复制 编辑 原始数据 按行查看 历史
宁伟 提交于 2023-01-11 14:25 . 1. 增加蓝牙打印能力
using GrapeCity.Forguncy.Commands;
using GrapeCity.Forguncy.Plugin;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace AndroidPDACommand
{
[Icon("pack://application:,,,/AndroidPDACommand;component/Resources/Icon_Phone.png")]
[Category("活字格安卓容器(HAC)")]
[OrderWeight(900)]
public class Open_Builtin_Activity : Command, IPropertySearchable, IForceGenerateCell
{
[DisplayName("目标页面")]
public BuiltinPage TargetPage { get; set; }
public override string ToString()
{
return "打开APP的内置页面";
}
public override CommandScope GetCommandScope()
{
return CommandScope.All;
}
public IEnumerable<FindResultItem> EnumSearchableProperty(LocationIndicator location)
{
List<FindResultItem> result = new List<FindResultItem>();
return result;
}
public IEnumerable<GenerateCellInfo> GetForceGenerateCells()
{
List<GenerateCellInfo> result = new List<GenerateCellInfo>();
return result;
}
}
public enum BuiltinPage
{
配置,
快速设置
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/zkleaf/huozige-hac-plugin.git
git@gitee.com:zkleaf/huozige-hac-plugin.git
zkleaf
huozige-hac-plugin
PDA解决方案:活字格设计器插件( PDA(Android)交互命令)
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385