因此,我一直在为我选择的语言制作字典和用正文。 我不了解最佳环境,但更想知道,在这种情况下,什么都不会引起担忧。
因此,我得以创立一个全球调查组,并拥有所有标签和托邦以及我用来储存某些数据的第二份档案。 在各小组之间发生变化时,我已接过纽子。 但是,我面临的问题是,在我登州时,2次我无法得到更改标签的文本。
现行法典:
using System.Windows.Forms;
using System.Drawing;
using System.Security.Cryptography.X509Certificates;
using System.CodeDom;
using System.Drawing.Text;
//Most of the following code works and does produce the window
//Having to work on converting from the Java coud that works to C#
//This is now working and continueing to build it up.
namespace unchained{
public static class Program{
public static void Main(String [] args){
Form window = new();
...
Button style = new();
style.Text = "Style";
style.Location = new Point(25, 25);
style.BackColor = Color.FromArgb(255, 255, 255);
style.Click += (sender, e) => roleSelected(sender, e, "style");
Label selectStyle = new();
selectStyle.Text = charSheet.style;
selectStyle.Location = new Point(25,325);
selectStyle.ForeColor = Color.FromArgb(255, 255, 255);
...
window.Width = 800;
window.Height = 600;
window.Controls.Add(style);
window.Controls.Add(selectStyle);
Application.Run(window);
void roleSelected(object sender, EventArgs e, string value){
Console.WriteLine(value);
newSheet.style = value;
selectStyle.Text = value;
Console.WriteLine(newSheet.style);
}
}
}
}
Console记录仪将检查价值正在下降,并检查为临时储存而制造的第二类。 我知道,数据没有问题,但标签没有更新。 我所看到的其他一些答复是,在标签上使用复读,但我无法查阅标签,因为标签不是初步的。 但是,当我这样做时,我会遇到其他问题。
因此,我看看一下我怎么会错。
感谢。