C 及WPF獲取本機所有字型和顏色的方法

2022-09-26 07:12:08 字數 886 閱讀 2340

wpf 獲取所有的字型:

system.drawing.text.installedfontcollect font = new system.drawing.text.installedfontcollection();

system.drawing.fontfamily array= font.families;

foreach (var v in array)

wpf 獲取所有的顏色:

type type = typeof(system.windows.media.brushes);

system.reflection.propertyinfo info = type.getproperties();

foreach (system.reflection.propertyinfo pi in info)

c#獲取所有的字型:

installedfontcollection myfont=new installedfontcollection();

fontfamily myfontfamilies=myfont.families;

arraylist list = new arraylist();

int count=myfontfamil

for(int i=0;i

list.add(fontname);

}c#獲取所有的顏色:

array colors = system.enum程式設計客棧.getvalues( typeof(knowncolor) );

foreach( object colorname in colors )

本文標題: c#及wpf獲取本機所有字型和顏色的方法

本文位址: /ruanjian/csharp/131542.html

Python獲取本機的IP位址和所有IP位址

來看 執行看效果 import socket socket.gethostname 獲取當前主機名 通過hostname查詢,注意這個並不一定會得到真確的ip位址 print socket.gethostbyname socket.gethostname 通過訪問自己udp方式獲取,這個會獲取當前的...

C 獲取外網IP 本機MAC位址及Ping的實現

原文 獲取外網ip,c 獲取本機的mac位址,c 通過程式設計方式實現ping class program public static string getexportip 1 string reg d d d d regex regex new regex reg match match rege...

C 獲取訪問者ip和獲取本機ip位址

獲取訪問者ip 如果使用 獲取真實ip 獲取本機外網ip 獲取本機外網ip的url string getipurl string tempip webrequest wr webrequest.create getipurl stream s wr.getresponse getresponsest...