Creating multi-line 'String' in a static text of a GUI
问题 I have a static text in GUI and need to write something like: y1 = A[1] y2 = A[2] y3 = A[3] etc. (there is a certain limit, right now this is not important). Where y1, y2, y3 are strings , and A[1], A[2], A[3] are numbers in a matrix A . I'm just not sure how to enter a new line in that static text, meaning I'm not sure how to go from y1 to y2 . I know there are a lot of answers to this question on the Internet but I can't find one that suits my needs for some reason. How can I do that? Thank