Vcl.XPMan.TXPManifest

From RAD Studio API Documentation
Jump to: navigation, search

System.Classes.TComponentSystem.Classes.TPersistentSystem.TObjectTXPManifest

Delphi

TXPManifest = class(TComponent)

C++

class PASCALIMPLEMENTATION TXPManifest : public System::Classes::TComponent

Properties

Type Visibility Source Unit Parent
class public
Vcl.XPMan.pas
Vcl.XPMan.hpp
Vcl.XPMan Vcl.XPMan

Description

TXPManifest is used to enable run-time themes in your application.

Add a TXPManifest component to your form to enable run-time themes in your application.

Note: You can also enable or disable run-time themes in your application by using the Enable runtime themes checkbox, which can be accessed by going to Project > Options > Application.

Note: C++ Win64 applications using TXPManifest might run into a linker error:

  [ilink64 Error] Error: Unresolved external 'vtable for Vcl::Xpman::TXPManifest'

To remedy this error, add the following lines to a C++ source file of your project:

#ifdef _WIN64
  #pragma link "Vcl.XPMan"
#endif


See Also