gpt4 book ai didi

c# - 初始化按钮

转载 作者:行者123 更新时间:2023-11-30 20:08:09 24 4
gpt4 key购买 nike

你好我来自 c/c++ 世界,我有以下代码片段,以这种方式初始化按钮是个好主意吗?提前致谢

private Button initializeButton() {
Button button = new Button();

button.FlatStyle = System.Windows.Forms.FlatStyle.System;
button.Location = new System.Drawing.Point(16, 16);
button.Name = "button";
button.Size = new System.Drawing.Size(168, 24);
button.TabIndex = 5;
button.Text = "button";

return button;
}

最佳答案

是的,如果你想让它更短,你可以使用这样的东西:

    private Button initializeButton() {
return new Button() {
FlatStyle = System.Windows.Forms.FlatStyle.System,
Name = "button",
....
};
}

您可能需要 dispose this button later如果你不添加它 parent 的 Controls collection .

关于c# - 初始化按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7451515/

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