📄 listing_9_10.c
字号:
/************************************************************************* **** listing_9_10.c **** **** Memo pad using XmText. **** *************************************************************************/#include <Xm/Text.h>Widget appshell, /* Application Shell */ the_text; /* The text widget */void main( argc, argv ) int argc; char *argv[];{ appshell = XtInitialize( argv[0], "Listing_9_10", NULL, 0, &argc, argv ); the_text = XmCreateText( appshell, "TheText", NULL, 0 ); XtManageChild( the_text ); XtRealizeWidget( appshell ); XtMainLoop();}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -