Hey. I need to select text from a file and create a panel in the form that will show this text. Created a method for writing to txt.
public void AddSp(string name, int size, string URL) { string[] lines = { "[RUN_ADDMANGA] " + "name = " + name + " " + "size = " + size + " " + "URL = " + URL + " " + "[END_ADDMANGA]" + Environment.NewLine }; File.WriteAllLines(_path, lines); } But I don’t know how to upload to the panel, so that only the name, size, URl would be unloaded;