LogProbeUiEntry.xaml.cs 530 B

1234567891011121314151617
  1. using Robust.Client.AutoGenerated;
  2. using Robust.Client.UserInterface.Controls;
  3. using Robust.Client.UserInterface.XAML;
  4. namespace Content.Client.CartridgeLoader.Cartridges;
  5. [GenerateTypedNameReferences]
  6. public sealed partial class LogProbeUiEntry : BoxContainer
  7. {
  8. public LogProbeUiEntry(int numberLabel, string timeText, string accessorText)
  9. {
  10. RobustXamlLoader.Load(this);
  11. NumberLabel.Text = numberLabel.ToString();
  12. TimeLabel.Text = timeText;
  13. AccessorLabel.Text = accessorText;
  14. }
  15. }