|
|
|
|
|
|
|
|
|
|
|
Spaltentext ... |
|
Lösung
unit Unit1;
interface
uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, ExtCtrls;
type TForm1 = class(TForm) ImSonne: TImage; ImMond: TImage; BtWechsel: TButton; procedure BtWechselClick(Sender: TObject); private { Private-Deklarationen } public { Public-Deklarationen } end;
var Form1: TForm1;
implementation
{$R *.DFM}
procedure TForm1.BtWechselClick(Sender: TObject); begin if btwechsel.caption ='Nacht' then begin form1.color := clblack; ImSonne.visible := false; ImMond.visible := true; btwechsel.caption :='Tag'; end else begin form1.color := clblue; ImSonne.visible := true; ImMond.visible := false; btwechsel.caption :='Nacht'; end; end;
end.
Erstellt von Hacer Erdogan
|
|
|
|
|
|
|
|
|
Letzte Änderung: 10.02.2007
© Pädagogisches Institut für die deutsche Sprachgruppe
- Bozen. 2000 -
|
|
|
|
|
|
|
|
|