C# 赋予控件数组属性

标签 c# arrays properties error-handling controls

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

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

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/

相关文章:

java - 在不知道数组大小的情况下分析数组

wpf - Visual Studio 的 WPF 属性 Pane 的怪癖

java - 直接在枚举中使用 Wicket 属性

c# - 通过事件处理程序将值插入表中

c# - 蓝牙仿真器/模拟器

c# - 如何使用来自另一个类 C# 的表单上的项目

c# - 为什么 throw 会导致我的程序崩溃但 return 不会?

c - 我想在一个循环或类似的东西中有 100 个结构

Java/Android : ArrayIndexOutofBoundsException

java - 任何属性 toString() 方法都会在 JavaFX 上给出 StackOverflowError