のカスタム コントロールをホストしたいと考えていますdatagridviewcell
。
私が持っている唯一の良いリファレンスはhttp://msdn.microsoft.com/en-us/library/7tas5c80.aspxでした
ただし、セルに自分のユーザーコントロールを代わりに表示したい
public class CustomCell : DataGridViewTextBoxCell
{
protected override void Paint(System.Drawing.Graphics graphics,
System.Drawing.Rectangle clipBounds, System.Drawing.Rectangle cellBounds,
int rowIndex, DataGridViewElementStates cellState, object value, object
formattedValue, string errorText, DataGridViewCellStyle cellStyle,
DataGridViewAdvancedBorderStyle advancedBorderStyle, DataGridViewPaintParts paintParts)
{
base.Paint(graphics, clipBounds, cellBounds, rowIndex, cellState, value,
formattedValue, errorText, cellStyle, advancedBorderStyle, paintParts);
}
}
誰でもそれを行う方法を教えてもらえますか?