ButtonStyle.DisabledStyle Property
In This Article
Contains the style settings which define a button’s appearance in the disabled state.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
NuGet Package: DevExpress.Web
#Declaration
public virtual AppearanceSelectedStyle DisabledStyle { get; }
#Property Value
Type | Description |
---|---|
Appearance |
An Appearance |
#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