本文整理汇总了C++中Panel::AddControl方法的典型用法代码示例。如果您正苦于以下问题:C++ Panel::AddControl方法的具体用法?C++ Panel::AddControl怎么用?C++ Panel::AddControl使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Panel
的用法示例。
在下文中一共展示了Panel::AddControl方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: InitScene
result UserForm::InitScene() {
result r = E_SUCCESS;
Panel * pImagePlaceholder = dynamic_cast<Panel *>(GetControl(IDC_PANEL_USER_AVATAR, true));
String avatarPath;
r = JsonParseUtils::GetString(*_pUserJson, L"photo_200", avatarPath);
if (r != E_SUCCESS) {
r = JsonParseUtils::GetString(*_pUserJson, L"photo_100", avatarPath);
}
int hasMobile;
JsonParseUtils::GetInteger(*_pUserJson, L"has_mobile", hasMobile);
WebImageView * pAvatar = new WebImageView();
pAvatar->Construct(Rectangle(0, 0, 300, 300), avatarPath);
pImagePlaceholder->AddControl(pAvatar);
Button * pWriteButton = dynamic_cast<Button *>(GetControl(IDC_BUTTON_USER_WRITETO, true));
pWriteButton->SetActionId(ACTION_ID_WRITE);
pWriteButton->AddActionEventListener(*this);
Button * pCallButton = dynamic_cast<Button *>(GetControl(IDC_BUTTON_USER_CALLTO, true));
pCallButton->SetShowState(hasMobile == 1);
pCallButton->AddActionEventListener(*this);
String name, nextName;
JsonParseUtils::GetString(*_pUserJson, L"first_name", name);
name += L" ";
JsonParseUtils::GetString(*_pUserJson, L"last_name", nextName);
name += nextName;
GetHeader()->SetTitleText(name);
GetFooter()->SetItemEnabled(0, false);
GetFooter()->AddActionEventListener(*this);
GetFooter()->SetShowState(false);
GetFooter()->Invalidate(true);
if (hasMobile == 1) {
String phone;
JsonParseUtils::GetString(*_pUserJson, L"mobile_phone", phone);
if (phone.GetLength() == 0) {
pCallButton->SetShowState(false);
} else {
pCallButton->SetText(L"Call " + phone);
pCallButton->SetActionId(ACTION_ID_CALL);
}
}
pCallButton->Invalidate(true);
CheckIsFriends();
return r;
}