CComboBox::SetCueBanner
設定根據下拉式方塊控制項中所顯示的提示文字。
BOOL SetCueBanner(
LPCTSTR lpszText
);
參數
參數 |
描述 |
---|---|
[in] lpszText |
out 包含提示文字的 NULL 結尾緩衝區的指標。 |
傳回值
如果方法成功,則為 true,否則為 false。
備註
表示文字是在下拉式方塊控制項中輸入區域所顯示的提示。 提示文字顯示,直到使用者提供輸入。
這個方法會將 CB_SETCUEBANNER 資訊,在 Windows SDK說明。
需求
標題: afxwin.h
這個方法會 Windows Vista (含) 以後版本支援。
這個方法的其他需要。 組建的 Windows Vista 通用控制項的需求說明。
範例
下列程式碼範例會定義變數, m_combobox,用來以程式設計方式存取下拉式方塊控制項。 這個變數用於下一個範例。
// Variable to access the combo box control
CComboBox m_combobox;
下列程式碼範例會設定下拉式方塊控制項的隱含橫幅。
// Add extra initialization here.
// Add 20 items to the combo box. The Resource Editor
// has already been used to set the style of the combo
// box to CBS_SORT.
CString str;
for (int i = 1; i <= 20; i++)
{
str.Format(_T("Item %2d"), i);
m_combobox.AddString(str);
}
// Set the minimum visible item
m_combobox.SetMinVisibleItems( 10 );
// Set the cue banner
m_combobox.SetCueBanner(_T("Select an item..."));
// End of extra initialization.