在 MFC(Microsoft Foundation Classes)中,CPropertySheet 类的 GetPageIndex 方法是用于获取指定属性页的索引的公共方法。

以下是 GetPageIndex 方法的典型原型:
int GetPageIndex(CPropertyPage* pPage) const;

调用此方法将返回指定属性页 pPage 在 CPropertySheet 对象中的索引。如果属性页不在 CPropertySheet 中,方法将返回 -1。

例如,如果你有一个 CPropertySheet 对象的实例名为 myPropertySheet,以及一个属性页的指针 pPage,你可以这样使用 GetPageIndex 方法:
CPropertyPage* pPage = /* 获取属性页的指针 */;
int pageIndex = myPropertySheet.GetPageIndex(pPage);

现在,pageIndex 将包含指定属性页在 myPropertySheet 对象中的索引。

这个方法通常在需要知道特定属性页索引的情况下使用,以便在 CPropertySheet 中定位和操作特定的属性页。


转载请注明出处:http://www.zyzy.cn/article/detail/21854/MFC/CPropertySheet