Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Programming
»
LCL
»
[CLOSED] Custom PopUpMenu
Free Pascal
Website
Downloads
Wiki
Bugtracker
Mailing List
Lazarus
Website
Downloads (Laz+FPC)
Packages (OPM)
FAQ
Wiki
Bugtracker
CCR Bugs
IRC channel
GIT
Mailing List
Other languages
Foundation
Website
Useful Wiki Links
Project Roadmap
Getting the Source
Screenshots
How to use the forum
About donations (wiki)
Bookstore
Computer Math and Games in Pascal
(preview)
Lazarus Handbook
Search
Advanced search
Recent
snake biting its tail
by
Ñuño_Martínez
[
Today
at 11:56:05 am]
RISCV32 Embedded -> Addin...
by
kupferstecher
[
Today
at 11:24:51 am]
TIOBE Index for May 2022
by
BeniBela
[
Today
at 11:20:50 am]
RP2040 with Picoprobe and...
by
MarkMLl
[
Today
at 11:18:05 am]
TBCTrackBarUpDown OnMouse...
by
petevick
[
Today
at 10:02:37 am]
Where is GraphUtils? Colo...
by
rvk
[
Today
at 09:54:29 am]
Read JSON names
by
Gustavo 'Gus' Carreno
[
Today
at 09:43:31 am]
Ant.Properties can't be f...
by
Pkandet
[
Today
at 09:04:45 am]
fpDebug not goto error li...
by
tsknv
[
Today
at 08:58:07 am]
Help needed for usage of ...
by
Thaddy
[
Today
at 07:48:58 am]
« previous
next »
Print
Pages: [
1
]
Author
Topic: [CLOSED] Custom PopUpMenu (Read 4678 times)
Pe3s
Full Member
Posts: 145
[CLOSED] Custom PopUpMenu
«
on:
November 30, 2021, 09:45:16 pm »
How can I fix the code to get rid of this gray frame.
Code: Pascal
[Select]
[+]
[-]
procedure
TForm1
.
PopupMenu1DrawItem
(
Sender
:
TObject
;
ACanvas
:
TCanvas
;
ARect
:
TRect
;
AState
:
TOwnerDrawState
)
;
var
x
,
y
:
Integer
;
begin
ACanvas
.
Font
.
Assign
(
Screen
.
MenuFont
)
;
if
AState
*
[
odSelected
,
odFocused
]
<>
[
]
then
begin
ACanvas
.
Brush
.
Color
:
=
RGBToColor
(
216
,
215
,
255
)
;
ACanvas
.
Pen
.
Color
:
=
RGBToColor
(
190
,
190
,
230
)
;
ACanvas
.
Rectangle
(
ARect
)
;
//ACanvas.Font.Style := [fsBold];
end
else
ACanvas
.
GradientFill
(
ARect
,
clSkyBlue
,
clSkyBlue
,
gdHorizontal
)
;
x
:
=
2
;
y
:
=
(
ARect
.
Top
+
ARect
.
Bottom
-
ImageList1
.
Height
)
div
2
;
ImageList1
.
Draw
(
ACanvas
,
x
,
y
,
TMenuItem
(
Sender
)
.
ImageIndex
,
TMenuItem
(
Sender
)
.
Enabled
)
;;
x
:
=
x
+
ImageList1
.
Width
+
4
;
ACanvas
.
Pen
.
Color
:
=
clGray
;
ACanvas
.
Line
(
x
,
ARect
.
Top
,
x
,
ARect
.
Bottom
)
;
x
:
=
x
+
4
;
y
:
=
(
ARect
.
Top
+
ARect
.
Bottom
-
ACanvas
.
TextHeight
(
'Tg'
)
)
div
2
;
ACanvas
.
Brush
.
Style
:
=
bsClear
;
ACanvas
.
TextOut
(
x
,
y
,
TMenuItem
(
Sender
)
.
Caption
)
;
end
;
«
Last Edit: December 01, 2021, 07:52:15 pm by Pe3s
»
Logged
Pe3s
Full Member
Posts: 145
Re: Custom PopUpMenu
«
Reply #1 on:
December 01, 2021, 07:38:34 am »
@Jamie My point was to fill the entire background of the menu with color. I don't want to remove the shadow. Remove white border
«
Last Edit: December 01, 2021, 01:33:51 pm by Pe3s
»
Logged
Pe3s
Full Member
Posts: 145
Re: Custom PopUpMenu
«
Reply #2 on:
December 01, 2021, 07:51:53 pm »
Thank you
Logged
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Programming
»
LCL
»
[CLOSED] Custom PopUpMenu
TinyPortal
© 2005-2018