IMonthViewCellCustomizer.Customize(MonthViewCellViewModel) Method
Modifies appearance settings of an individual Month View cell.
Namespace: DevExpress.Maui.Scheduler
Assembly: DevExpress.Maui.Scheduler.dll
NuGet Package: DevExpress.Maui.Scheduler
Declaration
void Customize(
MonthViewCellViewModel cell
)
Parameters
Name | Type | Description |
---|---|---|
cell | MonthViewCellViewModel | Appearance settings of a Month View cell. |
Example
This example uses the month view cell style and its customizer to modify the cell’s appearance.
<dxs:MonthView.HeaderItemAppearance>
<dxsch:MonthViewHeaderItemAppearance TodayWeekDayTextColor="#FF8000"/>
<dxs:MonthViewHeaderItemAppearance.Customizer>
<views:MonthViewHeaderItemCustomizer/>
</dxs:MonthViewHeaderItemAppearance.Customizer>
</dxs:MonthView.HeaderItemAppearance>
class MonthViewHeaderItemCustomizer : IMonthViewHeaderItemCustomizer {
public void Customize(MonthViewHeaderItemViewModel header) {
if (header.IsToday) {
var tmp = header.BackgroundColor;
header.BackgroundColor = header.WeekDayTextColor;
header.WeekDayTextColor = tmp;
}
}
}
Symbol | Description |
---|---|
Gets or sets the apperance properties of the month view’s cells. This is a bindable property. | |
The storage for month view cell appearance settings. | |
Gets or sets an object that customizes the month view cell’s appearance depending on internal logic. This is a bindable property. | |
If implemented by a class, modifies appearance settings of individual Month View cells. | |
| Modifies appearance settings of an individual Month View cell. |
The storage for the appearance settings values of an individual month view cell. |