Percent Bar——百分比工具条控件

Percent Bar——百分比工具条控件(Percent Bar)以百分比形式显示每个项目内容所占的百分比比重。在设计时,可以用属性编辑器来添加和移除项目以及更改属性值。在运行时间,使用AddItem,RemoveItem, ClearListItemCount用于添加或移除项目;使用ItemTitle, ItemColor ItemValue来更改属性值。LegendShowValue LegendShowPercent属性用于隐藏某个项目内容的图标符号和百分比数值

第一步:建立MFC对话框

第二步:插入ActiveX控件--- Percent Bar控件

Percent Bar——百分比工具条控件_第1张图片

 

第三步:单击控件-鼠标右键-添加成员变量

 

可以通过修改属性获得不同的效果

主要函数介绍:(顾名思义,不再文字赘述)

voidSetItemTitle(long Index, LPCTSTR Title)

voidSetItemColor(long Index, unsigned long Color)

voidSetItemValue(long Index, double Value)

voidput_LegendShowPercent(BOOL newValue)

voidput_LegendValuePrecision(long newValue)

voidput_LegendShowValue(BOOL newValue)

voidAddItem(LPCTSTR Title, unsigned long Color, double Value)

voidRemoveItem(long Index)

voidClearList()

你可能感兴趣的:(Iocomp)