使用 C# 在 Win Forms 中预览字体

发布于 2024-11-03 02:13:14 字数 283 浏览 0 评论 0原文

首先为我糟糕的英语感到抱歉。 我想使用 C# 使用 WinForms 或 WPF 创建桌面应用程序。此应用程序必须以与 http://www.dafont 相同的方式工作.com/theme.php?cat=115&text=Font+Test 站点。用户将输入示例文本,我将在列表视图或网格中以该计算机中安装的不同字体显示该文本。您能指导我这样做的最佳实践是什么吗?

First of all sorry for my poor English.
I want to create a desktop application using WinForms or WPF using C#. This app must work in same way like http://www.dafont.com/theme.php?cat=115&text=Font+Test site. User will enter a sample text and I will show this text in different fonts installed in this computer in list view or grid. Could you please guide me what is the best practice for doing it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

无人问我粥可暖 2024-11-10 02:13:14

在 WPF 中,它只是 XAML:

xmlns:media="clr-namespace:System.Windows.Media;assembly=PresentationCore"
<TextBox Name="sampleTextTB" Text="Some fox jumped over some other animal, i think"/>
<ItemsControl ItemsSource="{x:Static media:Fonts.SystemFontFamilies}">
    <ItemsControl.ItemTemplate>
        <DataTemplate>
            <TextBlock Text="{Binding ElementName=sampleTextTB, Path=Text}"
                       FontFamily="{Binding}" FontSize="20"/>
        </DataTemplate>
    </ItemsControl.ItemTemplate>
</ItemsControl>

In WPF it's a XAML only thing:

xmlns:media="clr-namespace:System.Windows.Media;assembly=PresentationCore"
<TextBox Name="sampleTextTB" Text="Some fox jumped over some other animal, i think"/>
<ItemsControl ItemsSource="{x:Static media:Fonts.SystemFontFamilies}">
    <ItemsControl.ItemTemplate>
        <DataTemplate>
            <TextBlock Text="{Binding ElementName=sampleTextTB, Path=Text}"
                       FontFamily="{Binding}" FontSize="20"/>
        </DataTemplate>
    </ItemsControl.ItemTemplate>
</ItemsControl>
北方的巷 2024-11-10 02:13:14
 private void button1_Click(object sender, EventArgs e)
        {
            string text = textBox1.Text;
            FontFamily ff = GetRandomFont();
            Font fnt = new Font(ff, 12, FontStyle.Bold | FontStyle.Italic);
            textBox2.Font = fnt;
            textBox3.Font = fnt;
            textBox2.Text = textBox1.Text;
            textBox3.Text = textBox1.Text;
        }

        private FontFamily GetRandomFont()
        {
                FontFamily[] ff = System.Drawing.FontFamily.Families;
                Random rnd = new Random();
                int num = rnd.Next(ff.Length);
                return ff[num];
        }
 private void button1_Click(object sender, EventArgs e)
        {
            string text = textBox1.Text;
            FontFamily ff = GetRandomFont();
            Font fnt = new Font(ff, 12, FontStyle.Bold | FontStyle.Italic);
            textBox2.Font = fnt;
            textBox3.Font = fnt;
            textBox2.Text = textBox1.Text;
            textBox3.Text = textBox1.Text;
        }

        private FontFamily GetRandomFont()
        {
                FontFamily[] ff = System.Drawing.FontFamily.Families;
                Random rnd = new Random();
                int num = rnd.Next(ff.Length);
                return ff[num];
        }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文