求一个根据窗口标题显示的备忘录工具

场景是有一些专业性的小工具,界面比较复杂,用的次数又不那么频繁,每次都要先重新看看文档才知道怎么用。现在的做法是把一些基本操作记录到一个文档里,每次用的时候打开对照着看。

想要找一个备忘录/便签工具,可以给每个程序窗口(根据窗口标题判定)写一些文本,并在当前窗口打开的时候自动展示。

尝试找了一下,但是没有找到,因此来询问。

附图为一个可能的实现。

1 个赞

这不就是ahk/autoit/按键精灵?

utools 里有一个笔记插件实现类似功能

多谢!找了找,名字叫「Ghost Note」,可以根据进程展示对应的笔记,不过不是很符合我的需求:

  1. 需要和窗口并排展示,最好能置顶
  2. 根据窗口标题而不是进程名
  3. 启动程序时自动打开,而不需要手动查找

这个软件有这个功能

Stickies

不过离楼主想的有差距,比如它是同时匹配标题和Window Class的(标题变了就不行,比如浏览器切了Tab),而且关联的窗口关掉重开有时就会不灵了,另外“需要和窗口并排展示”还得需要下面这个小技巧

Hold shift while attaching a sticky to attach it relative to the position of the window

PNotes 版本也有这个功能,不过它的 .NET 版本对于标题支持通配符

How to: pin/unpin note to/from window

Once pinned, the note will appear when a window it’s pinned to becomes visible or is restored from task bar. If the window is closed or minimized the pinned note will disappear.

Instead of using fully specified window text, you may use wildcards. In this case the note becomes pinned not only to selected window, but to all windows from same class whose text matches the text with wildcards.

2 个赞

试了一下 PNotes 的 .NET 版本,完美支持我的需求!最小化程序窗口,笔记也会一起关闭,再次打开的时候可以自动展示