gpt4 book ai didi

C# 赋予控件数组属性

转载 作者:太空宇宙 更新时间:2023-11-03 20:20:24 25 4
gpt4 key购买 nike

我的项目需要一些控制数组,但我的代码产生了错误。

这是我如何给一个普通的控件属性(这段代码工作正常)

TextBox stamText = new TextBox()  
{
Location = new Point(15, 50),
Text = "55",
Width = 30,
Height = 30
};

这是我尝试做同样的代码,但用于一组控件

TextBox[] stamText = new TextBox[8]  
{
Location = new Point(15, 50),
Text = "55",
Width = 30,
Height = 30
};

我在 {} 中的每个属性后都出现错误,说“;”预计。

有谁知道如何解决这个问题(给控件数组属性)?

***扩展

好吧,我的程序是一种在桌面角色扮演时跟踪玩家统计数据的表格。

假设我和 Bill、Jim 和我在一个房间里

我单击窗体上的“添加播放器”按钮,它添加了一个播放器以及一堆与该播放器相关的控件

*AddPlayer Button clicked*
Addplayer()

Public void AddPlayer()
{
*Add a bunch of controls*
checkbox(i)
textbox(i)
}
i += 1

现在每个人都打了 10。所以我要把每个人的耐力改成 -10

if for i = 0 to players added 
if checkbox(i) = checked then textbox(i).text = (text - 10)

所以我需要它们是数组,这样我就可以通过 for 循环一次更改多个人的统计数据。

最佳答案

您似乎对对象和集合初始化器感到困惑。您在第一种情况下使用的对象初始化器的工作方式如下:

Object initializers let you assign values to any accessible fields or properties of an object at creation time without having to explicitly invoke a constructor.

class Cat
{
// Auto-implemented properties.
public int Age { get; set; }
public string Name { get; set; }
}

Cat cat = new Cat { Age = 10, Name = "Fluffy" };

您在第二种情况下使用的集合初始值设定项的工作方式如下:

Collection initializers let you specify one or more element initializers when you initialize a collection class that implements IEnumerable. The element initializers can be a simple value, an expression or an object initializer. By using a collection initializer you do not have to specify multiple calls to the Add method of the class in your source code; the compiler adds the calls.

List<int> digits = new List<int> { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };

在您抛出错误的示例中,您使用集合初始化器创建了一个包含 8 个文本框的数组,但您传入的是对象初始化器。您收到关于 ; 错误的原因是因为 ; 用于分隔您要添加到集合中的对象。编译器希望在集合中添加 8 个文本框,每个文本框由 ; 分隔。这是解决此问题的一种方法:

TextBox[] stamText = new TextBox[8]  
{
new TextBox() { Location = new Point(15, 50), Text = "55", Width = 30, Height = 30 },
new TextBox() { Location = new Point(15, 50), Text = "55", Width = 30, Height = 30 },
new TextBox() { Location = new Point(15, 50), Text = "55", Width = 30, Height = 30 },
new TextBox() { Location = new Point(15, 50), Text = "55", Width = 30, Height = 30 },
new TextBox() { Location = new Point(15, 50), Text = "55", Width = 30, Height = 30 },
new TextBox() { Location = new Point(15, 50), Text = "55", Width = 30, Height = 30 },
new TextBox() { Location = new Point(15, 50), Text = "55", Width = 30, Height = 30 },
new TextBox() { Location = new Point(15, 50), Text = "55", Width = 30, Height = 30 }
};

关于C# 赋予控件数组属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13895748/

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