Вниз
Скачать: CL | DM;

bold button   Найти похожие ветки 

 
lauren   (2005-09-13 01:37) [0]

ну зделала bold button. нажымаю становится жырным,но не знаю как зделать так чтоб очередном шелчке произошло обраное. может кто нибуть поможет?


 
Цукор 5   (2005-09-13 01:45) [1]


begin
 if Button1.Font.Style = [fsBold]
 then
 Button1.Font.Style:=[]
 else
 Button1.Font.Style:=[fsBold];
end;


 
Джо ©   (2005-09-13 01:51) [2]


>  [1] Цукор 5   (13.09.05 01:45)

Все же, наверное, корректнее будет так:

procedure TForm1.Button1Click(Sender: TObject);
 function ReverseBoldStyle (FontStyle: TFontStyles): TFontStyles;
 begin
   Result := FontStyle;
   if fsBold in FontStyle then
     Exclude (Result,fsBold)
   else
     Include (Result,fsBold)
 end;
begin
 Button1.Font.Style := ReverseBoldStyle(Button1.Font.Style)
end;


 
Наиль ©   (2005-09-13 08:49) [3]

function ReverseBoldStyle (FontStyle: TFontStyles): TFontStyles;
begin
  Result := FontStyle+fsBold-fsBold*FontStyle;
end;



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

Скачать: CL | DM;



Память: 0.45 MB
Время: 0.025 c
1-1126331813
kblc
2005-09-10 09:56
2005.10.02
Имя COM сервера


3-1124258621
PChI
2005-08-17 10:03
2005.10.02
Описание dxdbgrid


9-1116958134
ins3rt
2005-05-24 22:08
2005.10.02
OpenGL движок


5-1101159426
Help Me
2004-11-23 00:37
2005.10.02
Как встроить Таймер в компонент


1-1126532796
Charly22
2005-09-12 17:46
2005.10.02
Вид диалога открытия файлов




   Наверх