Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

CellControl Class

A base class for classes which visualize a time cell in a scheduler view.

Namespace: DevExpress.Xpf.Scheduling.Visual

Assembly: DevExpress.Xpf.Scheduling.v24.2.dll

NuGet Package: DevExpress.Wpf.Scheduling

#Declaration

public abstract class CellControl :
    ChromePresenterBase

#Example

You can create a data template, define a cell style and assign the style to the appropriate property of the desired view:

The following code demonstrates a custom cell style and template applied to the selected cells of the resource with ID=1. A custom data template displays the time interval contained in the cell’s data context.

View Example

<Style x:Key="CellControl.Style" TargetType="dxschv:CellControl">
    <Style.Triggers>
        <MultiDataTrigger>
            <MultiDataTrigger.Conditions>
                <Condition Value="1" Binding="{Binding Resource.Id}" />
                <Condition Value="True" Binding="{Binding IsSelected}" />
            </MultiDataTrigger.Conditions>
            <Setter Property="ContentTemplate">
                <Setter.Value>
                    <DataTemplate>
                        <StackPanel Background="Black">
                            <dxschv:FastTextBlock
                                HorizontalAlignment="Center"
                                Foreground="White"
                                FontSize="10"
                                Text="{Binding Interval}"
                                WordWrap="True" />
                        </StackPanel>
                    </DataTemplate>
                </Setter.Value>
            </Setter>
        </MultiDataTrigger>
    </Style.Triggers>
</Style>
See Also