真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

關(guān)于vb.netcolor的信息

VB.NET如何顯示多種顏色的一段文本?

Label控件是沒有辦法實現(xiàn)多種顏色的文字的,只能用RichTextBox來實現(xiàn),而且你的自定義格式字符串也沒有結(jié)尾的,這樣很不好,至少也要red紅色字/redyellow黃色字/yellow,而且實現(xiàn)也很麻煩的,下面的代碼我沒有檢測正確性,有錯誤的自己改一改吧

成都創(chuàng)新互聯(lián)公司2013年成立,是專業(yè)互聯(lián)網(wǎng)技術(shù)服務(wù)公司,擁有項目成都網(wǎng)站建設(shè)、成都做網(wǎng)站網(wǎng)站策劃,項目實施與項目整合能力。我們以讓每一個夢想脫穎而出為使命,1280元畢節(jié)做網(wǎng)站,已為上家服務(wù),為畢節(jié)各地企業(yè)和個人服務(wù),聯(lián)系電話:18980820575

Dim colortag() as string

dim colors() as color

const txt as string="red紅色字/redyellow黃色字/yellow"

private sub Form_Load(object sender,eventargs e)handles mybase.load

colortag(0)="red":Colortag(1)="yellow"

colors(0)=color.red:colors(1)=color.yellow

richtextbox1.text=txt

for i as integer=0 to colortag.lenght-1

dim tag as string="" colortag(i) ""

dim endtag as string="/" colortag(i) ""

dim find as integer=1

do

find=instr(find,txt,tag)+tag.lenght

if(find0)then

dim find1 as integer=instr(find,txt,endtag)

richtextbox1.SelectionStart=find

richtextbox1.selectionlenght=find1-find

richtextbox1.selectioncolor=colors(i)

find=find1

else

exit do

end if

loop

next

end sub

在vb.net中,如何獲取Graphics中某一指定點(像素)的顏色值?(VB語言)

要使用GetPixel函數(shù)來取得像素的顏色值,代碼如下:

1

2

3

4

5

private void button1_Click(object sender, EventArgs e)

{

Color color = new Bitmap(pictureBox1.Image).GetPixel(10, 10);

MessageBox.Show(color.ToString());

vb.net 如何讀取ini文件定義的ForeColor顏色值

你好,我不知道你是用什么方法保存的,不過.net里的color有一個方法是Color.FromArgb 你可以這么做,dim

c

as

color=richtextbox1.ForeColor dim

colorstring

as

string=c.ToArgb().ToString

colorstring就是顏色的值(字符串)再把colorstring保存到ini文件加載顏色的時候,從ini里讀取colorstring 具體是:dim

RtextColor

as

color=Color.FromArgb(cint(colorstring))richtextbox1.ForeColor

=RtextColor

c#/vb.net如何通過反射獲得顏色名稱(字符串)對應(yīng)的顏色(Color類型)?

public Color col(string colorName)

{

Type colorType = typeof(Color);

PropertyInfo info = colorType.GetProperty(colorName, BindingFlags.Public | BindingFlags.Static);

if (infos == null)

{

//throw Exception

}

return(Color)info.GetValue(null, null);

}

是這個意思么?輸入“Red”, 返回Color.Red 區(qū)分大小寫


當前題目:關(guān)于vb.netcolor的信息
標題網(wǎng)址:http://weahome.cn/article/dosgdph.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部