gpt4 book ai didi

winforms - 不知道如何在 winforms powershell 中为标签添加粗体

转载 作者:行者123 更新时间:2023-12-02 23:41:46 31 4
gpt4 key购买 nike

我尝试了不同帖子中的几件事,但我似乎无法使其大胆

有谁知道如何做到这一点吗?

$LabelComputer = New-Object System.Windows.Forms.Label
$LabelComputer.Text = "Computer Settings"
$LabelComputer.AutoSize = $True
$LabelComputer.Top="5"
$LabelComputer.Left="10"
$LabelComputer.Anchor="Left,Top"
$form1.Controls.Add($LabelComputer)

最佳答案

您需要创建一个 Font 对象并将其赋予标签控件上的 Font 属性。

不幸的是,对于这些对象,您需要在构造函数中为其提供一些内容,因此您不能像使用标签一样创建一个空白对象并用详细信息填充它。

为此,您可以在将控件添加到表单之前执行此操作:

$LabelComputer.Font = [System.Drawing.Font]::new("Microsoft Sans Serif", 12, [System.Drawing.FontStyle]::Bold)

您会注意到 new(...) 里面有三件事:

  1. 字体名称
  2. 文本的大小(可以省略,但默认为 1)
  3. 字体样式,在本例中为粗体。

您需要调整字体和大小以满足您的需要。

请注意,如果您要使用相同字体创建多个标签,请创建字体对象并将其分配给 $LabelFont,然后标签上的属性可以是 $LabelComputer.Font = $LabelFont.

关于winforms - 不知道如何在 winforms powershell 中为标签添加粗体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44620134/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com