Delphi-PRAXiS

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Win32/Win64 API (native code) (https://www.delphipraxis.net/17-win32-win64-api-native-code/)
-   -   Delphi CreateIcon mit DrawState! Was ist falsch? (https://www.delphipraxis.net/9619-createicon-mit-drawstate-ist-falsch.html)

neolithos 30. Sep 2003 11:13


CreateIcon mit DrawState! Was ist falsch?
 
Ich will ein Symbol zeichnen.
Ist der das Control Disabled dann soll das Symbol grau werden.

So sieht mein Code aus...

Delphi-Quellcode:
  procedure DrawImg(ax, ay : Integer);
  const
    cdwDisabled : array [Boolean] of Cardinal = (DSS_DISABLED, DSS_NORMAL);
  var hIco : HICON;
      bAnd,
      bXOr : Windows.TBitmap;
  begin
    if not bmpGlyph.Empty then
       begin
         bmpGlyph.Transparent := true;

         GetObject(bmpGlyph.Handle, SizeOf(bAnd), @bAnd);
         GetObject(bmpGlyph.MaskHandle, SizeOf(bXOr), @bXOr);

         hIco := CreateIcon(HInstance, bAnd.bmWidth, bAnd.bmHeight,
           bAnd.bmPlanes, bAnd.bmBitsPixel, bAnd.bmBits,
           bXOr.bmBits);
         try
           DrawState(afCanvas.Handle, 0, nil,
             hIco, 0,
             ax, ay, 0, 0,
             DST_ICON or cdwDisabled[Enabled]);
         finally
           DestroyIcon(hIco);
         end;
       end;
  end;
Leider erstellt er das Icon nicht korrekt.
Warum? :gruebel:


Alle Zeitangaben in WEZ +1. Es ist jetzt 13:38 Uhr.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz