📄 sample_3_1.c
字号:
/********************************************************************************* **** Sample_3_1.c **** **** A sample application for Figure 3.1. **** *********************************************************************************/#include <stdio.h>#include <Xm/Label.h>Widget theShell, label;void main( argc, argv ) int argc; char *argv[];{ theShell = XtInitialize(argv[0], "Sample_3_1", NULL, NULL, &argc, argv); label = XmCreateLabel( theShell, "TestLabel", NULL, 0 ); XtManageChild( label ); XtRealizeWidget( theShell ); XtMainLoop();}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -