12 lines
217 B
C#
12 lines
217 B
C#
using System;
|
|
using CPF.Drawing;
|
|
using CPF.ReoGrid.Views;
|
|
|
|
namespace CPF.ReoGrid.Main
|
|
{
|
|
internal interface IShowContextMenuAdapter
|
|
{
|
|
void ShowContextMenuStrip(ViewTypes viewType, Point containerLocation);
|
|
}
|
|
}
|