Edit 컨트롤 하나를 컴포넌트로 만들려고 합니다..
기능은 색깔넣고, Text를 나오지 않게 하려합니다..
constructor TTestEdit.Create(AOwner:TComponent);
begin
inherited Create(AOwner);
Brush.Color := TColor($AAAAAA);
Text := TCaption('');
end;
위 처럼 코딩을 했는데, 색깔은 나오는데 Text는 TTestEdit란 글자가 나타납니다..
Text 나오지 않게 속성 설정하는 법좀 알려주세요..
그럼, 수고하세요 ^^~~