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

    Gets or sets whether users can resize the AI chat input box. 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 AllowResizeInput { get; set; }

    Property Value

    Type Description
    Boolean

    true to allow users to resize the chat input box; otherwise, false.

    Remarks

    Set the AllowResizeInput property to true to allow users to resize the chat input box. Drag the top edge up to create more typing space, or drag it down to display more chat history.

    Example

    The following example allows users to resize the chat input box:

    <dxaichat:AIChatControl x:Name="aiChatControl"
                            AllowResizeInput="True" />
    

    Resize Chat Input Box

    See Also