vcl-171029-expressquantumgrid-tutorials-table-view-tutorial-step-5-customize-appearance.md
In the previous step, you specified how the View handles and displays data. This step describes how to apply skins to the View and customize View styles and scrollbar settings.
Skins allow you to change the appearance of an application built with DevExpress VCL controls.
Enable skin support for the project. Click Project | Modify Skin Options in the main menu of your RAD Studio IDE to invoke the Project Skin Options Editor.
Check Enable skin support and click OK to apply changes and close the dialog.
Place a TdxSkinController component on the form.
Tip
Press Ctrl + H to hide non-visual components that can overlap the View’s content.
Adjust the following skin settings:
Ensure that the NativeStyle property is set to False because the native (OS-dependent) look-and-feel style has priority over skins and built-in basic styles.
Specify Office2019Colorful as the SkinName property value. The control now uses the skin instead of the default look-and-feel style.
The image shows the result:
Click the View and expand its Styles property. Review the available View Styles settings. You can also disable the UseOddEvenStyles option to apply the same appearance settings to odd and even rows.
The image shows the difference:
VCL scrollbars allow you to work with data that does not fit to the control’s client area. You can customize scrollbar settings to make your application more user-friendly.
Select the skin controller and configure scrollbars as follows:
Set the ScrollbarMode property to sbmHybrid. This option enables hybrid scrollbars that are similar to those found in Universal Windows Platform (UWP) applications.
Assign scmSmooth to the ScrollMode property. This option enables per-pixel scrolling and smooth scroll animations when a user navigates between records.
Build and run the application to see the result.
See Also