gpt4 book ai didi

c# - 如何在 C# 2.0 中创建 Delphi TSpeedButton 或 SpeedButton?

转载 作者:行者123 更新时间:2023-11-30 15:13:14 32 4
gpt4 key购买 nike

如何在 C# 2.0 中创建 Delphi TSpeedButton 或 SpeedButton?

最佳答案

使用 Button 并将 TabStop 属性设置为 false 仅在点击表单时有效...

如果您(像我一样)需要一个单击时未被选中的按钮,我发现只有一种方法可以做到这一点。

我的做法是继承 Button 类,并在构造函数中调用 SetStyles,从而将 Selectable 设置为 false,如下所示:

public class ButtonNoFocus : Button
{
public ButtonNoFocus()
: base()
{
base.SetStyle(ControlStyles.Selectable, false);
}
}

这对我来说很有效,如果你喜欢,那就太完美了。有一个带有按钮的控制面板,可以对选定的对象执行操作...

关于c# - 如何在 C# 2.0 中创建 Delphi TSpeedButton 或 SpeedButton?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/223189/

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