예제 #1
0
파일: GridCtrl.cs 프로젝트: wshcdr/wxnet
        public override Size GetBestSize(Grid grid, GridCellAttr attr, DC dc, int row, int col)
        {
            Size size = new Size();

            wxGridCellDateTimeRenderer_GetBestSize(wxObject, Object.SafePtr(grid), Object.SafePtr(attr), Object.SafePtr(dc), row, col, out size);
            return(size);
        }
예제 #2
0
파일: GridCtrl.cs 프로젝트: wshcdr/wxnet
 public override void Draw(Grid grid, GridCellAttr attr, DC dc, Rectangle rect, int row, int col, bool isSelected)
 {
     wxGridCellDateTimeRenderer_Draw(wxObject, Object.SafePtr(grid), Object.SafePtr(attr), Object.SafePtr(dc), ref rect, row, col, isSelected);
 }