2017-03-01 20:52:15 -05:00
|
|
|
|
using System;
|
|
|
|
|
using System.Drawing;
|
|
|
|
|
|
|
|
|
|
namespace Be.Windows.Forms
|
|
|
|
|
{
|
|
|
|
|
public interface IByteColorProvider
|
|
|
|
|
{
|
|
|
|
|
void Prepare(long firstByteIndex, long lastByteIndex);
|
2019-01-03 14:27:10 -05:00
|
|
|
|
ByteColors GetByteColor(long firstByteIndex, long byteIndex);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class ByteColors
|
|
|
|
|
{
|
|
|
|
|
public Color ForeColor { get; set; }
|
|
|
|
|
public Color BackColor { get; set; }
|
|
|
|
|
public Color BorderColor { get; set; }
|
2017-03-01 20:52:15 -05:00
|
|
|
|
}
|
|
|
|
|
}
|