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

    Gets or sets whether the input area is enabled and users can type and send messages. 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 bool InputEnabled { get; set; }

    Property Value

    Type Description
    Boolean

    true if the input area is enabled; otherwise, false.

    Remarks

    Use the InputEnabled property to enable or disable the input area. When disabled, users cannot type or send messages.

    Example

    The following example disables the input area:

    <dxaichat:AIChatControl x:Name="aiChatControl"
                            InputEnabled="False" />
    

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

    See Also