E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
hwnd
将软件显示到最前面或最后面
/// </summary> /// <param name="
hWnd
">将被激活并被调入前台的窗口句柄</par
·
2015-11-02 18:34
软件
windows编程点滴(七)之关闭一个应用程序
#include <windows.h> int main(int argc, char* argv[]) {
HWND
&
·
2015-11-02 18:16
windows
WPF设置全局快捷键
1: [DllImport("user32.dll")] 2: public static extern bool RegisterHotKey(IntPtr
hWnd
·
2015-11-02 17:27
WPF
C#调用VC的DLL的接口函数参数类型转换一览表
handle---------IntPtr
hwnd
-----------IntPtr char *----------string int * -----------ref int int &
·
2015-11-02 17:09
类型转换
程序5-8 Clover
program Clover; //程序5-8 Clover uses Windows, Messages, Math; function WndProc(hWindow:
HWND
;
·
2015-11-02 17:18
over
程序5-7 RandRect
nbsp; Windows, Messages; var cxClient, cyClient: LongWord; procedure DrawRectangle(hWindow:
HWND
·
2015-11-02 17:17
程序
程序5-6 WhatSize
program WhatSize; //程序5-6 WhatSizeze uses Windows, Messages; procedure Show(hWindow:
HWND
·
2015-11-02 17:16
size
程序5-5 AltWind
program Altwind;//程序5-5 AltWinduses Windows, Messages; function WndProc(hWindow:
HWND
; Msg, wParam
·
2015-11-02 17:16
in
程序5-2 Sinewave
uses Windows, Messages, Math;const NUM = 1000; function WndProc(hWindow:
HWND
·
2015-11-02 17:14
new
程序5-3 LineDemo
program LineDemo; uses Windows, Messages; function WndProc(hWindow:
HWND
; msg, wParam, lParam
·
2015-11-02 17:14
demo
程序5-1 Devcaps1
nbsp; Windows, Messages, DevcapsConst in 'DevcapsConst.pas'; function WndProc(hWindow:
HWND
·
2015-11-02 17:13
CAP
程序4-4 Sysmets3
\sysmets.pas'; function WndProc(hwindow:
HWND
; message: UINT; wParam, lParam: LongInt): LRESULT; stdcall
·
2015-11-02 17:11
SYS
程序4-1 Sysmets1
\sysmets.pas'; function WndProc(hwindow:
HWND
; message, wParam, lParam: LongInt): LRESULT; stdcall;const
·
2015-11-02 17:10
SYS
程序4-3 Sysmets2
\sysmets.pas'; function WndProc(hwindow:
HWND
; message, wParam, lParam: LongInt): LRESULT; stdcall;const
·
2015-11-02 17:10
SYS
程序3-1 Hellowin程序
program HelloWin; uses Windows, SysUtils, Messages, MMSystem; function WndProc(HWindow:
HWND
;
·
2015-11-02 17:09
EL
转MFC消息映射梳理
http://blog.csdn.net/phunxm/article/details/5640766 一.CWnd消息处理 一切从窗口(
HWND
)的创建说起,在MFC中,CWnd:
·
2015-11-02 17:51
mfc
[code]HELLOWIN
#include <windows.h> //窗口过程函数 LRESULT CALLBACK WndProc(
HWND
, UINT, WPARAM, LPARAM); //程序入口函数
·
2015-11-02 17:52
code
Delphi线程定时器
TTimer拥有一个
HWnd
类型的成员变量FWindowHandle,用于捕捉系统消息。 TTimer在Enable的情况下,每隔Interval时间,就抛一个系统消息WM_TIMER,F
·
2015-11-02 17:05
Delphi
MessageBox()功能
它的原型是 int MessageBox(
HWND
hwnd
,LPCTSTR lptext, LPCTSTR lpcation,UINT utype)
hwnd
句柄。
·
2015-11-02 16:36
message
VC API常用函数简单例子大全
第一个:FindWindow根据窗口类名或窗口标题名来获得窗口的句柄,该函数返回窗口的句柄 函数的定义:
HWND
WINAPI FindWindow(LPCSTR lpClassName
·
2015-11-02 16:44
常用函数
孙鑫MFC学习笔记1.Windows应用程序运行机理
1.MSG结构
hwnd
:窗口句柄 message:消息类型 wParam & lParam:消息的附加信息(比如键值) time:消息被投递的时间 tip:typedef
·
2015-11-02 15:04
windows
VC API常用函数简单例子大全
第一个:FindWindow根据窗口类名或窗口标题名来获得窗口的句柄,该函数返回窗口的句柄 函数的定义:
HWND
WINAPI FindWindow(LPCSTR lpClassName
·
2015-11-02 14:54
常用函数
C#操控屏幕键盘
项目中需要调用到系统自带的屏幕键盘,并且需要设置其位置和大小,虽然没有直接的API可以设置,但我们可以通过Win32的SetWindowPos函数来达到我们的目的: SetWindowPos(IntPtr
hWnd
·
2015-11-02 14:25
C#
Win32 : 无标题栏, 可改变大小的窗口
可改变大小 代码
HWND
hwnd
= this -> m_
hWnd
; int index =  
·
2015-11-02 14:22
Win32
Windows 编程[11] - WM_SIZE 消息
program Project1; uses Windows, Messages; {供 WM_SIZE 消息调用的自定义过程} procedure OnSize(h:
HWND
·
2015-11-02 12:29
windows
Windows 编程[9] - WM_CLOSE 消息
program Project1; uses Windows, Messages; {供 WM_CLOSE 消息调用的自定义过程} procedure OnClose(h:
HWND
·
2015-11-02 12:28
windows
Windows 编程[7] - WM_CREATE 消息
以凸现新注入的代码; 本例效果图: program Project1; uses Windows, Messages; function WndProc(wnd:
HWND
·
2015-11-02 12:27
windows
Windows 编程[8] - WM_PAINT 消息
program Project1; uses Windows, Messages; {供 WM_PAINT 消息调用的自定义过程} procedure OnPaint(h:
HWND
·
2015-11-02 12:27
windows
WinAPI: GetWindowRect、GetClientRect - 获取窗口的外部与内部矩形
//声明: {获取窗口外部矩形(相对于屏幕)} GetWindowRect(
hWnd
:
HWND
; {窗口句柄} var lpRect
·
2015-11-02 12:02
window
WinApi: GetParent、SetParent、MoveWindow - 获取、指定父窗口和移动窗口
//声明: {获取父窗口句柄} GetParent(
hWnd
:
HWND
):
HWND
; {指定父窗口} SetParent( hWndChild:
HWND
; {子句柄}
·
2015-11-02 12:02
window
WinAPI: WindowFromPoint- 获取指定点所在窗口的句柄
//声明: WindowFromPoint(Point: TPoint):
HWND
; //举例: unit Unit1; interface uses Windows
·
2015-11-02 12:01
window
WinAPI: MoveWindow - 改变窗口的位置与大小
//声明: MoveWindow(
hWnd
:
HWND
; {窗口句柄} X, Y: Integer; {位置} nWidth,
·
2015-11-02 12:40
window
WinAPI: GetParent - 获取指定窗口的父窗口句柄
//声明: GetParent(
hWnd
:
HWND
{窗口句柄} ):
HWND
; {返回父窗口句柄} //举例: procedure TForm1.Button1Click
·
2015-11-02 12:40
api
WinAPI: GetFocus - 获取当前拥有焦点的窗口的句柄
//声明: GetFocus:
HWND
; {无参数; 返回当前拥有焦点窗口的句柄} //举例: unit Unit1; interface uses Windows
·
2015-11-02 12:39
focus
WinAPI: DrawCaption - 绘制标题栏
//声明: DrawCaption( p1:
HWND
; {窗口句柄} p2: HDC; {设备环境句柄} const p3: TRect; {矩形
·
2015-11-02 12:33
api
射击
hdc = GetDC(
hWnd
); mdc=CreateCompatibleDC(hdc); bufdc=CreateCompatibleDC
·
2015-11-02 12:36
在地图上使图片透明
hdc=GetDC(
hWnd
); mdc=CreateCompatibleDC(hdc); bg=(HBITMAP)LoadImage(NULL,"
·
2015-11-02 12:35
图片
WPF:Webbrowser 捕获关闭事件
事件: this.webBrowser.MessageHook += webBrowser_MessageHook; IntPtr webBrowser_MessageHook(IntPtr
hwnd
·
2015-11-02 11:39
WebBrowser
ShellAPI 自定义系统的关于对话框 about
uses ShellAPI; {$IFNDEF Win32} //Var上面end;下面 function ShellAbout(Wnd:
HWnd
; App, Stuff: PChar;
·
2015-11-02 11:47
shell
在QWidget构造函数中调用winId()的问题
nbsp; http://www.qtcn.org/bbs/read-htm-tid-47284.html “ 自己创建了一个继承于QWidget的MyWidget类,在MyWidget的构造函数中给
hWnd
·
2015-11-02 10:30
widget
VC 为程序创建快捷方式的详细讲解
第一个函数 获得系统特殊路径 HRESULT SHGetSpecialFolderLocation(
HWND
hwndOwner,&nb
·
2015-11-02 10:43
创建
管理输入光标的 WIN32 API 函数
/**/ /// <summary> /// 参数说明: ///
hwnd
·
2015-11-02 09:13
Win32
windows的消息传递--消息盒子
SendMessage(Text1.
hwnd
,EM_GETSEL,0,-1 ); EC_LEFTMARGIN(&H1) EC_USEFONTINF
·
2015-11-02 09:04
windows
Delphi实现全局鼠标钩子
^TMouseHookStruct; {$EXTERNALSYM tagMOUSEHOOKSTRUCT} tagMOUSEHOOKSTRUCT = packed record pt: TPoint;
hwnd
·
2015-11-02 09:59
Delphi
Windows 消息【二】窗口函数
procedure TCustomForm.WndProc(var Message: TMessage); var FocusHandle:
HWND
; SaveIndex: Integ
·
2015-11-02 09:15
windows
WPF:理解ContentControl——动态添加控件和查找控件
WPF:理解ContentControl——动态添加控件和查找控件 我认为WPF的核心改变之一就是控件模型发生了重要的变化,大的方面说,现在窗口中的控件(大部分)都没有独立的
Hwnd
了。
·
2015-11-02 09:23
content
GDI 输出文字、画点、线、三角形、矩形、圆、椭圆、多边形
效果图: 代码: hdc=BeginPaint(
hwnd
,&scPaint); if (hdc) {
·
2015-11-02 09:28
DI
避免关闭窗口时,弹出"关闭"提示窗口-
一.关闭本窗口 1 var
hwnd
= window.open( " about:blank " , " _self "
·
2015-11-02 09:03
提示
windows.h
include " resource.h " #include < wchar.h > void Button_OnCommand(
HWND
·
2015-11-02 09:31
windows
Windows 编程[10] - WM_LBUTTONDOWN、WM_LBUTTONUP 和 WM_MOUSEMOVE 消息
Project1; uses Windows, Messages; {供 WM_LBUTTONDOWN 消息调用的自定义过程} procedure OnLButtonDown(h:
HWND
·
2015-11-02 09:10
windows
上一页
28
29
30
31
32
33
34
35
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他