C
C#9mo ago
KayJs

❔ win form app desinger app erorr

Severity Code Description Project File Line Suppression State Error CS1061 'Form1' does not contain a definition for 'Form1_load' and no accessible extension method 'Form1_load' accepting a first argument of type 'Form1' could be found (are you missing a using directive or an assembly reference?) ödev C:\Users\cengiz\source\reposödevödev\Form1.Designer.cs 147 Active this error
3 Replies
KayJs
KayJs9mo ago
JakenVeina
JakenVeina9mo ago
the error tells you what the problem is, pretty explicitly Form1 does not contain a definition for 'Form1_load' can I assume Form1 is your main form class? somewhere you're referring to Form1_load but you never actually defined it it doesn't exist either define it, or get rid of the reference to it and that file you pasted never ever touch that file that is code generated by the designer if you're GOING to use the designer, use it
Accord
Accord9mo ago
Was this issue resolved? If so, run /close - otherwise I will mark this as stale and this post will be archived until there is new activity.