list_14_15.c

来自「This source code has been tested under O」· C语言 代码 · 共 30 行

C
30
字号
/*************************************************************************                                                                    ****  listing_14_15.c                                                   ****                                                                    ****  XmCommand Example.                                                ****                                                                    *************************************************************************/#include <Xm/Command.h>Widget	appshell,			/* Application Shell	      */	the_cb;				/* The command box            */Arg	arglist[16];			/* Used to set resources      */void main( argc, argv )    int     argc;    char    *argv[];{    appshell = XtInitialize( argv[0], "Listing_14_15", NULL, 0, &argc, argv );    the_cb = XmCreateCommand( appshell, "TheCmd", NULL, 0 );    XtManageChild( the_cb );    XtRealizeWidget( appshell );    XtMainLoop();}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?