Vanara/Windows.Forms/Extensions/LabelExtension.cs

15 lines
347 B
C#

using System;
using System.Runtime.InteropServices;
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)
{
}
}
}