checkbox什么意思(checkbox中文翻譯,checkbox是什么意思,checkbox發(fā)音、用法及例句)
- 內容導航:
- 1、checkbox
- 2、asp中checkbox怎么用
1、checkbox
checkbox發(fā)音
英: 美:
checkbox中文意思翻譯
常見(jiàn)釋義:
n.檢查框,檢驗盒;復選框
checkbox雙語(yǔ)使用場(chǎng)景
1、On the next screen, change the Data Value to Visible Text and select the "Include retry parameters" checkbox just as in step four above.───在下一個(gè)畫(huà)面中,把數據值改為可見(jiàn)文本并選中“Includeretryparameters”復選框,和前面的步驟四相同。
2、Data can be represented as a standard text, a combo box, or a checkbox.───數據可以表示為標準文本、組合框或復選框。
3、When creating the business account, select the "This account is to be used for base contracts" checkbox.───當創(chuàng )建業(yè)務(wù)帳時(shí),請選擇“Thisaccountistobeusedforbasecontracts(此帳戶(hù)將用于基礎契約)”復選框。
4、Similarly, when some other part of the application updates the name property of task t, the checkbox automatically updates its label.───類(lèi)似地,當應用程序的某些其他部分更新任務(wù)t的name屬性時(shí),復選框也會(huì )自動(dòng)更新它的標簽。
5、Select the I agree checkbox.───選擇I agree復選框。
6、Each KPI component can be added to the PivotTable Values area by checking the checkbox just like any other field.───每個(gè)KPI成員可以通過(guò)勾選復選框添加到數據透視表數值區域,正如其它字段一樣。
7、Select the checkbox (Figure 10).───選擇該復選框(圖10)。
8、Click on this blank paragraph and insert a page break, specifying the First Page style, but do not select the Change page number checkbox.───點(diǎn)空白段插入分頁(yè),指定首頁(yè)樣式,但不要勾選修改頁(yè)碼復選框。
9、Clearing the Show only selected counters checkbox allows you to see all available counters (Figure 6).───去掉Showonlyselectedcounters復選框,可以令您看到所有可用的計數器(圖6)。
checkbox相似詞語(yǔ)短語(yǔ)
1、check reality───核實(shí)現實(shí)
2、castling through knight check───通過(guò)騎士檢查
3、reality check───現實(shí)檢查;現狀核實(shí);n.真情實(shí)況;現實(shí)的提醒
4、checkerboard size───棋盤(pán)大小
5、checkmate background checks───核對背景調查
6、liveliness check───活性檢查
7、checking fixture───檢驗夾具;n.檢具
8、check at───對…發(fā)火
9、cachectic definition───惡病質(zhì)定義
10、checkered history───方格歷史
2、asp中checkbox怎么用
Text="籃球" />
后臺 代碼為
using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
private void show()
{
string result = "你選擇的愛(ài)好有:";
if (CheckBox1.Checked == true) result += "游泳" + " ";
if (CheckBox2.Checked == true) result += "籃球" + " ";
if (CheckBox3.Checked == true) result += "旅游" + " ";
if (CheckBox4.Checked == true) result += "足球" + " ";
if (CheckBox5.Checked == true) result += "閱讀" + " ";
if (CheckBox6.Checked == true) result += "**" + " ";
Response.Write(result);
}
protected void CheckBox2_CheckedChanged(object sender, EventArgs e)
{
show();
}
protected void CheckBox3_CheckedChanged(object sender, EventArgs e)
{
show();
}
protected void CheckBox4_CheckedChanged(object sender, EventArgs e)
{
show();
}
protected void CheckBox5_CheckedChanged(object sender, EventArgs e)
{
show();
}
protected void CheckBox6_CheckedChanged(object sender, EventArgs e)
{
show();
}
protected void CheckBox1_CheckedChanged1(object sender, EventArgs e)
{
show();
}
}
版權聲明: 本站僅提供信息存儲空間服務(wù),旨在傳遞更多信息,不擁有所有權,不承擔相關(guān)法律責任,不代表本網(wǎng)贊同其觀(guān)點(diǎn)和對其真實(shí)性負責。如因作品內容、版權和其它問(wèn)題需要同本網(wǎng)聯(lián)系的,請發(fā)送郵件至 舉報,一經(jīng)查實(shí),本站將立刻刪除。