18 lines
468 B
C#
18 lines
468 B
C#
using System.ComponentModel;
|
|
using System.Drawing;
|
|
|
|
namespace BizHawk.WinForms.Controls
|
|
{
|
|
/// <inheritdoc cref="Docs.LabelOrLinkLabel"/>
|
|
public class LocLabelEx : LabelExBase
|
|
{
|
|
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
|
|
public new bool AutoSize => base.AutoSize;
|
|
|
|
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
|
|
public new Size Size => base.Size;
|
|
|
|
public LocLabelEx() => base.AutoSize = true;
|
|
}
|
|
}
|