程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> Delphi >> 查句柄知多少

查句柄知多少

編輯:Delphi
基本上句柄是標志窗口,我可以根據句柄又可引申其中更多如類名,windowtitle等屬性所以基於這點,一般開發工具會提供查句柄,查類名等工具,vs提供的spy++就是一個很好例子。現在教你們一查句柄知多少。其實也簡單,下面貼出源代碼。

   procedure Tform1.TimerTimer(Sender: TObject);
   var
   Pos: TPoint;
   Handle: HWND;
   ScreenDC: HDC;
   Buf: array[0..1024] of Char;
   ScreenColor: COLORREF;
   begin
   GetCursorPos(Pos); // 得到當前光標位置
   Handle := WindowFromPoint(Pos); // 返回當前位置的句柄
   HandleText.Caption := IntToStr(Handle);
   GetClassName(Handle, Buf, 1024); // 得到類名
   ClassNameText.Caption := Buf;
   SendMessage(Handle, WM_GETTEXT, 33, Integer(@Buf)); // 得到標題
   TitleText.Caption := Buf;
   { 得到光標處點的顏色 }
   ScreenDC := GetDC(0);
   ScreenColor := GetPixel(ScreenDC, Pos.X, Pos.Y);
   Shape.Brush.Color := TColor(ScreenColor);
   RGBColorText.Caption := '紅: ' + IntToStr(GetRValue(ScreenColor)) +
   '  綠: ' + IntToStr(GetGValue(ScreenColor)) + '  藍: ' +
   IntToStr(GetBValue(ScreenColor));
   ReleaseDC(0, ScreenDC);
   DelphiColorText.Caption := Format('Delphi中顏色值:$00%2.2x%2.2x%2.2x', [GetBValue(ScreenColor),
   GetGValue(ScreenColor), GetRValue(ScreenColor)]);
   HTMLColorText.Caption := Format('Html顏色值:#%2.2x%2.2x%2.2x', [GetRValue(ScreenColor),
   GetGValue(ScreenColor), GetBValue(ScreenColor)]);
   end; 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved