mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-02-12 22:21:36 +00:00
23 lines
641 B
Plaintext
23 lines
641 B
Plaintext
@inherits MSGComponentBase
|
|
|
|
<MudDialog>
|
|
<DialogContent>
|
|
<MudTextField
|
|
T="string"
|
|
Text="@this.ResultText"
|
|
Variant="Variant.Outlined"
|
|
Lines="10"
|
|
AutoGrow="@true"
|
|
MaxLines="25"
|
|
ReadOnly="true"
|
|
Label="@this.ResultLabelText"
|
|
AdornmentIcon="@Icons.Material.Filled.DataObject"
|
|
Adornment="Adornment.Start"/>
|
|
</DialogContent>
|
|
<DialogActions>
|
|
<MudButton OnClick="@this.Close" Variant="Variant.Filled" Color="Color.Primary">
|
|
@T("Close")
|
|
</MudButton>
|
|
</DialogActions>
|
|
</MudDialog>
|