procedure TForm1.Button1Click(Sender: TObject); begin if not FontDialog1.Execute then Exit; end;
procedure TForm1.StatusBar1DrawPanel(StatusBar: TStatusBar; Panel: TStatusPanel; const Rect: TRect); var s : String; begin if Panel.Index <> 0 then exit;
s := StatusBar1.Panels[0].Text; with StatusBar1.Canvas do begin Brush.Color := clRed; FillRect(Rect); Font := FontDialog1.Font; Font.Color := clYellow; TextOut(Rect.left + 2, Rect.top +1, s); end; end;
procedure TForm1.FormCreate(Sender: TObject); begin StatusBar1.Panels[0].Style := psOwnerDraw; end;
Tilladte BB-code-tags: [b]fed[/b] [i]kursiv[/i] [u]understreget[/u] Web- og emailadresser omdannes automatisk til links. Der sættes "nofollow" på alle links.