Главная страница
Top.Mail.Ru    Яндекс.Метрика
Текущий архив: 2002.11.07;
Скачать: CL | DM;

Вниз

Как закрасить опр. ячейку в StringGride или DrawGride опр. цветом   Найти похожие ветки 

 
maxim2 ©   (2002-10-28 08:19) [0]

Привет всем!
Подскажите кто знает, а то никак.


 
Separator ©   (2002-10-28 08:20) [1]

FillRect


 
MBo ©   (2002-10-28 08:22) [2]

OnDrawCell+Separator © (28.10.02 08:20)


 
Separator ©   (2002-10-28 08:30) [3]

procedure TForm1.StringGrid1DrawCell(Sender: TObject; ACol, ARow: Integer;
Rect: TRect; State: TGridDrawState);
var
Text: string;
begin
Text:= (Sender as TStringGrid).Cells[ACol, ARow];
with (Sender as TStringGrid).Canvas do
begin
Brush.Color:= clBlue;
FillRect(Rect);
TextOut(Rect.Left + 1, Rect.Top + ((Rect.Bottom - Rect.Top - TextHeight(Text)) div 2), Text);
end
end;


 
maxim2 ©   (2002-10-28 09:11) [4]

Не так закрашивается весь StringGrid а мне надо, например кликнул по ячейке и для нее выбрал цвет.


 
Separator ©   (2002-10-28 09:37) [5]

procedure TForm1.StringGrid1Click(Sender: TObject);
var
Text: string;
Rect: TRect;
begin
if ColorDialog1.Execute then
with (Sender as TStringGrid) do
begin
Text:= Cells[Col, Row];
Rect:= CellRect(Col, Row);
with (Sender as TStringGrid).Canvas do
begin
Brush.Color:= ColorDialog1.Color;
FillRect(Rect);
TextOut(Rect.Left + 1, Rect.Top + ((Rect.Bottom - Rect.Top - TextHeight(Text)) div 2), Text);
end;
end
end;

и DefaultDrawing:= false, но придётся самому обрабатывать OnDrawCell


 
maxim2 ©   (2002-10-28 09:43) [6]

Сенкс, все получилось.



Страницы: 1 вся ветка

Текущий архив: 2002.11.07;
Скачать: CL | DM;

Наверх




Память: 0.48 MB
Время: 0.012 c
1-21492
orlov
2002-10-28 18:28
2002.11.07
Help


4-21860
3d
2002-09-24 22:10
2002.11.07
Форма


1-21501
novarm44
2002-10-28 02:24
2002.11.07
Чтение/Запись файла


3-21352
studentik
2002-10-17 00:10
2002.11.07
InterBase: Транзакция и ключевые поля.


3-21410
Dmitry1
2002-10-16 13:58
2002.11.07
---|Ветка была без названия|---