⑴ MFC的一個對話框中怎樣設置背景為一個圖片
你建了一個基本對話框,然後已經有了一確定按鈕,接下來雙擊這個確定按鈕添加一個消息響應函數,單你點擊這個按鈕時就會調用這個函數
void
cxxxxdlg::onok()
{
//
todo:
add
extra
validation
here
}
第二步:你選擇insert菜單
里的resour
選項-->
dialog
-->
new
就新建一個對話框,然後雙擊該對話框會提示你為這個對話框創建一個類,你輸入類名就可以了,這樣一個新的對話框類(例如:cmynewdlg)就新建完成。
第三步:在你剛才添加確定按鈕消息函數的.cpp文件中包含剛才新建類的頭文件(例如#include
"mynewdlg.h")
,在onok函數中添加如下代碼
void
cxxxxdlg::onok()
{
//
todo:
add
extra
validation
here
cmynewdlg
dlg;
//
對話框類對象
dlg.domodal();
//
彈出新建對話框
}
點擊確定按鈕就馬上會彈出你剛才新建的對話框,整個過程就是這樣了。
希望能幫到你。
⑵ PPT如何設置統一的背景圖片
材料/工具:ppt2010
1、新建一個powerpoint文檔,在空白PPT模板上單擊滑鼠右鍵,點擊「設置背景格式」
⑶ 可以自己DIY提示框的APP軟體 如圖 像這種可以自己編輯的提示框文字 自己選圖片背景做壁紙的APP軟體
這個圖片是p出來 下個制圖軟體就可以
⑷ 我用RAR做了個自解壓軟體,現在想引用壓縮包內的圖片,作為提示窗口的背景圖片。
不要用本地路徑,最好是把照片傳到網上,然後用網路上的路徑。
⑸ javascript 模擬 alert 並能在彈出框中顯示背景圖片,後台代碼繼續運行
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="zh-CN" lang="zh-CN">
<head>
<meta name="verify-v1" content="=" />
<title>
政策文件_中國電力工程造價信息網</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<meta http-equiv="Content-Language" content="gb2312" />
<meta name="KeyWords" content="電力工程造價,價格信息,裝材,設備,電力工程" />
<meta name="description" content="電力工程造價信息" />
<style type="text/css">
*{
margin:0;padding:0;
}
</style>
</head>
<body>
<div class="cecmbody" id="cecmpolicy">
<div class="leftClass">
<p>測試</p>
<input type="button" value="點擊這里" onclick="sAlert('測試效果');" />
</div>
<div class="rightClass">
</div>
</div>
<script type="text/javascript" language="javascript">
function sAlert(str){
var msgw,msgh,bordercolor;
msgw=400;//提示窗口的寬度
msgh=100;//提示窗口的高度
titleheight=25 //提示窗口標題高度
bordercolor="#336699";//提示窗口的邊框顏色
titlecolor="#99CCFF";//提示窗口的標題顏色
var sWidth,sHeight;
sWidth=document.body.offsetWidth;
sHeight=screen.height;
var bgObj=document.createElement("div");
bgObj.setAttribute('id','bgDiv');
bgObj.style.position="absolute";
bgObj.style.top="0";
bgObj.style.background="#777";
bgObj.style.filter="progid:DXImageTransform.Microsoft.Alpha(style=3,opacity=25,finishOpacity=75";
bgObj.style.opacity="0.6";
bgObj.style.left="0";
bgObj.style.width=sWidth + "px";
bgObj.style.height=sHeight + "px";
bgObj.style.zIndex = "10000";
document.body.appendChild(bgObj);
var msgObj=document.createElement("div")
msgObj.setAttribute("id","msgDiv");
msgObj.setAttribute("align","center");
msgObj.style.background="white";
msgObj.style.border="1px solid " + bordercolor;
msgObj.style.position = "absolute";
msgObj.style.left = "50%";
msgObj.style.top = "50%";
msgObj.style.font="12px/1.6em Verdana, Geneva, Arial, Helvetica, sans-serif";
msgObj.style.marginLeft = "-225px" ;
msgObj.style.marginTop = -75+document.documentElement.scrollTop+"px";
msgObj.style.width = msgw + "px";
msgObj.style.height =msgh + "px";
msgObj.style.textAlign = "center";
msgObj.style.lineHeight ="25px";
msgObj.style.zIndex = "10001";
var title=document.createElement("h4");
title.setAttribute("id","msgTitle");
title.setAttribute("align","right");
title.style.margin="0";
title.style.padding="3px";
title.style.background=bordercolor;
title.style.filter="progid:DXImageTransform.Microsoft.Alpha(startX=20, startY=20, finishX=100, finishY=100,style=1,opacity=75,finishOpacity=100);";
title.style.opacity="0.75";
title.style.border="1px solid " + bordercolor;
title.style.height="18px";
title.style.font="12px Verdana, Geneva, Arial, Helvetica, sans-serif";
title.style.color="white";
title.style.cursor="pointer";
title.innerHTML="關閉";
title.onclick=function(){
document.body.removeChild(bgObj);
document.getElementById("msgDiv").removeChild(title);
document.body.removeChild(msgObj);
}
document.body.appendChild(msgObj);
document.getElementById("msgDiv").appendChild(title);
var txt=document.createElement("p");
txt.style.margin="1em 0"
txt.setAttribute("id","msgTxt");
txt.innerHTML=str;
document.getElementById("msgDiv").appendChild(txt);
}
</script>
</body>
</html>
不知道 你要的是不是這種類似的效果!
⑹ 怎麼給MFC的對話框加背景圖片
1、新建MFC應用程序。
⑺ 在微信公眾賬號里怎樣插入背景圖片
1、點擊【正文】——【背景內容】,選取一個素材
⑻ QQ好友提示信息為什麼有的有背景 有的沒有
有的是在qq的主頁上設置了背景,顯示的就是背景圖片
⑼ web頁面中如圖所示(紅圈部分)的提示框是怎麼做出來的,是jquery,js+css畫出來的嗎,還是圖片做的DIV
每個輸入項目,input框,都對應一個span標記。span標記內的內容,就是你看到的紅圈內德錯誤提示信息。
input輸入框,和默認隱藏的span標記都處於同一個父元素P標記內。
P標記的position是relative的。
而span標記的position是absolute的。
設置為position:abosolute的span標記,將根據最近的一個設置為relative定位的父元素進行定位。
因此span標記就可以通過設置left以及top屬性,進行定位。
因為已知input框的大小,長度,等,就可以精確設定span標記的定位點,
看起來就跟吸附在input框右側的效果。
還有,你要問提示信息欄左側突出的那個小尖尖是怎麼出來的話,其實那就是背景圖片而已。