我有以下数据网格:
<DataGrid x:Name="myDataGrid"
RowHeaderWidth="{Binding RelativeSource={RelativeSource Self},
Path=RowHeight}">
<DataGrid.Columns>
<DataGridTextColumn Header="Name" Width="*"
Binding="{Binding Name}"/>
<DataGridTextColumn Header="Age" Width="1.2*"
Binding="{Binding Age}"/>
</DataGrid.Columns>
</DataGrid>
<Button Grid.Row="1" Content="Add" Click="Button_Click"
Width="100"/>
private void Button_Click(object sender, RoutedEventArgs e)
{
var person = new Person()
{
Name = "Aaa",
Age = 27
};
myDataGrid.Items.Add(person);
}
public class Person
{
public string Name { get; set; }
public int Age { get; set; }
}
问题是添加新行时出现水平滚动条,这是不必要的。删除RowHeaderWidth属性将解决问题,但我需要这个来显示验证错误。将RowHeaderWidth设置为固定值将无济于事。有人可以建议我一个解决方案吗?
答案 0 :(得分:0)
试试这个:
<DataGrid x:Name="myDataGrid"
RowHeaderWidth="{Binding RelativeSource={RelativeSource Self},
Path=RowHeight}" ScrollViewer.CanContentScroll="False" ScrollViewer.HorizontalScrollBarVisibility="Disabled">
<DataGrid.Columns>
<DataGridTextColumn Header="Name" Width="*"
Binding="{Binding Name}"/>
<DataGridTextColumn Header="Age" Width="*"
Binding="{Binding Age}"/>
</DataGrid.Columns>
</DataGrid>
答案 1 :(得分:0)
我找到的一个解决方法是设置按钮的宽度,该按钮位于行和列的交叉点(数据网格的左上角)。将第一行添加到数据网格时,此按钮将显示在可视树中。我了解了这个按钮here。
public MainWindow()
{
InitializeComponent();
myDataGrid.ItemContainerGenerator.StatusChanged += onItemContainerGeneratorStatusChanged;
}
private void onItemContainerGeneratorStatusChanged(object sender, EventArgs e)
{
if (((ItemContainerGenerator)sender).Status == System.Windows.Controls.Primitives.GeneratorStatus.ContainersGenerated)
{
Button btn = GetVisualChild<Button>(myDataGrid);
if (btn != null)
{
btn.Width = myDataGrid.RowHeaderActualWidth;
}
}
}
public T GetVisualChild<T>(Visual parent) where T : Visual
{
T child = default(T);
int numVisuals = VisualTreeHelper.GetChildrenCount(parent);
for (int i = 0; i < numVisuals; i++)
{
Visual v = (Visual)VisualTreeHelper.GetChild(parent, i);
child = v as T;
if (child == null) child = GetVisualChild<T>(v);
if (child != null) break;
}
return child;
}
如果我将DataGrid.RowDetailsTemplate和DataGrid.SelectedItem设置为新添加的行,则无效。所以我尝试了以下内容:
private void onItemContainerGeneratorStatusChanged(object sender, EventArgs e)
{
if (((ItemContainerGenerator)sender).Status == System.Windows.Controls.Primitives.GeneratorStatus.ContainersGenerated)
{
ScrollViewer sv = GetVisualChild<ScrollViewer>(myDataGrid);
if (sv != null)
{
AutomationPeer automationPeer = FrameworkElementAutomationPeer.FromElement(sv);
if (automationPeer == null)
automationPeer = FrameworkElementAutomationPeer.CreatePeerForElement(sv);
IScrollProvider provider = automationPeer.GetPattern(PatternInterface.Scroll) as IScrollProvider;
try { provider.Scroll(ScrollAmount.SmallIncrement, ScrollAmount.NoAmount); }
catch { }
try { provider.Scroll(ScrollAmount.SmallDecrement, ScrollAmount.NoAmount); }
catch { }
}
}
}
确实解决了原始问题,但引入了一个新问题:验证错误红框现在从文本框中移出,它们指出了错误。
答案 2 :(得分:0)
更好地为我服务的另一种解决方法是:
private void fixScrollBarBug()
{
ScrollBar scrollBar = GetChildByName<ScrollBar>(myDataGrid, "PART_HorizontalScrollBar");
if (scrollBar != null)
{
if (VisualTreeHelper.GetChildrenCount(scrollBar) > 0)
{
Grid grid = (Grid)VisualTreeHelper.GetChild(scrollBar, 0);
if (VisualTreeHelper.GetChildrenCount(grid) == 3)
{
try
{
RepeatButton leftButton = (RepeatButton)VisualTreeHelper.GetChild(grid, 0);
RepeatButton rightButton = (RepeatButton)VisualTreeHelper.GetChild(grid, 2);
AutomationPeer automationPeer = FrameworkElementAutomationPeer.FromElement(rightButton);
if (automationPeer == null)
automationPeer = FrameworkElementAutomationPeer.CreatePeerForElement(rightButton);
IInvokeProvider provider = automationPeer.GetPattern(PatternInterface.Invoke) as IInvokeProvider;
provider.Invoke();
automationPeer = FrameworkElementAutomationPeer.FromElement(leftButton);
if (automationPeer == null)
automationPeer = FrameworkElementAutomationPeer.CreatePeerForElement(leftButton);
provider = automationPeer.GetPattern(PatternInterface.Invoke) as IInvokeProvider;
provider.Invoke();
}
catch { }
}
}
}
}
添加第一行后调用上面的方法,解决了问题:
myDataGrid.Dispatcher.BeginInvoke(DispatcherPriority.Input, new Action(
delegate
{
fixScrollBarBug();
}));