The dynamically created panel in Delphi cannot change the color solution (to set the panel's parentbackground to false)

Source: Internet
Author: User

The initial code is as follows:

procedureTform1.button1click (sender:tobject);varPanel:tpanel;beginPanel:= Tpanel.Create(FORM1); Panel.name:='Pnlprevideo'; Panel.parent:=Form1; Panel.onclick:=Panel1click; MoveWindow (Panel.handle,Ten,Ten, -, -, True);End;procedureTform1.panel1click (sender:tobject);begin  if(Sender asTpanel). Name ='Pnlprevideo'  Then(Sender asTpanel). Color: =Clgreen;End;

When clicked, the color does not change, ask Netizen, originally is a bug, correct after code as follows:

procedureTform1.button1click (sender:tobject);varPanel:tpanel;beginPanel:= Tpanel.Create(FORM1); Panel.name:='Pnlprevideo'; Panel.parentbackground:=False; Panel.parent:=Form1; Panel.onclick:=Panel1click; MoveWindow (Panel.handle,Ten,Ten, -, -, True);End;procedureTform1.panel1click (sender:tobject);begin  if(Sender asTpanel). Name ='Pnlprevideo'  Then(Sender asTpanel). Color: =Clgreen;End;

Http://www.cnblogs.com/jxgxy/p/3248408.html

A panel dynamically created in Delphi cannot change color resolution (to set the panel's parentbackground to false)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.