C
Cheasy
Unregistered / Unconfirmed
GUEST, unregistred user!
现在: 画了一个全蓝的框框,
with Image1 do
begin
Brush.Style := bsSolid;
Brush.Color := clBlue;
Rectangle(0,0,pnlParent.ClientWidth,pnlParent.ClientHeight);
{...other...}
end;
目的: 把两边有color上的差别,
如左半边的 color 比右边的 浅一点.
但希望不要重画另一边,因为上面还有很多东西要改,只要把color调浅一点不可以了.
{请问如何调 或者 有什么更好的方法}
请大家帮忙,谢谢~
with Image1 do
begin
Brush.Style := bsSolid;
Brush.Color := clBlue;
Rectangle(0,0,pnlParent.ClientWidth,pnlParent.ClientHeight);
{...other...}
end;
目的: 把两边有color上的差别,
如左半边的 color 比右边的 浅一点.
但希望不要重画另一边,因为上面还有很多东西要改,只要把color调浅一点不可以了.
{请问如何调 或者 有什么更好的方法}
请大家帮忙,谢谢~