mirror of
https://github.com/lantean-code/qbtmud.git
synced 2025-10-23 04:52:22 +00:00
27 lines
1.1 KiB
Plaintext
27 lines
1.1 KiB
Plaintext
@inherits SubmittableDialog
|
|
|
|
<MudDialog>
|
|
<DialogContent>
|
|
<table width="100%">
|
|
<tbody>
|
|
<tr>
|
|
<td style="width: 70%"><MudTextField T="string" Label="IP" Value="@IP" ValueChanged="SetIP" Required Variant="Variant.Outlined" /></td>
|
|
<td style="width: 30%"><MudNumericField T="int?" Label="Port" Value="@Port" ValueChanged="SetPort" Required Variant="Variant.Outlined" /></td>
|
|
<td><MudIconButton Icon="@Icons.Material.Filled.Add" OnClick="AddTracker" /></td>
|
|
</tr>
|
|
@foreach (var peer in Peers)
|
|
{
|
|
var peerRef = peer;
|
|
<tr>
|
|
<td>@peer</td>
|
|
<td><MudIconButton Icon="@Icons.Material.Filled.Delete" OnClick="@(e => DeletePeer(peerRef))" /></td>
|
|
</tr>
|
|
}
|
|
</tbody>
|
|
</table>
|
|
</DialogContent>
|
|
<DialogActions>
|
|
<MudButton OnClick="Cancel">Cancel</MudButton>
|
|
<MudButton Color="Color.Primary" OnClick="Submit">Save</MudButton>
|
|
</DialogActions>
|
|
</MudDialog> |