黄聪

论SEO对人类的重要性,请看我的博客:hcsem.com

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

private void button1_Click(object sender, EventArgs e)
{
StringBuilder str
= new StringBuilder(2000);
System.Drawing.Text.InstalledFontCollection fonts
= new System.Drawing.Text.InstalledFontCollection();
foreach (System.Drawing.FontFamily family in fonts.Families)
{
str.Append(family.Name);
str.AppendLine();
}
textBox1.Text
= str.ToString();
textBox1.Focus();
textBox1.SelectAll();
}

posted on 2010-03-27 19:03  黄聪  阅读(1099)  评论(0编辑  收藏  举报