Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
を使用して新しい行を作成できることは理解していますが<html> <br> </html>、変数 (文字列型) をラベルのテキストに追加すると、このコマンドは機能しなくなります。
<html> <br> </html>
label.setText("blahblahblah" + variable + "<html><br>blahblahblah</html>");
出力する必要があります:
ブラブラブラブラブラ ブラブラ
<html>文字列の最初にタグを付ける必要があります。
<html>
label.setText("<html>blahblahblah" + variable + "<br>blahblahblah</html>");
そのはず: