所以我刚开始使用C#进入XAML和WPF,我现在正在使用数据网格,我有这个奇怪的白色东西,我可以用它来调整行的大小,我做到了用户不能再做的了,但白色事情还在那里。我该如何摆脱它?
<DataGrid Name="datagridXAML" CanUserResizeRows="False" Foreground="White" RowBackground="Transparent" Background="Transparent" BorderBrush="Black" HorizontalAlignment="Left" Height="239" Margin="10,43,0,0" VerticalAlignment="Top" Width="505">
答案 0 :(得分:0)
“white thing”实际上是行标题。您可以设置HeadersVisibility="Column"
或RowHeaderWidth="0"
来隐藏它们