1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Drawing;
- using FastReport.Design;
- using FastReport.Utils;
- namespace FastReport.Table
- {
- internal class TableMenuBase : ContextMenuBase
- {
- public TableMenuBase(Designer designer)
- : base(designer)
- {
- }
- }
- }
|