Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
StyleD.pas
Package: delphi.rar [view]
Upload User: fh681027
Upload Date: 2022-07-23
Package Size: 1959k
Code Size: 2k
Category:
Delphi VCL
Development Platform:
Delphi
- unit StyleD;
- interface
- uses
- SysUtils, Qt, Classes, QGraphics, QForms,
- QControls, QButtons, QStdCtrls;
- type
- TStyleDial = class(TForm)
- ApplyBitBtn: TBitBtn;
- CloseBitBtn: TBitBtn;
- ItalicCheckBox: TCheckBox;
- BoldCheckBox: TCheckBox;
- UnderlineCheckBox: TCheckBox;
- LabelSample: TLabel;
- procedure ApplyBitBtnClick(Sender: TObject);
- procedure CloseBitBtnClick(Sender: TObject);
- procedure ItalicCheckBoxClick(Sender: TObject);
- procedure BoldCheckBoxClick(Sender: TObject);
- procedure UnderlineCheckBoxClick(Sender: TObject);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
- var
- StyleDial: TStyleDial;
- implementation
- {$R *.xfm}
- {allow access to the main form}
- uses Main;
- procedure TStyleDial.ApplyBitBtnClick(Sender: TObject);
- var
- I: Integer;
- begin
- {copy the style from the sample label of the dialog box
- to the five labels of the main form}
- for I := 1 to 5 do
- (Form1.FindComponent ('Label' + IntToStr (I)) as TLabel).
- Font.Style := LabelSample.Font.Style;
- end;
- procedure TStyleDial.CloseBitBtnClick(Sender: TObject);
- begin
- Close;
- end;
- procedure TStyleDial.ItalicCheckBoxClick(Sender: TObject);
- begin
- if ItalicCheckBox.Checked then
- LabelSample.Font.Style := LabelSample.Font.Style + [fsItalic]
- else
- LabelSample.Font.Style := LabelSample.Font.Style - [fsItalic];
- end;
- procedure TStyleDial.BoldCheckBoxClick(Sender: TObject);
- begin
- if BoldCheckBox.Checked then
- LabelSample.Font.Style := LabelSample.Font.Style + [fsBold]
- else
- LabelSample.Font.Style := LabelSample.Font.Style - [fsBold];
- end;
- procedure TStyleDial.UnderlineCheckBoxClick(Sender: TObject);
- begin
- if UnderlineCheckBox.Checked then
- LabelSample.Font.Style := LabelSample.Font.Style + [fsUnderline]
- else
- LabelSample.Font.Style := LabelSample.Font.Style - [fsUnderline];
- end;
- end.