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

    Gets or sets the background brush of the input area (the prompt input box and the surrounding submit area). 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 Brush InputBackground { get; set; }

    Property Value

    Type Description
    Brush

    A Brush that paints the input area background.

    Remarks

    Use the InputBackground property to specify the background color of the input area (the prompt input box and the surrounding submit area).

    Example

    The following example sets the background color of the input area:

    <dxaichat:AIChatControl x:Name="aiChatControl"
                            InputBackground="#FFFFF0B3">
    </dxaichat:AIChatControl>
    

    Input Area Background - WPF AIChatControl, DevExpress

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

    See Also