13 lines
344 B
C#
13 lines
344 B
C#
|
using System.Windows.Forms;
|
|||
|
|
|||
|
namespace XKRS.UI.Model.Winform
|
|||
|
{
|
|||
|
public class GridCtrlHost : ToolStripControlHost
|
|||
|
{
|
|||
|
public GridCtrlHost(GridCtrl grid) : base(grid)
|
|||
|
{
|
|||
|
//Font = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.World, 134);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|