本文整理汇总了C++中CGridCellBase::SetFont方法的典型用法代码示例。如果您正苦于以下问题:C++ CGridCellBase::SetFont方法的具体用法?C++ CGridCellBase::SetFont怎么用?C++ CGridCellBase::SetFont使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CGridCellBase
的用法示例。
在下文中一共展示了CGridCellBase::SetFont方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: InsertInstrument
void CInstrumentGridCtrl::InsertInstrument(int rowIndex, const Instrument& instrument){
int columnIndex = 0;
GV_ITEM item;
item.mask = GVIF_TEXT;
item.row = rowIndex;
item.col = columnIndex;
item.strText = DataConverter::ConvertIntToString(rowIndex).c_str();
this->SetItem(&item);
columnIndex++;
item.col = columnIndex;
item.strText = instrument.GetInstrumentType().c_str();
this->SetItem(&item);
this->SetItemState(rowIndex, columnIndex, GVIS_READONLY);
columnIndex++;
item.col = columnIndex;
item.strText = instrument.GetInstrumentName().c_str();
this->SetItem(&item);
this->SetItemState(rowIndex, columnIndex, GVIS_READONLY);
columnIndex++;
item.col = columnIndex;
item.strText = instrument.GetInstrumentCode().c_str();
this->SetItem(&item);
this->SetItemState(rowIndex, columnIndex, GVIS_READONLY);
columnIndex++;
item.col = columnIndex;
item.strText = DataConverter::ConvertIntToString(instrument.GetContract().GetFeedingSourceID()).c_str();
this->SetItem(&item);
this->SetItemState(rowIndex, columnIndex, GVIS_READONLY);
columnIndex++;
item.col = columnIndex;
item.strText = DataConverter::ConvertIntToString(instrument.GetLimitOrderBook().GetFeedingSourceID()).c_str();
this->SetItem(&item);
this->SetItemState(rowIndex, columnIndex, GVIS_READONLY);
columnIndex++;
for(int i=0; i<this->columnCount; i++){
CGridCellBase* cellBase = this->GetCell(rowIndex, i);
LOGFONT* tempLogFont = cellBase->GetFont();
tempLogFont->lfHeight= this->fontSize;
cellBase->SetFont(tempLogFont);
}
}
示例2: InitHeader
void CInstrumentGridCtrl::InitHeader(){
const tchar* columnTitles[] = {_T("Type"), _T("Name"), _T("Code"), _T("Contract"), _T("LimitOrderBook")};
const COLORREF GREY = RGB(160, 160, 160);
int colCount = this->GetColumnCount();
for (int i = 0; i < colCount; i++){
GV_ITEM item;
item.mask = GVIF_TEXT;
item.row = 0;
item.col = i;
item.crBkClr = GREY;
item.strText = columnTitles[i];
BOOL temp = this->SetItem(&item);
CGridCellBase* cellBase = this->GetCell(0, i);
LOGFONT* tempLogFont = cellBase->GetFont();
tempLogFont->lfHeight= this->fontSize;;
cellBase->SetFont(tempLogFont);
}
}