DXUT 改变控件颜色和文本

改变按钮颜色

CDXUTButton* pButtom = NULL;

g_SampleUI.AddButton( ROOMCOMMMEND-pos->second.ID, L"", 100,100, 100, 100, VK_F2, 0, &pButtom);

DXUTBlendColor g_BlendColor;//控件颜色

g_BlendColor.Init(D3DCOLOR_ARGB( 255, 30, 50, 250 ));

pButtom->GetElement( 0 )->TextureColor =g_BlendColor; //设置颜色




改变字体和内容

g_SampleUI.SetFont( 0, L"Arial", 15, FW_BOLD );//字体0

g_SampleUI.SetFont( 1, L"Arial", 25, FW_BOLD );//字体1

CDXUTStatic* pStatic = NULL;

g_SampleUI.AddStatic( DXUTSETTINGSDLG_STATIC, L"none",  100, 100, 100, 30, false, &pStatic );

pStatic->GetElement( 0 )->iFont = 1; //字体

pStatic->GetElement( 0 )->dwTextFormat = DT_BOTTOM | DT_RIGHT;//排列类型

wchar_t *buf = "change";//文本内容

pStatic->SetText(buf);//改变文本




你可能感兴趣的:(DXUT 改变控件颜色和文本)