gpt4 book ai didi

c# - 堆栈布局 : Children property cannot be assigned to

转载 作者:行者123 更新时间:2023-11-30 15:57:07 28 4
gpt4 key购买 nike

我在 Xamarin.Forms 中有这段简单的代码:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Xamarin.Forms;

namespace ReflectedColors
{
public class ColorBlocksPage : ContentPage
{
public ColorBlocksPage()
{
Content = new StackLayout
{

};
}
}
}

我在 StackLayout 成员初始值设定项中单击 c 以设置 Children 集合,我得到:

enter image description here

尽你所能 Children 不在那里。

如果我试着写

Content = new StackLayout
{
Children = new Label { Text = "Test"}
};

尝试构建我的解决方案时出现以下错误:

Error CS0200 Property or indexer 'Layout.Children' cannot be assigned to -- it is read only

我一定是在做一些愚蠢的事情,但不幸的是,我不知道这个问题的根源是什么。

最佳答案

您正在将 Children 属性分配给新标签。
设置children属性的正确方法:

Content = new StackLayout
{
Children = {new Label { Text = "Test"}}
};

关于c# - 堆栈布局 : Children property cannot be assigned to,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45532801/

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