am2000.pas
资源名称:am2000.zip [点击查看]
上传用户:powellwoo
上传日期:2007-01-07
资源大小:109k
文件大小:3k
源码类别:
Delphi控件源码
开发平台:
C++ Builder
- {*******************************************************}
- { }
- { AnimatedMenus/2000 }
- { Version 2.2 (build 655) }
- { Compiled 01.09.99 16:53 }
- { }
- { Copyright (c) 1997-99 AnimatedMenus.com }
- { All rights reserved. }
- { }
- {*******************************************************}
- unit am2000;
- {
- This is Microsoft Office2000-styled menus component pack.
- *********************************************************************
- Website: http://www.animatedmenus.com/
- *********************************************************************
- *********************************************************************
- Thanks to Victor Santos for participation in the development
- of this version.
- *********************************************************************
- Thanks to all users and betatesters.
- Thanks to everyone who helps in development of this component.
- *********************************************************************
- }
- {$BOOLEVAL OFF}
- {$RANGECHECKS OFF}
- {$TYPEDADDRESS OFF}
- {$WRITEABLECONST ON}
- {$I am2000.inc}
- interface
- uses
- am2000menubar, am2000mainmenu, am2000popupmenu;
- type
- TMainMenu2000 = class(TCustomMainMenu2000)
- published
- property Items;
- {$IFNDEF Delphi4OrHigher}
- property Images;
- {$ENDIF}
- end;
- TMenuBar2000 = class(TCustomMenuBar2000)
- published
- property Options;
- property Menu;
- property AlignParent;
- property Font;
- property Align;
- property ParentFont;
- property ShowHint;
- property ParentShowHint;
- property SystemFont;
- property PopupMenu;
- property Ctl3D;
- property StatusBar;
- property StatusBarIndex;
- property Transparent;
- property OnMenuCommand;
- property OnMenuClose;
- property OnCloseQuery;
- end;
- TPopupMenu2000 = class(TCustomPopupMenu2000)
- published
- property StatusBar;
- property StatusBarIndex;
- property ShowHint;
- property ParentShowHint;
- property Font;
- property ParentFont;
- property SystemFont;
- property Options;
- property Ctl3D;
- {$IFNDEF Delphi4OrHigher}
- property Images;
- {$ENDIF}
- property OnMenuCommand;
- property OnMenuClose;
- property OnCloseQuery;
- end;
- implementation
- {$R am2000.res}
- {$R AutoBitmaps.res}
- initialization
- Randomize;
- end.