using System;
using System.Collections.Generic;
using System.Text;
using System.Windows.Forms;
namespace IReaper.FileData{
public class DataGridViewDownloadSpeedColumn : DataGridViewTextBoxColumn
{
public DataGridViewDownloadSpeedColumn()
{
this.ValueType = typeof(double);
this.CellTemplate = new DataGridViewDownloadSpeedCell();
}
}
}
|