1 စက္ထဲမွာ Install လုပ္ထားတဲ့ Font List ကို C# ၿဖင့္ ၾကည့္ၿခင္း 10th October 2009, 2:33 pm
sHa92
Founder
ဒီ Code ကို Run ဖို႔အတြက္
list box(lstFontStyle) နဲ႔ button( btnLoadFontStyle) တစ္ခုဆီဆြဲလိုက္ပါ။
ၿပီးရင္ အဲဒီ့ Button မွာ ေအာက္က Code ေလးေတြ ၿဖည့္လုိက္ရင္ရၿပီေပါ့။ [You must be registered and logged in to see this image.]
တၿခား သူေတြေတာ့ မသိဘူး ၊ က်ေနာ္ကေတာ့ Windows Application ေတြေရးေနရရင္ ေပ်ာ္ေနတာေလ။ [You must be registered and logged in to see this image.]
C# ကေတာ့ ေလ့လာတာ ၂ လ ဘဲရိွေသးတယ္။ သိပ္မရေသးဘူး။
list box(lstFontStyle) နဲ႔ button( btnLoadFontStyle) တစ္ခုဆီဆြဲလိုက္ပါ။
ၿပီးရင္ အဲဒီ့ Button မွာ ေအာက္က Code ေလးေတြ ၿဖည့္လုိက္ရင္ရၿပီေပါ့။ [You must be registered and logged in to see this image.]
- Code:
protected void btnLoadFontStyle_Click(object sender, EventArgs e)
{
InstalledFontCollection fontList = new InstalledFontCollection();
foreach (FontFamily Family in fontList.Families)
{
lstFontStyle.Items.Add(Family.Name);
}
}
တၿခား သူေတြေတာ့ မသိဘူး ၊ က်ေနာ္ကေတာ့ Windows Application ေတြေရးေနရရင္ ေပ်ာ္ေနတာေလ။ [You must be registered and logged in to see this image.]
C# ကေတာ့ ေလ့လာတာ ၂ လ ဘဲရိွေသးတယ္။ သိပ္မရေသးဘူး။