0
I use File.ReadAllText
to read the text inside a file .txt
.
private void label9_TextChanged(object sender, EventArgs e)
{
string text = File.ReadAllText($@"{pathname}", Encoding.UTF8);
if (text.Length) // Como fazer aqui ?
{
}
}
Inside of my file .txt
has:
Pois diga que irá
Irá já, Irajá
Pra onde eu só veja você,
Você veja-me só
Marajó, Marajó
Qualquer outro lugar comum, outro lugar qualquer
Guaporé, Guaporé.
Qualquer outro lugar ao sol, outro lugar ao sul.
Céu azul, céu azul.
Onde haja só meu corpo nu
Junto ao seu corpo nu
On the form I have label1
and panel1
. The result of the label:
Pois diga que irá
Irá já, Irajá
Pra onde eu só veja você,
Você veja-me só
Marajó, Marajó
Qualquer outro lugar comum, outro
lugar qualquer
Guaporé, Guaporé.
Qualquer outro lugar ao sol, outro
lugar ao sul.
Céu azul, céu azul.
Onde haja só meu corpo nu
Junto ao seu corpo nu
You can see that in the sixth and ninth line was broken automatically, how can I know if some of these lines were broken ? If yes, decrease the font.
On the sixth line she should stay that way:
Qualquer outro lugar comum, outro lugar qualquer
In the ninth line it should stay that way:
Qualquer outro lugar ao sol, outro lugar ao sul
Must respect according to file .txt
.
puts your code
– Rovann Linhalis
had made a similar code... I went to see, and it was for you also kkkk I think can meet you also in this issue: https://answall.com/a/254130/69359
– Rovann Linhalis
Similar, but this must respect according to
.txt
:)– Matheus Miranda