专家
公告
财富商城
电子网
旗下网站
首页
问题库
专栏
标签库
话题
专家
NEW
门户
发布
提问题
发文章
有关图像显示问题
2019-03-24 15:32
发布
×
打开微信“扫一扫”,打开网页后点击屏幕右上角分享按钮
站内问答
/
TI MCU
10705
5
1522
请教下各位大大:怎样能实现利用一张图片做一个界面背景,在这个背景上绘制Checkbox、Container等? 此帖出自
小平头技术问答
友情提示:
此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
5条回答
永远的不知
2019-03-24 18:36
< :TI_MSP430_内容页_SA7 --> 可以是使用Canvas的功能,注意增加CANVAS_STYLE_IMG属性,将背景图像放到g_pucImage数组里,下面的代码我是在Stellarisware的hello_widget例程里修改的,
g_pucImage[]数组是用pnmtoc转换成的图片数据,我试过了可以实现您说的功能,您可以试试。
//*****************************************************************************
//
// The canvas widget acting as the background to the display.
//
//*****************************************************************************
Canvas(g_sBackground, WIDGET_ROOT, 0, &g_sHeading,
&g_sLcd240x320x16_8bit, 0, 23, 320, (240 - 23),
CANVAS_STYLE_FILL | CANVAS_STYLE_IMG, ClrBlack, 0, 0, 0, 0, g_pucImage, 0);
//*****************************************************************************
//
// The button used to hide or display the "Hello World" message.
//
//*****************************************************************************
RectangularButton(g_sPushBtn, &g_sHeading, 0, 0,
&g_sLcd240x320x16_8bit, 60, 60, 200, 40,
(PB_STYLE_OUTLINE | PB_STYLE_TEXT_OPAQUE | PB_STYLE_TEXT |
PB_STYLE_FILL | PB_STYLE_RELEASE_NOTIFY),
ClrDarkBlue, ClrBlue, ClrWhite, ClrWhite,
&g_sFontCmss22b, "Show Welcome", 0, 0, 0, 0, OnButtonPress);
加载中...
查看其它5个回答
一周热门
更多
>
相关问题
相关文章
×
关闭
采纳回答
向帮助了您的知道网友说句感谢的话吧!
非常感谢!
确 认
×
关闭
编辑标签
最多设置5个标签!
保存
关闭
×
关闭
举报内容
检举类型
检举内容
检举用户
检举原因
广告推广
恶意灌水
回答内容与提问无关
抄袭答案
其他
检举说明(必填)
提交
关闭
×
打开微信“扫一扫”,打开网页后点击屏幕右上角分享按钮
×
付费偷看金额在0.1-10元之间
确定
×
关闭
您已邀请
0
人回答
查看邀请
擅长该话题的人
回答过该话题的人
我关注的人
g_pucImage[]数组是用pnmtoc转换成的图片数据,我试过了可以实现您说的功能,您可以试试。
//*****************************************************************************
//
// The canvas widget acting as the background to the display.
//
//*****************************************************************************
Canvas(g_sBackground, WIDGET_ROOT, 0, &g_sHeading,
&g_sLcd240x320x16_8bit, 0, 23, 320, (240 - 23),
CANVAS_STYLE_FILL | CANVAS_STYLE_IMG, ClrBlack, 0, 0, 0, 0, g_pucImage, 0);
//*****************************************************************************
//
// The button used to hide or display the "Hello World" message.
//
//*****************************************************************************
RectangularButton(g_sPushBtn, &g_sHeading, 0, 0,
&g_sLcd240x320x16_8bit, 60, 60, 200, 40,
(PB_STYLE_OUTLINE | PB_STYLE_TEXT_OPAQUE | PB_STYLE_TEXT |
PB_STYLE_FILL | PB_STYLE_RELEASE_NOTIFY),
ClrDarkBlue, ClrBlue, ClrWhite, ClrWhite,
&g_sFontCmss22b, "Show Welcome", 0, 0, 0, 0, OnButtonPress);
一周热门 更多>