mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-01 17:47:24 +02:00
* Debug window collection popup * Try fixing? * DevUI shows children and string collections * XAMLify the popup * Rename popup * Deduplicate code * Simplify popup creation * MouseFilter.Ignore is default so it can be removed
21 lines
444 B
C#
21 lines
444 B
C#
using Robust.Client.AutoGenerated;
|
|
using Robust.Client.UserInterface.Controls;
|
|
using Robust.Client.UserInterface.XAML;
|
|
|
|
namespace Robust.Client.UserInterface;
|
|
|
|
[GenerateTypedNameReferences]
|
|
internal sealed partial class DevWindowTabUIPopup : Popup
|
|
{
|
|
public string? Text
|
|
{
|
|
get => TextLabel.Text;
|
|
set => TextLabel.Text = value;
|
|
}
|
|
|
|
public DevWindowTabUIPopup()
|
|
{
|
|
RobustXamlLoader.Load(this);
|
|
}
|
|
}
|