Re,
En "private void InitializeComponent()", j'ai changé la ligne :
this.Name = nameof (Form1);
en
Maintenant j'ai ces erreurs :

Exemple, en gras ce qui semble poser problème :
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| private void InitializeComponent()
{
ComponentResourceManager componentResourceManager = new ComponentResourceManager(typeof (Form1));
this.OFD1 = new OpenFileDialog();
this.saveFileDialog = new SaveFileDialog();
this.Open = new Button();
this.FilePlot = new GroupBox();
this.button1 = new Button();
this.label1 = new Label();
this.Type = new TextBox();
this.dossier = new Button();
this.FilePlot.SuspendLayout();
this.SuspendLayout();
this.OFD1.FileName = "openFileDialog1";
this.Open.BackColor = SystemColors.Control;
this.Open.ForeColor = SystemColors.ActiveCaptionText;
componentResourceManager.ApplyResources((object) this.Open, "Open");
... |
Partager