Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我通过 R 中的 Cairo 包输出了几个绘图。但是有五个标题为“Cairo Graphics”的窗口使得在任务栏中很难找到正确的一个。
无论如何要更改标题栏中的文本吗?
这些不起作用:
CairoWin(title="Hello")
windows.options(title="Hello"); CairoWin()
不幸的是,窗口标题在 Cairo 源代码中是硬编码的(在 中w32-backend.c):
w32-backend.c
window gawin = newwindow("Cairo Graphics", rect(20,20,width,height), Document|StandardWindow);
所以答案是否定的,除非你想打补丁并重新编译它的包。