mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-02 01:57:07 +02:00
21 lines
427 B
C#
21 lines
427 B
C#
using Robust.Client.AutoGenerated;
|
|
using Robust.Client.UserInterface.XAML;
|
|
|
|
namespace Robust.Client.UserInterface.CustomControls;
|
|
|
|
[GenerateTypedNameReferences]
|
|
public sealed partial class TileSpawnWindow : DefaultWindow
|
|
{
|
|
public TileSpawnWindow()
|
|
{
|
|
RobustXamlLoader.Load(this);
|
|
}
|
|
|
|
protected override void Opened()
|
|
{
|
|
base.Opened();
|
|
|
|
SearchBar.GrabKeyboardFocus();
|
|
}
|
|
}
|