Vanara/Windows.Forms/Extensions/LabelExtension.cs

12 lines
286 B
C#

using System.Windows.Forms;
namespace Vanara.Extensions;
/// <summary>Extension methods for <see cref="Label"/>.</summary>
public static partial class LabelExtension
{
private static void ResizeForText(this Label cb, Orientation fixedOrientation = Orientation.Horizontal)
{
}
}