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;

  • You first need to decide on the UI-framework. - VladD
  • @VladD I understand that I need it to display? And what will you advise? - Yegor Glukhov
  • Well, yes, you will. I find it difficult to advise. Of the two built-in (WinForms and WPF) WPF is much more advanced, but it must be taught and understood. The choice is yours. - VladD 2:07 pm
  • @VladD I rummaged and found the XMT ui framervork. While I will deal with him. But could you provide an example with WinForms? If you do not complicate. - Yegor Glukhov
  • one
    @VladD You may not understand. How can I upload information? - Yegor Glukhov

0