我已根据下面的代码将VerticalContentAlignment,HorizontalContentAlignment和TextAlignment设置为Center,但文本未在TextBox中对齐。
if (str.substring(0, Math.min(length, str.length())).equals(word))
return str.substring(0, length);
else if (str.substring(1, Math.min(length, str.length())).equals(word.substring(1, word.length()))) {
return str.substring(0, length);
}
else
return "";
如何在没有填充的情况下实现这一目标?
答案 0 :(得分:2)
问题标题为TextBlock
,但代码显示为TextBox
,因此请尝试将TextBox
换成TextBlock
,然后将TextAlignment
属性设置为"中心" (见下文):
<TextBlock TextAlignment="Center">Data</TextBlock>
希望对你有所帮助。