Skip to main content
All docs
V26.1
  • AIChatControl.HeaderText Property

    Gets or sets the text displayed in the AI Chat header. This is a dependency property.

    Namespace: DevExpress.AIIntegration.Wpf.Chat

    Assembly: DevExpress.AIIntegration.Wpf.Chat.v26.1.dll

    NuGet Package: DevExpress.AIIntegration.Wpf.Chat

    Declaration

    public string HeaderText { get; set; }

    Property Value

    Type Description
    String

    The header text.

    Remarks

    The AIChatControl can display a header. This header contains a customizable chat title and the Clear Chat button (removes all messages from conversation history, except for system messages).

    Title and Clear Chat Button - WPF AIChatControl, DevExpress

    Use the ShowHeader property to display the chat header. The HeaderText property specifies the chat title.

    Example

    The following example displays the chat header with a custom title:

    <dxaichat:AIChatControl x:Name="aiChatControl"
                            ShowHeader="True"
                            HeaderText="AI Assistant" />
    

    Refer to the following help topic for additional information: AI Chat Control

    See Also