主頁 > 知識庫 > ASP.NET取得所有顏色值示例

ASP.NET取得所有顏色值示例

熱門標(biāo)簽:福州人工智能電銷機(jī)器人加盟 ai電銷機(jī)器人對貸款有幫助嗎 宿遷智能外呼系統(tǒng)排名 400電話辦理信任翰諾科技 廣州銷售外呼系統(tǒng)定制 地圖標(biāo)注多少錢一張 云狐人工智能電話機(jī)器人 電銷機(jī)器人 數(shù)據(jù) 怎樣給陜西地圖標(biāo)注顏色
(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. 新建一個文本文件,文件名使用*.udl(比如:myDB.udl),此時發(fā)現(xiàn)圖標(biāo)變成數(shù)據(jù)庫連接的圖標(biāo)了。
B. 雙擊此文件,彈出數(shù)據(jù)連接屬性的對話框,此時你可以進(jìn)行設(shè)置了。一般地,我們首先選擇“提供程序”的選項卡,進(jìn)行設(shè)置之后,再設(shè)置“連接”選項卡的相關(guān)屬性,其他的我就不說了。設(shè)置好之后,最后按“確定”??赡軙邢鄳?yīng)的提示,你自己看著辦吧。
C. 用記事本打開你剛才的這個文件。里面有類似這樣的字符串:
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;即可。

標(biāo)簽:大興安嶺 新疆 宜春 焦作 曲靖 綿陽 延安 黃南

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《ASP.NET取得所有顏色值示例》,本文關(guān)鍵詞  ASP.NET,取得,所,有顏色,值,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《ASP.NET取得所有顏色值示例》相關(guān)的同類信息!
  • 本頁收集關(guān)于ASP.NET取得所有顏色值示例的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章