Справочник функций

Ваш аккаунт

Войти через: 
Забыли пароль?
Регистрация
Информацию о новых материалах можно получать и без регистрации:

Почтовая рассылка

Подписчиков: -1
Последний выпуск: 19.06.2015

Как в CPropertyPage задать заголовок закладки?

7.3K
20 февраля 2006 года
LamerMFC
48 / / 17.09.2005
Всем привет!

У меня такой вопрос:

Есть производный класс от CPropertySheet в нем есть закладка (производная от класса CPropertyPage) как в этой закладке динамически менять заголовок?

В классе CMyPropSheet я объявляю закладку как m_MyPage, далее в конструкторе CMyPropSheet вызываю ф-цию AddPage(&m_MyPage)

Далее в InitDialog (в классе закладки) вызываю SetWindowText(“MyText”); но ничего не меняется даже после вызова ф-ции UpdateWindow();

Подскажите пожалуйста как мне изменить название этой закладки, всем заранее благодарен.
7.3K
21 февраля 2006 года
LamerMFC
48 / / 17.09.2005
Неужели никто не сталкивался (этот MFC уже достал), прочему просто нельзя поменять название закладки? после того как я вызываю SetWindowText("Hello"); я вызываю ф-цию GetWindowText(); и она возвращает "Hello" но заголовок закладки не изменяется, пробовал и UpdateWindow(); все равно ничего, может кто что посоветует?
7.3K
21 февраля 2006 года
LamerMFC
48 / / 17.09.2005
Ну какой же я блин ЛАМЕР, ведь в MSDN все есть!!!
(кому интересно)

SUMMARY
The text that appears in the tabs of a CPropertySheet are usually taken from the caption of each CPropertyPage in the dialog template resource. There are some other methods that can be used to select the caption for each page.



MORE INFORMATION

Three Methods You Can Use to Select the Caption for Each Page
The CPropertyPage constructor has a UINT nIDCaption parameter that can be used to specify a string resource ID. The default is 0 (indicates to use the dialog template caption) but can be any valid string resource ID.


The CPropertyPage has a member called m_psp that is a PROPSHEETPAGE structure. You can set this structure's dwFlags element to PSP_USETITLE and pszTitle to a string that will be used as the title. This method can only be used before the call to Create() or DoModal().


If you want to change the text in the tabs after the sheet has been created, you can call PropertySheet::GetTabControl() to get a CTabCtrl pointer. You can then fill in a TC_ITEM structure, and using the CTabCtrl pointer, call CTabCtrl::SetItem() to set the text for each tab.


Sample Code

/* Compile options needed: Default
*/

// CMySheet is derived from CPropertySheet.
// CPage1 is derived from CPropertyPage.

// METHOD ONE ======================================================
// passing the string ID to the constructor. ClassWizard does not
// generate a constructor that takes the caption ID as a parameter,
// so it may be necessary to modify the CPage1's constructor
class CPage1 : public CPropertyPage
{
// ...

public:
CPage1(UINT nIDCaption = 0);

// ...
};

CPage1::CPage1(UINT nIDCaption) :
CPropertyPage(CMyPage::IDD, nIDCaption)
{
//{{AFX_DATA_INIT(CMyPage)
// NOTE: the ClassWizard will add member initialization here
//}}AFX_DATA_INIT
}

// Use the class's constructor to pass the string ID
CMyView::ShowPropertySheet ()
{
m_pSheet = new CMySheet ("Sheet Title");
ASSERT (m_pSheet);
m_pPage1 = new CPage1(IDS_MYCAPTION); // id of string resource
ASSERT (m_pPage1);

m_pSheet->DoModal ();
}

// METHOD TWO ======================================================
// this shows how to change the title of a CPropertyPage before the
// call to DoModal()
CMyView::ShowPropertySheet ()
{
m_pSheet = new CMySheet ("Sheet Title");
ASSERT (m_pSheet);
m_pPage1 = new CPage1;
ASSERT (m_pPage1);

m_pPage1->m_psp.dwFlags |= PSP_USETITLE;
m_pPage1->m_psp.pszTitle = _T("My Caption");

m_pSheet->DoModal ();
}

// METHOD THREE ======================================================
// This function allows you to pass the index number of a
// CPropertyPage and a string to set the title to.
BOOL CMySheet::SetPageTitle (int nPage, LPTSTR pszText)
{
CTabCtrl* pTab = GetTabControl();
ASSERT (pTab);

TC_ITEM ti;
ti.mask = TCIF_TEXT;
ti.pszText = pszText;
VERIFY (pTab->SetItem (nPage, &ti));

return TRUE;
}
Реклама на сайте | Обмен ссылками | Ссылки | Экспорт (RSS) | Контакты
Добавить статью | Добавить исходник | Добавить хостинг-провайдера | Добавить сайт в каталог