Navigation Menu

Skip to content

Commit

Permalink
Add the phrase form
Browse files Browse the repository at this point in the history
  • Loading branch information
aardio committed Dec 1, 2019
1 parent 42bc328 commit 877eba9
Show file tree
Hide file tree
Showing 11 changed files with 596 additions and 289 deletions.
3 changes: 3 additions & 0 deletions .gitignore
@@ -0,0 +1,3 @@
.build/default.main.aardio
.build/default.Manifest.xml
dist/
13 changes: 8 additions & 5 deletions README.md
@@ -1,8 +1,11 @@
# wubi-lex-tool
Win10自带的微软五笔码表安装、管理工具。
不需要重启操作系统就可以切换词库,例如在五笔86、五笔98词库间自由切换。
支持导入、导出、安装二进制格式、文本格式的码表,支持字根反查。
Win10自带的微软五笔码表安装、管理工具。
支持导入、导出、安装二进制格式、文本格式的码表, 不需要重启操作系统就可以切换词库。
可在五笔86、五笔98词库间自由切换,可自动识别并显示系统码表是五笔96、98、还是新世纪。
支持字根反查,可显示五笔98版字根拆分图示(不仅支持单字,也可以支持词组)。
支持直接编辑五笔短语词库(实时生效,不需要点击很多步骤到设置面板去导入)。

![Screenshot](https://raw.githubusercontent.com/aardio/wubi-lex-tool/master/screenshots/1.png)

![Screenshot](https://raw.githubusercontent.com/aardio/wubi-lex-tool/master/screenshots/2.png)
![Screenshot](http://ide.update.aardio.com/log/wubilex1.png)

![Screenshot](http://ide.update.aardio.com/log/wubilex2.png)
Binary file modified app.ico
Binary file not shown.
5 changes: 3 additions & 2 deletions default.aproj
@@ -1,13 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<project ver="10" name="五笔码表管理" libEmbed="true" icon="\app.ico" ui="win" output="五笔码表.exe" CompanyName="aardio" FileDescription="五笔码表管理工具" LegalCopyright="Copyright (C) aardio 2019" ProductName="五笔码表管理工具" InternalName="wubi-lex-tool.exe" FileVersion="1.0.0.04" ProductVersion="1.0.0.04" publishDir="/dist/" dstrip="false">
<project ver="10" name="五笔码表管理(Win10)" libEmbed="true" icon="\app.ico" ui="win" output="五笔码表.exe" CompanyName="aardio" FileDescription="五笔码表管理工具" LegalCopyright="Copyright (C) aardio 2019" ProductName="五笔码表管理工具" InternalName="wubi-lex-tool.exe" FileVersion="1.2.0.0" ProductVersion="1.2.0.0" publishDir="/dist/" dstrip="false">
<file name="main.aardio" path="main.aardio" comment="main.aardio"/>
<folder name="资源文件" path="res" embed="true">
<folder name="资源文件" path="res" embed="true" local="false">
<file name="ChsWubi86.lex" path="res\ChsWubi86.lex" comment="res\ChsWubi86.lex"/>
<file name="ChsWubi98.lex" path="res\ChsWubi98.lex" comment="res\ChsWubi98.lex"/>
</folder>
<folder name="窗体文件" path="dlg" comment="目录" embed="true" local="false">
<file name="lex.aardio" path="dlg\lex.aardio" comment="dlg\lex.aardio"/>
<file name="spelling.aardio" path="dlg\spelling.aardio" comment="dlg\spelling.aardio"/>
<file name="help.aardio" path="dlg\help.aardio" comment="dlg\key.aardio"/>
<file name="phrase.aardio" path="dlg\phrase.aardio" comment="dlg\phrase.aardio"/>
</folder>
</project>
28 changes: 14 additions & 14 deletions dlg/help.aardio
Expand Up @@ -26,23 +26,23 @@ winform.keyboardShortcuts.text = /*
*/

winform.lnkGitHub.skin(
color = {
hover = 0xFFFF0000;
active = 0xFF00FF00;
}
border = {
hover = {bottom=1;color=0xFFFF0000}
}
color = {
hover = 0xFFFF0000;
active = 0xFF00FF00;
}
border = {
hover = {bottom=1;color=0xFFFF0000}
}
)

winform.lnkWebSite.skin(
color = {
hover = 0xFFFF0000;
active = 0xFF00FF00;
}
border = {
hover = {bottom=1;color=0xFFFF0000}
}
color = {
hover = 0xFFFF0000;
active = 0xFF00FF00;
}
border = {
hover = {bottom=1;color=0xFFFF0000}
}
)

import process;
Expand Down

0 comments on commit 877eba9

Please sign in to comment.