DayViewBase.AppointmentStyle Property
Gets or sets appearance settings of appointments.
Namespace: DevExpress.XamarinForms.Scheduler
Assembly: DevExpress.XamarinForms.Scheduler.dll
NuGet Package: DevExpress.XamarinForms.Scheduler
Declaration
public AppointmentStyle AppointmentStyle { get; set; }
Property Value
Type | Description |
---|---|
AppointmentStyle | The storage of appointments’ appearance settings. |
Remarks
The style provides the following settings that manage an appointment’s appearance:
Example
This example demonstrates how to use the appointment style and its customizer to modify the cell’s appearance.
<dxs:WorkWeekView.AppointmentStyle>
<dxs:AppointmentStyle
BorderThickness="2"
BorderColor="#808080"
ContentPadding="8">
<dxs:AppointmentStyle.TextStyle>
<dxs:TextStyle Color="Black"/>
</dxs:AppointmentStyle.TextStyle>
<dxs:AppointmentStyle.Customizer>
<views:AppointmentCustomizer/>
</dxs:AppointmentStyle.Customizer>
</dxs:AppointmentStyle>
</dxs:WorkWeekView.AppointmentStyle>
Symbol | Description |
---|---|
| Gets or sets appearance settings of appointments. |
The storage of appointment item appearance settings. | |
Gets or sets the object that customizes the appointment appearance depending on internal logic. | |
The interface that should implement a class that modifies appearance settings of individual appointments. | |
Modifies appearance settings of an individual appointment. | |
The storage for appearance settings values of an individual appointment item‘s representation. |