2022-11-14 20:06:55 +01:00
|
|
|
|
using Robust.Client.AutoGenerated;
|
|
|
|
|
|
using Robust.Client.UserInterface.Controls;
|
|
|
|
|
|
using Robust.Client.UserInterface.XAML;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Content.Client.Administration.UI.BanList;
|
|
|
|
|
|
|
|
|
|
|
|
[GenerateTypedNameReferences]
|
|
|
|
|
|
public sealed partial class BanListIdsPopup : Popup
|
|
|
|
|
|
{
|
2022-11-21 20:04:24 +01:00
|
|
|
|
public BanListIdsPopup(string? id, string? ip, string? hwid, string? guid)
|
2022-11-14 20:06:55 +01:00
|
|
|
|
{
|
|
|
|
|
|
RobustXamlLoader.Load(this);
|
|
|
|
|
|
|
2022-11-21 20:04:24 +01:00
|
|
|
|
ID.Text = id;
|
2022-11-14 20:06:55 +01:00
|
|
|
|
IP.Text = ip;
|
|
|
|
|
|
HWId.Text = hwid;
|
|
|
|
|
|
GUID.Text = guid;
|
|
|
|
|
|
|
|
|
|
|
|
UserInterfaceManager.ModalRoot.AddChild(this);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|