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

ContentHost Class

An element used to specify where the content should be placed when implementing the DXTabControl.ContentHostTemplate data template.

Namespace: DevExpress.Xpf.Core

Assembly: DevExpress.Xpf.Core.v19.1.dll

Declaration

public class ContentHost :
    ContentHostBase

Remarks

When implementing the DXTabControl.ContentHostTemplate data template, use the ContentHost element to specify where the content should be placed.

<Grid>
    <Grid.Resources>
        <DataTemplate x:Key="ContentHostTemplate">
            <Grid>
                <Grid.ColumnDefinitions>
                    <ColumnDefinition Width="50"/>
                    <ColumnDefinition />
                    <ColumnDefinition  Width="50"/>
                </Grid.ColumnDefinitions>
                <Border Grid.Column="0" Height="Auto" Background="Aqua" />
                <!-- dx:ContentHost element specifies where the content should be placed -->
                <dx:ContentHost Grid.Column="1" />
                <Border Grid.Column="2" Height="Auto" Background="Yellow" />
            </Grid>
        </DataTemplate>
    </Grid.Resources>
    <dx:DXTabControl ... ContentHostTemplate="{StaticResource ContentHostTemplate}"/>
</Grid>

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the ContentHost class.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

Inheritance

Object
DispatcherObject
DependencyObject
Visual
UIElement
FrameworkElement
Panel
DevExpress.Xpf.Core.Native.ContentHostBase
ContentHost
See Also