Files
RobustToolbox/Robust.Client/UserInterface/DevWindow/DevWindowTabUIPopup.xaml.cs
T
ShadowCommanderandGitHub e686e1b4cc Add collection parsing to the dev window for UI (#4959)
* 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
2024-03-16 23:35:04 +01:00

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);
}
}