19 lines
386 B
C#
19 lines
386 B
C#
|
using System;
|
|||
|
using System.Drawing;
|
|||
|
|
|||
|
namespace Be.Windows.Forms
|
|||
|
{
|
|||
|
public interface IByteColorProvider
|
|||
|
{
|
|||
|
void Prepare(long firstByteIndex, long lastByteIndex);
|
|||
|
ByteColors GetByteColor(long firstByteIndex, long byteIndex);
|
|||
|
}
|
|||
|
|
|||
|
public class ByteColors
|
|||
|
{
|
|||
|
public Color ForeColor { get; set; }
|
|||
|
public Color BackColor { get; set; }
|
|||
|
public Color BorderColor { get; set; }
|
|||
|
}
|
|||
|
}
|