數(shù)碼管
在開發(fā)上位機(jī)UI界面時(shí),我們常常會(huì)希望數(shù)值可以以7段數(shù)碼管的形式呈現(xiàn)。
關(guān)于7段數(shù)碼管,最早接觸應(yīng)該是學(xué)習(xí)單片機(jī)的時(shí)候,它可以將數(shù)字或者字母以7段字符來呈現(xiàn),所以有時(shí)候也叫7段LED數(shù)碼管顯示。
實(shí)現(xiàn)思路
C#想要實(shí)現(xiàn)7段數(shù)碼管顯示,一般會(huì)有兩種思路,一種是GDI+,通過代碼繪制的方式來實(shí)現(xiàn),今天,給大家介紹另外一種簡單而又方便的方式,那就是通過設(shè)置字體,提前做好一個(gè)7段碼的字體,在電腦中安裝好即可,當(dāng)然字體也可以用現(xiàn)成的,這里給大家提供一個(gè)線程的7段碼字體,公眾號(hào)回復(fù)關(guān)鍵詞:7SEG 或 124
使用也很簡單,就是拖放一個(gè)Label標(biāo)簽到界面上,然后設(shè)置字體選擇為7SEG,設(shè)置合適的字體大小即可。
最終呈現(xiàn)的效果如下所示:
項(xiàng)目應(yīng)用
這個(gè)提及一下項(xiàng)目應(yīng)用,如果我們開發(fā)好項(xiàng)目,把程序放到其他電腦上使用,由于其他電腦沒有安裝7SEG的字體,效果肯定會(huì)不一樣。
一種方法就是提前手動(dòng)安裝好字體,然后再運(yùn)行程序,但是也沒有其他好的方法呢?
也許你們也想到了,就是通過代碼自動(dòng)完成,思路就是檢測字體是否存在,存在則繼續(xù),不存在則通過代碼安裝字體。
所以首先需要第一個(gè)方法,檢測某個(gè)字體是否存在,方法如下:
///
/// 檢測某種字體樣式是否可用
///
/// 字體名稱
/// 字體樣式
///
private bool CheckFont(string familyName, FontStyle fontStyle = FontStyle.Regular)
{
InstalledFontCollection installedFontCollection = new InstalledFontCollection();
FontFamily[] fontFamilies = installedFontCollection.Families;
foreach (var item in fontFamilies)
{
if (item.Name.Equals(familyName))
{
return item.IsStyleAvailable(fontStyle);
}
}
return false;
}
有了這個(gè)方法之后,還需要另外一個(gè)方法就是安裝字體,安裝字體需要提供字體的路徑,代碼如下:
/// <summary>
/// 安裝字體
/// class="hljs-keyword"summary>
/// name="fontFilePath">字體文件全路徑
/// <returns>是否成功安裝字體class="hljs-keyword"returns>
/// <exception cref="UnauthorizedAccessException">不是管理員運(yùn)行程序class="hljs-keyword"exception>
/// <exception cref="Exception">字體安裝失敗class="hljs-keyword"exception>
private bool InstallFont(string fontFilePath)
{
try
{
System.Security.Principal.WindowsIdentity identity = System.Security.Principal.WindowsIdentity.GetCurrent();
System.Security.Principal.WindowsPrincipal principal = new System.Security.Principal.WindowsPrincipal(identity);
//判斷當(dāng)前登錄用戶是否為管理員
if (principal.IsInRole(System.Security.Principal.WindowsBuiltInRole.Administrator) == false)
{
throw new UnauthorizedAccessException("當(dāng)前用戶無管理員權(quán)限,無法安裝字體");
}
//獲取Windows字體文件夾路徑
string fontPath = Path.Combine(System.Environment.GetEnvironmentVariable("WINDIR"), "fonts", Path.GetFileName(fontFilePath));
//檢測系統(tǒng)是否已安裝該字體
if (!File.Exists(fontPath))
{
//將某路徑下的字體拷貝到系統(tǒng)字體文件夾下
File.Copy(fontFilePath, fontPath); //font是程序目錄下放字體的文件夾
AddFontResource(fontPath);
//安裝字體
WriteProfileString("fonts", Path.GetFileNameWithoutExtension(fontFilePath) + "(TrueType)", Path.GetFileName(fontFilePath));
}
}
catch (Exception ex)
{
return false;
}
return true;
}
最終在項(xiàng)目運(yùn)行初始化里執(zhí)行如下代碼:
if (!CheckFont("7SEG"))
{
if (InstallFont(FontPath))
{
MessageBox.Show("字體安裝成功,重啟生效!", "字體安裝");
}
else
{
MessageBox.Show("字體安裝失?。?, "字體安裝");
}
}
其中FontPath是字體文件的路徑,一般可以提前方法根目錄下。這樣即使是沒有安裝字體的電腦,也可以直接正常顯示了。
-END-
-
單片機(jī)
+關(guān)注
關(guān)注
6032文章
44514瀏覽量
632981 -
數(shù)碼管
+關(guān)注
關(guān)注
32文章
1874瀏覽量
90943 -
字符
+關(guān)注
關(guān)注
0文章
232瀏覽量
25173
發(fā)布評(píng)論請(qǐng)先 登錄
相關(guān)推薦
評(píng)論