Skip to main content
A newer version of this page is available. .
Tab

ButtonControlStyle Class

Contains style settings that define the button appearance.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.2.dll

Declaration

public class ButtonControlStyle :
    ButtonStyle

The following members return ButtonControlStyle objects:

Library Related API Members
ASP.NET Controls and MVC Extensions ASPxSchedulerStyles.FormButton
ASPxSchedulerStyles.NavigationButton
ButtonControlStyles.Style
DayViewStyles.BottomMoreButton
DayViewStyles.TopMoreButton
Reporting ReportToolbarStyles.ComboBoxButtonStyle

Remarks

The following example illustrates how to specify style settings for the ‘More’ button in the ASPxScheduler’s Day view.

<dx:ASPxScheduler ID="ASPxScheduler1" >
    <Views>
        <DayView>
            <DayViewStyles>
                <BottomMoreButton>
                    <DisabledStyle BackColor="Yellow" />
                </BottomMoreButton>
            </DayViewStyles>
        </DayView>
    </Views>
    <!--... -->
</dx:ASPxScheduler>
See Also