CPF/CPF.ReoGrid/Main/IShowContextMenuAdapter.cs

12 lines
217 B
C#
Raw Permalink Normal View History

2024-06-24 10:15:59 +08:00
using System;
using CPF.Drawing;
using CPF.ReoGrid.Views;
namespace CPF.ReoGrid.Main
{
internal interface IShowContextMenuAdapter
{
void ShowContextMenuStrip(ViewTypes viewType, Point containerLocation);
}
}