gpt4 book ai didi

c# - 数据网格行标题未根据内容调整大小

转载 作者:太空宇宙 更新时间:2023-11-03 12:15:18 25 4
gpt4 key购买 nike

我正在自定义 DataGrid,以便用户可以通过 TextBox 将信息直接输入到标题中。

我遇到的问题是当文本更改时,行标题没有调整大小以匹配内容的大小:

之前: enter image description here

之后: enter image description here enter image description here

如您所见,一旦文本框的大小已缩小以匹配新文本,标题就不会缩小以匹配文本框。

符合Minimal, Complete and Verifiable Example要求:

<Window
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:l="clr-namespace:MCVE"
xmlns:lib="clr-namespace:System;assembly=mscorlib"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
x:Class="MCVE.MainWindow"
mc:Ignorable="d" Title="MainWindow" Height="450" Width="800">
<Window.Resources>
<x:Array x:Key="Source" Type="{x:Type lib:String}">
<lib:String>Foo</lib:String>
<lib:String>Bar</lib:String>
<lib:String>Baz</lib:String>
</x:Array>
</Window.Resources>
<DataGrid
AutoGenerateColumns="False"
ItemsSource="{StaticResource Source}"
RowHeight="50">
<DataGrid.RowHeaderStyle>
<Style TargetType="{x:Type DataGridRowHeader}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate>
<TextBox FontSize="36" HorizontalAlignment="Left" Text="This Is A Test" />
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</DataGrid.RowHeaderStyle>
</DataGrid>
</Window>

在任何行标题中键入一些内容。然后清除它以重现。

那么我可以做些什么来强制行标题宽度并确保它保持尽可能小的宽度(不侵占实际的行标题内容)?

最佳答案

您可以处理 TextBox 元素的 SizeChanged 事件并跟踪它们的宽度。试试这个:

private readonly Dictionary<TextBox, double> _widths = new Dictionary<TextBox, double>();
private void TextBox_SizeChanged(object sender, SizeChangedEventArgs e)
{
TextBox textBox = (TextBox)sender;
_widths[textBox] = textBox.ActualWidth;

double largestWidth = _widths.Values.Max();
DataGridRowHeader header = FindParent<DataGridRowHeader>(textBox);
dg.RowHeaderWidth = double.NaN;
if (header != null)
dg.RowHeaderWidth = dg.RowHeaderActualWidth > largestWidth ? largestWidth : double.NaN;
}

XAML:

<DataGrid.RowHeaderStyle>
<Style TargetType="{x:Type DataGridRowHeader}">
<Setter Property="Width" Value="Auto" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate>
<TextBox FontSize="36" HorizontalAlignment="Left" Text="This Is A Test"
SizeChanged="TextBox_SizeChanged" />
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</DataGrid.RowHeaderStyle>

关于c# - 数据网格行标题未根据内容调整大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50092381/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com