DataGridAISettings
Provides configuration settings for the AI prompt panel in the DataGrid. This class controls the UI aspects of the prompt input experience.
Definition
Namespace:Telerik.Maui.Controls.DataGrid
Assembly:Telerik.Maui.Controls.dll
Syntax:
public class DataGridAISettings : StyleableElement
Inheritance: objectDataGridAISettings
Constructors
public DataGridAISettings()
Fields
BottomSheetContentHeaderLabelStyleProperty
BindableProperty
Identifies the BottomSheetContentHeaderLabelStyle property.
public static readonly BindableProperty BottomSheetContentHeaderLabelStyleProperty
BottomSheetContentStyleProperty
BindableProperty
Identifies the BottomSheetContentStyle property.
public static readonly BindableProperty BottomSheetContentStyleProperty
CancelPromptRequestCommandProperty
BindableProperty
Identifies the CancelPromptRequestCommand property.
public static readonly BindableProperty CancelPromptRequestCommandProperty
EmptyContentTemplateProperty
BindableProperty
Identifies the EmptyContentTemplate property.
public static readonly BindableProperty EmptyContentTemplateProperty
FloatingActionButtonStyleProperty
BindableProperty
Identifies the FloatingActionButtonStyle property.
public static readonly BindableProperty FloatingActionButtonStyleProperty
InputTextProperty
BindableProperty
Identifies the InputText property.
public static readonly BindableProperty InputTextProperty
IsEmptyContentVisibleProperty
BindableProperty
Identifies the IsEmptyContentVisible property.
public static readonly BindableProperty IsEmptyContentVisibleProperty
IsRecentPromptsVisibleProperty
BindableProperty
Identifies the IsRecentPromptsVisible property.
public static readonly BindableProperty IsRecentPromptsVisibleProperty
IsSuggestedPromptsVisibleProperty
BindableProperty
Identifies the IsSuggestedPromptsVisible property.
public static readonly BindableProperty IsSuggestedPromptsVisibleProperty
OpenOnFocusProperty
BindableProperty
Identifies the OpenOnFocus property.
public static readonly BindableProperty OpenOnFocusProperty
PromptInputStyleProperty
BindableProperty
Identifies the PromptInputStyle property.
public static readonly BindableProperty PromptInputStyleProperty
PromptRequestCommandProperty
BindableProperty
Identifies the PromptRequestCommand property.
public static readonly BindableProperty PromptRequestCommandProperty
RecentPromptsProperty
BindableProperty
Identifies the RecentPrompts property.
public static readonly BindableProperty RecentPromptsProperty
SubmitPromptOnSelectionProperty
BindableProperty
Identifies the SubmitPromptOnSelection property.
public static readonly BindableProperty SubmitPromptOnSelectionProperty
SuggestedPromptsProperty
BindableProperty
Identifies the SuggestedPrompts property.
public static readonly BindableProperty SuggestedPromptsProperty
SuggestionsViewStyleProperty
BindableProperty
Identifies the SuggestionsViewStyle property.
public static readonly BindableProperty SuggestionsViewStyleProperty
Properties
Gets or sets the style of the that represents the header label in the bottom sheet content.
public Style BottomSheetContentHeaderLabelStyle { get; set; }
Gets or sets the style of the BottomSheetContentView.
public Style BottomSheetContentStyle { get; set; }
Gets the command that is executed when a cancel prompt request is made.
public ICommand CancelPromptRequestCommand { get; }
EmptyContentTemplate
DataTemplate
Gets or sets the template used to display content when no suggestions are available.
public DataTemplate EmptyContentTemplate { get; set; }
Gets or sets the style of the DataGridAIFloatingActionButton.
public Style FloatingActionButtonStyle { get; set; }
Gets or sets a value indicating whether the empty content template should be visible when no suggestions are available.
public bool IsEmptyContentVisible { get; set; }
Gets or sets a value indicating whether the recent prompts section is visible.
public bool IsRecentPromptsVisible { get; set; }
Gets or sets a value indicating whether the suggested prompts section is visible.
public bool IsSuggestedPromptsVisible { get; set; }
Gets or sets a value indicating whether the prompt input should open the suggestions dropdown when focused.
public bool OpenOnFocus { get; set; }
PromptInputStyle
Style
Gets or sets the style of the DataGridAIPromptInput.
public Style PromptInputStyle { get; set; }
Gets the command that is executed when a prompt request is made.
public ICommand PromptRequestCommand { get; }
Gets or sets the collection of recent prompts.
public IEnumerable<string> RecentPrompts { get; set; }
Gets or sets a value indicating whether selecting a prompt should automatically submit the request. When true, selecting a prompt closes the popup and invokes the PromptRequest event on the parent DataGrid. When false, the selected prompt is placed in the input and the user must manually submit.
public bool SubmitPromptOnSelection { get; set; }
Gets or sets the collection of suggested prompts.
public IEnumerable<string> SuggestedPrompts { get; set; }
SuggestionsViewStyle
Style
Gets or sets the style of the DataGridAISuggestionsView.
public Style SuggestionsViewStyle { get; set; }