我有一个格式化的字符串列表,它们的长度和格式(填充)都相同。
//This is an example of line
List<String> document = new List<string>();
String code;
String description;
Double price;
String coinSymbol;
document.Add(
String.Format("{0,-6} ", code) +
String.Format("{0,-60}", description +
String.Format(" {0,7}", Math.Round(price,2)).Replace(' ','.') +
String.Format(coinSymbol)
);
一旦我将此列表添加到具有Verdana字体的RickTextBox中,由于规格要求,它必须是Verdana,但是RichTextBox不是必需的,因此字符串的格式(paddin)在视觉上会丢失。 你知道我该怎么解决吗?