Files
sbox-public/engine/Sandbox.Engine/Systems/UI/Panel/Event/PanelEventAttribute.cs
s&box team 71f266059a Open source release
This commit imports the C# engine code and game files, excluding C++ source code.

[Source-Commit: ceb3d758046e50faa6258bc3b658a30c97743268]
2025-11-24 09:05:18 +00:00

20 lines
470 B
C#

namespace Sandbox.UI;
/// <summary>
/// Add an event listener to a <see cref="Panel"/> event with the given name.<br/>
/// See <see cref="Panel.CreateEvent(string, object, float?)"/>.
/// </summary>
[AttributeUsage( AttributeTargets.Method )]
public class PanelEventAttribute : Attribute
{
/// <summary>
/// Name of the event to listen to.
/// </summary>
public string Name { get; set; }
public PanelEventAttribute( string name = null )
{
Name = name;
}
}