摘要:
表格内容居中 对于文本显示列DataGridTextColumn需要设定文本内容水平居中或者水平居右,而不是HandyControl中设定的样式默认显示为居左时,需要继承DataGridCellStyle重写HorizontalContentAlignment 属性为Center 或Right 需要 阅读全文
摘要:
//错误的用法 这样子是不会出现圆角的,哪怕你把CornerRadius设置到1000 <Border CornerRadius="3" Width="100" Height="100"> <StackPanel Background="Red"></StackPanel> </Border> // 阅读全文