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

    Gets or sets the prompt text displayed in the AI Chat input box when it is empty. 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 InputBoxNullText { get; set; }

    Property Value

    Type Description
    String

    The prompt text.

    Remarks

    Use the InputBoxNullText property to display the prompt text in the AI Chat input box when it is empty.

    If there is no property specified, the component uses the AIChat_InputPlaceholder localization string as the prompt text.

    Example

    The following example specifies the prompt text displayed in the empty input box:

    <dxaichat:AIChatControl x:Name="aiChatControl"
                    InputBoxNullText="Ask me something...">
    </dxaichat:AIChatControl>
    

    Input Area Placeholder - WPF AIChatControl, DevExpress

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

    See Also