SafeDispatch/Safedispatch_4_0/maptab/UIClasses/LiveGridColumn.cs

29 lines
606 B
C#
Raw Normal View History

2024-02-22 16:43:59 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Telerik.WinControls.UI;
namespace Dispatcher.maptab.UIClasses
{
public class LiveGridColumn : GridViewDataColumn
{
public LiveGridColumn(string fieldName)
: base(fieldName)
{
}
public override Type GetCellType(GridViewRowInfo row)
{
if (row is GridViewDataRowInfo)
{
return typeof(LiveGridCellElement);
}
return base.GetCellType(row);
}
}
}