代码搜索:CreateWindowEx
找到约 68 项符合「CreateWindowEx」的源代码
代码结果 68
www.eeworm.com/read/391067/8423652
txt 用masmplus学习汇编语言 7.txt
用MasmPlus学习汇编语言 7
相关的例子:下载>>> 作者:Zoologist 于2008-3-16上传
--------------------------------------------------------------------------------
我很喜欢使用Delphi,至少使用它编程的时候不用担心界面的问题,“拖拖拉拉”就能
完
www.eeworm.com/read/100792/15864327
cpp fina.cpp
////////////////////////////////////////////////////////////
//Fina.cpp
//sUN hUI start at 15:32 4.8.2001
//
//
/////////////////////////////////////////////////////////////
#include "Fina.h"
www.eeworm.com/read/391067/8424030
txt 004.txt
4.1 开始了解窗口
4.1.1 窗口是什么
窗口是什么?大家每天在使用Windows,屏幕上的一个个方块就是一个个窗口!那么,窗口为什么是这个样子呢?窗口就是程序吗?
1. 使用窗口的原因
回想一下DOS时代的计算机屏幕,在1990年Windows 3.0推出之前,计算机的屏幕一直使用文本模式,黑洞洞的底色上漂浮着白色的小字,性能不高的图形模式只用于游戏和一些图形软件。 ...
www.eeworm.com/read/288856/8598502
asm button.asm
include .\head.inc
WinMain proto :DWORD,:DWORD,:DWORD,:DWORD
.data
ClassName db "ButtonClass",0
TitleName db "按钮控件子窗口",0
ButtonClassName
www.eeworm.com/read/288856/8598570
asm static.asm
include .\head.inc
WinMain proto :DWORD,:DWORD,:DWORD,:DWORD
.data
ClassName db "StaticClass",0
TitleName db "静态控制子窗口",0
ButtonClassName d
www.eeworm.com/read/288856/8598872
asm buttonsubclass.asm
include .\head.inc
WinMain proto :DWORD,:DWORD,:DWORD,:DWORD
ButtonWndProc proto :DWORD,:DWORD,:DWORD,:DWORD
.data
ClassName db "ButtonClass",0
TitleName
www.eeworm.com/read/179954/9328947
txt 新建 文本文档.txt
testwin 如何编写小于20K的Windows程序.演示如何使用: CreateWindow,CreateWindowEx,SendMessage and GetMessage TranslateMessage and DispatchMessage, CreateFont 演示如何使用API创建Windows窗口控件
apithing.zip 介绍各种Win API系统调用的使用例子
www.eeworm.com/read/179954/9329382
txt readme.txt
********************************************************************************************
\Source Code
该目录下的文件对应本书中的函数,子目录以章为单位,每个工程以函数名命名。每个工程已经调试可以直接运行。
*************************************
www.eeworm.com/read/170245/9813529
asm winmain.asm
DEBUG equ 1
include WinMain.inc
.code
if DEBUG
include \masm32\debug\Debug.asm
endif
include TabAdd.asm
include kFormatDateTime.asm
;>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
www.eeworm.com/read/160216/10556718
txt 第2小节.txt
傻马乱踢 编译
游戏编程起源(初学者)Ⅱ
☆ 创建窗口
好消息,创建窗口你所要做的只是调用一个<mark>CreateWindowEx</mark>()函数。坏消息是,这个函数有好多的参数。嘿!把刀放下,有话好说吗!真的不难,做事情总得走走形式嘛!以下是函数原形:
HWND <mark>CreateWindowEx</mark>(
DWORD dwExS ...