unit FbDemoForm;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, MdFontbox;
type
TForm1 = class(TForm)
Label1: TLabel;
Memo1: TMemo;
MdFontCombo1: TMdFontCombo;
private
public
end;
var
Form1: TForm1;
implementation
end.
|
object Form1: TForm1
Left = 207
Top = 107
Width = 509
Height = 299
Caption = 'FontBox Demo'
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = True
PixelsPerInch = 96
TextHeight = 16
object Label1: TLabel
Left = 99
Top = 11
Width = 29
Height = 16
Caption = '&Font:'
end
object Memo1: TMemo
Left = 8
Top = 40
Width = 486
Height = 225
Anchors = [akLeft, akTop, akRight, akBottom]
Color = clWindow
Lines.Strings = (
'Text of the FontBox Demo program.'
'More text.'
'More text.')
ScrollBars = ssVertical
TabOrder = 0
end
object MdFontCombo1: TMdFontCombo
Left = 136
Top = 8
Width = 214
Height = 24
Anchors = [akLeft, akTop, akRight]
Color = clWindow
ItemHeight = 16
ItemIndex = 47
TabOrder = 1
Text = 'MS Sans Serif'
end
end
|