空窗口:
#include <windows.h>/* 所有的窗口输出到这里去 */
LRESULT CALLBACK WndProc(HWND hwnd, UINT Message, WPARAM wParam, LPARAM lParam) {
switch(Message) {
/* 停止后,告诉主线程停止 */
case WM_DESTROY: {
PostQuitMessage(0)
break
}
/* 所有其他消息(很多人)都使用默认程序处理 */
default:
return DefWindowProc(hwnd, Message, wParam, lParam)
}
return 0
}
/* Win32 GUI程序的主要功能:执行从这里开始 */
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow) {
WNDCLASSEX wc /* 窗口的属性结构 */
HWND hwnd /* "句柄" 一个窗口的标识符 */
MSG Msg /* 所有消息的临时位置 */
/* 修改结构和设置的东西 */
memset(&wc,0,sizeof(wc))
wc.cbSize = sizeof(WNDCLASSEX)
wc.lpfnWndProc = WndProc /* 将发送消息的地方 */
wc.hInstance = hInstance
wc.hCursor = LoadCursor(NULL, IDC_ARROW)
/* 白色,COLOR_WINDOW是系统定义的颜色值,其数值是5 */
wc.hbrBackground = (HBRUSH)(COLOR_WINDOW+1)
wc.lpszClassName = "WindowClass"
wc.hIcon = LoadIcon(NULL, IDI_APPLICATION) /* 载入一个标准图标 */
wc.hIconSm = LoadIcon(NULL, IDI_APPLICATION) /* 使用名称“A”来作为该项目图标 */
if(!RegisterClassEx(&wc)) {
MessageBox(NULL, "Window Registration Failed!","Error!",MB_ICONEXCLAMATION|MB_OK)
return 0
}
hwnd = CreateWindowEx(WS_EX_CLIENTEDGE,"WindowClass","Caption",WS_VISIBLE|WS_OVERLAPPEDWINDOW,
CW_USEDEFAULT, /* x */
CW_USEDEFAULT, /* y */
640, /* 宽度 */
480, /* 高度 */
NULL,NULL,hInstance,NULL)
if(hwnd == NULL) {
MessageBox(NULL, "Window Creation Failed!","Error!",MB_ICONEXCLAMATION|MB_OK)
return 0
}
/*
所有的输入处理和发送到窗口过程。
注意,这个块代码流,直到它接收到的东西,
所以回路不会产生不合理的高CPU使用率。
*/
while(GetMessage(&Msg, NULL, 0, 0) > 0) /* 如果没有收到任何错误…*/
{
TranslateMessage(&Msg) /* 如果存在翻译关键码字符*/
DispatchMessage(&Msg) /* 发送它到WndProc */
}
return Msg.wParam
}
如windows *** 作系统本身就提供了UI的接口
一个简单的示例代码如下
#include <windows.h>LRESULT CALLBACK WndProc(HWND,UINT,WPARAM,LPARAM)
int WINAPI WinMain(HINSTANCE hinstance,HINSTANCE hprevinstance,LPSTR line,int cmd)
{
static TCHAR AppName[]=TEXT("99")
HWND hwnd
MSG msg
WNDCLASS wndclass
wndclass.style=CS_HREDRAW|CS_VREDRAW
wndclass.lpfnWndProc=WndProc
wndclass.cbClsExtra=0
wndclass.cbWndExtra=0
wndclass.hInstance=hinstance
wndclass.hIcon=LoadIcon(NULL,IDI_APPLICATION)
wndclass.hCursor=LoadCursor(NULL,IDC_ARROW)
wndclass.hbrBackground=(HBRUSH)GetStockObject(WHITE_BRUSH)
wndclass.lpszMenuName=NULL
wndclass.lpszClassName=AppName
if(!RegisterClass(&wndclass))
{
MessageBox(NULL,TEXT("This program requires Windows NT!"),AppName,MB_ICONERROR)
return 0
}
hwnd=CreateWindow(AppName,TEXT("九九乘法口诀表"),\
WS_OVERLAPPEDWINDOW,\
CW_USEDEFAULT,\
CW_USEDEFAULT,\
CW_USEDEFAULT,\
CW_USEDEFAULT,\
NULL,\
NULL,\
hinstance,\
NULL)
ShowWindow(hwnd,cmd)
UpdateWindow(hwnd)
while(GetMessage(&msg,NULL,0,0))
{
TranslateMessage(&msg)
DispatchMessage(&msg)
}
return msg.wParam
}
LRESULT CALLBACK WndProc(HWND hwnd,UINT message,WPARAM wparam,LPARAM lparam)
{
HDC hdc
PAINTSTRUCT ps
RECT rect
static x,y
int i,j
int len
TCHAR buf[50]
TEXTMETRIC tm
switch(message)
{
case WM_CREATE:
hdc=GetDC(hwnd)
GetTextMetrics(hdc,&tm)
x=tm.tmAveCharWidth
y=tm.tmHeight+tm.tmExternalLeading
ReleaseDC(hwnd,hdc)
//MessageBox(NULL,TEXT("Create Successed!"),TEXT("Successed"),MB_OK)
//PlaySound(TEXT("hello.wav"),NULL,SND_FILENAME|SND_ASYNC)
return 0
case WM_PAINT:
hdc=BeginPaint(hwnd,&ps)
GetClientRect(hwnd,&rect)
//DrawText(hdc,TEXT("Hello World!"),-1,&rect,DT_SINGLELINE|DT_CENTER|DT_VCENTER)
//TextOut(hdc,rect.right/2-(strlen("Hello World!")/2)*x,rect.bottom/2-y/2,TEXT("Hello World!"),12)
for(i=1i!=10++i)
{
for(j=1j!=i+1++j)
{
len=wsprintf(buf,TEXT("%dx%d=%-4d"),j,i,i*j)
TextOut(hdc,j*len*x,i*y,buf,len)
}
}
EndPaint(hwnd,&ps)
return 0
case WM_DESTROY:
PostQuitMessage(0)
return 0
}
return DefWindowProc(hwnd,message,wparam,lparam)
}
上面是一个打印windows下拥有窗口界面的九九乘法口诀表的c语言程序代码
同样的c语言也会有其它的UI库
比如Gtk,Gtk是可移植的UI库
可以使用它在Linux、windows包括mac等等 *** 作系统上做ui程序设计
一个简单的示例代码如下
#include <gtk/gtk.h>int main(int argc,char **argv)
{
GtkWidget *win
GtkWidget *label
int i,j
GString *str
gtk_init(&argc,&argv)
win=gtk_window_new(GTK_WINDOW_TOPLEVEL)
gtk_window_set_position(GTK_WINDOW(win),GTK_WIN_POS_CENTER)
g_signal_connect(G_OBJECT(win),"delete-event",G_CALLBACK(gtk_main_quit),NULL)
str=g_string_new(NULL)
for(i=1i <= 9++i)
{
for(j=1j != i+1++j)
g_string_append_printf(str,"%dx%d=%-4d",j,i,i*j)
g_string_append(str,"\n")
}
label=gtk_label_new(str->str)
gtk_container_add(GTK_CONTAINER(win),label)
gtk_widget_show_all(win)
gtk_main()
g_string_free(str,TRUE)
return 0
}
代码如下:#include
<stdio.h>
#include
<conio.h>
int
main()
{
int
num
=
0
//
要输入的数字
printf("|---------------------------------------|\n")
printf("|\t请输入选项编号(0-7):\t\t|")
printf("\n|---------------------------------------|\n")
printf("|\t1--输入:\t\t\t|\n")
printf("|\t1--显示:\t\t\t|\n")
printf("|\t1--查找:\t\t\t|\n")
printf("|\t1--最值:\t\t\t|\n")
printf("|\t1--插入:\t\t\t|\n")
printf("|\t1--删除:\t\t\t|\n")
printf("|\t1--退出:\t\t\t|\n")
printf("|---------------------------------------|\n")
printf("\t
")
scanf("%d",
&num)
printf("\t输入了%d\n",
num)
getch()
return
0
}
界面效果:
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)