This commit is contained in:
CortexCore
2025-07-11 11:45:45 +08:00
parent fc189b98cc
commit ecae0f809c
76 changed files with 237471 additions and 33136 deletions

View File

@@ -81,7 +81,10 @@ namespace BITKit.UX
else
{
var label = instance.Create<Label>();
label.text = array[x].ToString();
var text = array[x].ToString().Replace(@"\r\n", @"\n").Replace(@"\r", @"\n");
label.text = text;
}
}