您好,登錄后才能下訂單哦!
本篇文章為大家展示了ASP.NET中怎么獲取所有顏色值,內(nèi)容簡(jiǎn)明扼要并且容易理解,絕對(duì)能使你眼前一亮,通過這篇文章的詳細(xì)介紹希望你能有所收獲。
(1)怎樣將電腦里有可用字體加入WINFORM中的ComboBox中:
一句話搞定:comboBox1.Items.AddRange (FontFamily.Families);
(2)取得所有可用顏色并填充到asp.net的下拉菜單中:
復(fù)制代碼 代碼如下:
PropertyInfo[] properties;
ArrayList colors;
Color color;
// SolidBrush brush;
properties = typeof (Color).GetProperties (BindingFlags.Public | BindingFlags.Static);
colors = new ArrayList ();
foreach (PropertyInfo prop in properties)
{
// get the value of this static property
color = (Color) prop.GetValue (null, null);
// skip colors that are not interesting
if (color == Color.Transparent) continue;
if (color == Color.Empty) continue;
try
{
ddlList.Items.Add(prop.Name);
}
catch
{
}
// create a solid brush of this color
//brush = new SolidBrush (color);
//colors.Add (brush);
}
(3)怎樣取得數(shù)據(jù)庫的連接字符串?
A. 新建一個(gè)文本文件,文件名使用*.udl(比如:myDB.udl),此時(shí)發(fā)現(xiàn)圖標(biāo)變成數(shù)據(jù)庫連接的圖標(biāo)了。
B. 雙擊此文件,彈出數(shù)據(jù)連接屬性的對(duì)話框,此時(shí)你可以進(jìn)行設(shè)置了。一般地,我們首先選擇“提供程序”的選項(xiàng)卡,進(jìn)行設(shè)置之后,再設(shè)置“連接”選項(xiàng)卡的相關(guān)屬性,其他的我就不說了。設(shè)置好之后,最后按“確定”??赡軙?huì)有相應(yīng)的提示,你自己看著辦吧。
C. 用記事本打開你剛才的這個(gè)文件。里面有類似這樣的字符串:
Provider=SQLOLEDB.1;Password=123456sa;Persist Security Info=True;User ID=sa;Initial Catalog=ZPWeb;Data Source=MyServerName
如果使用SQLSERVER數(shù)據(jù)庫,將Provider=SQLOLEDB.1;改為:Server=localhost;即可。
上述內(nèi)容就是ASP.NET中怎么獲取所有顏色值,你們學(xué)到知識(shí)或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識(shí)儲(chǔ)備,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。