c标签页界面源码(imgui辅助界面源码)
本文目录一览:
急!急!用C语言形成简单界面显示源代码
#include windows.h
int main(int argc, char* argv[])
{
MessageBoxA(0,"开始","提示",MB_OK);
return 0;
}
c语言程序界面源代码
保存源代码的话,可以保存成txt,即新建一个空白的文本文档,再把代码复制进去。还可以直接点vc++的保存或另存为按钮,进到你建好的目录下,再将文件名命名,名字是xxx.cpp,保存即可。
希望可以帮到你!
Windows界面C语言源代码
你试试吧,我不清楚能不能在BORLAND C里运行。
#includewindows.h
LRESULT CALLBACK MainWndProc(HWND,UINT,WPARAM,LPARAM);
int APIENTRY WinMain(HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPSTR lpCmdLine,
int nCmdShow)
{
char szClassName[]="MainWClass";
WNDCLASSEX wndclass;
// 用描述主窗口的参数填充WNDCLASSEX结构
wndclass.cbSize=sizeof(wndclass); // 结构的大小
wndclass.style=CS_HREDRAW|CS_VREDRAW|CS_OWNDC; // 指定如果大小改变就重画
wndclass.lpfnWndProc=MainWndProc; // 窗口函数指针
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=szClassName; // 窗口类的名称
wndclass.hIconSm=NULL; // 没有类的小图标
// 注册这个窗口类
::RegisterClassEx(wndclass);
// 创建主窗口
HWND hwnd=::CreateWindowEx(
0, // dwExStyle,扩展样式
szClassName, // lpClassName,类名
"Window", // lpWindowName,标题
WS_OVERLAPPEDWINDOW, // dwStyle,窗口风格
CW_USEDEFAULT, // X,初始X坐标
CW_USEDEFAULT, // Y,初始Y坐标
CW_USEDEFAULT, // nWidth,宽度
CW_USEDEFAULT, // nHeight,高度
NULL, // hWndParent,父窗口句柄
NULL, // hMenu,菜单句柄
hInstance, // hInstance,程序实例句柄
NULL); // lpParam,用户数据
if(hwnd==NULL)
{
::MessageBox(NULL,"创建窗口出错!","出错",MB_OK);
return -1;
}
// 显示窗口,刷新窗口客户区
::ShowWindow(hwnd,nCmdShow);
::UpdateWindow(hwnd);
// 从消息队列中取出消息,交给窗口函数处理,直到GetMessage返回FALSE,结束消息循环
MSG msg;
while(::GetMessage(msg,NULL,0,0))
{
// 转换键盘消息
::TranslateMessage(msg);
// 将消息发送到相应的窗口函数
::DispatchMessage(msg);
}
// 当GetMessage返回FALSE时程序结束
return msg.wParam;
}
LRESULT CALLBACK MainWndProc(HWND hwnd,UINT message,WPARAM wParam,LPARAM lParam)
{
char szText[]="最简单的窗口程序!";
switch(message)
{
case WM_PAINT:
{
HDC hdc;
PAINTSTRUCT ps;
hdc=::BeginPaint(hwnd,ps);
::EndPaint(hwnd,ps);
return 0;
}
case WM_DESTROY:
::PostQuitMessage(0);
return 0;
}
return ::DefWindowProc(hwnd,message,wParam,lParam);
}
用c语言编写的分页源码
运行结果图,用的是TC。
VC 的话要做些修改.while((page[i++]=getche())!='\r');
#include stdio.h
#define N 40
int printend(){
char page[5],i;
printf("\n\nESC-exit n-nextpage l-lastpage e-endpage s-startpage jumppage :");
i=0;
while((page[i++]=getche())!='\r');
page[i]='\0';
if(isdigit(page[0]))
return atoi(page);
else
return page[0];
}
main(){
int a,i,k;
for(i=1;i=N;i++){
printf("\n%2d**********************",i);
if(i%10==0){
a=printend();
k=i;
switch(a){
case 'p':
case 'P':
if(i10)
i-=20;
else
i=0;
break;
case 'n':
case 'N':
if(i=N)
i=N-10;
break;
case 's':
case 'S':
i=0;
break;
case 'e':
case 'E':
i=N-10;
break;
case 27:
exit(0);
default:
i=a*10-10;
if(iN){
printf("\nError ,max page is %d.",N/10);
printf("Press anykey to continue.");
getch();
i=N-10;
}
break;
}
clrscr();
}
}
getchar();
}