14 lines
281 B
C#
14 lines
281 B
C#
using System;
|
|
using System.Text;
|
|
using System.Drawing;
|
|
|
|
namespace DevComponents.DotNetBar
|
|
{
|
|
internal abstract class KeyTipsPainter
|
|
{
|
|
public abstract void PaintKeyTips(KeyTipsRendererEventArgs e);
|
|
|
|
public static Size KeyTipsPadding = new Size(6, 4);
|
|
}
|
|
}
|