gpt4 book ai didi

WPF TextBox Inside ViewBox 在调整大小时丢失光标

转载 作者:行者123 更新时间:2023-12-04 21:37:19 38 4
gpt4 key购买 nike

我在 View 框中有一个文本框。当我尝试调整窗口大小时,文本框大小和字体大小会缩放,但如果我尝试聚焦文本框并尝试使用键盘将光标移动到文本框内,有时光标会消失。有没有办法始终显示光标?引用下面的代码,在 ViewBox 中有一个 TextBox。

<Window x:Class="Resolution_Learning.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow">
<Viewbox Stretch="Uniform">
<Grid Width="2560" Height="1440" >
<Grid.RowDefinitions>
<RowDefinition/>
<RowDefinition/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition/>
<ColumnDefinition/>
<ColumnDefinition/>
<ColumnDefinition/>
</Grid.ColumnDefinitions>
<Label Grid.Row="0" Grid.Column="0" Content="Hello"/>
<TextBox Grid.Row="0" Grid.Column="1"></TextBox>
<Label Grid.Row="0" Grid.Column="2" Content="Hello"/>
<TextBox Grid.Row="0" Grid.Column="3"/>
<Label Grid.Row="1" Grid.Column="0" Content="Hello"/>
<TextBox Grid.Row="1" Grid.Column="1"/>
<Label Grid.Row="1" Grid.Column="2" Content="Hello"/>
<TextBox Grid.Row="1" Grid.Column="3"/>
</Grid>
</Viewbox>

最佳答案

这是一个BUGWPF 中。我通过为 TextBox Caret 创建自己的样式来实现这一点。

XAML: TextBox 样式

<Style TargetType="{x:Type TextBox}" x:Key="CaretStyle" >
<Setter Property="Template">
<Setter.Value>
<ControlTemplate>
<Canvas>
<TextBox x:Name="Box" CaretBrush="Transparent" Width="{Binding RelativeSource={RelativeSource AncestorType=TextBox},Path=ActualWidth,Mode=OneWay}"
Height="{Binding RelativeSource={RelativeSource AncestorType=TextBox},Path=ActualHeight,Mode=OneWay}"/>
<Border x:Name="Caret"
Visibility="Collapsed"
Canvas.Left="0" Canvas.Top="0" Margin="0" Padding="0"
Width="1" Height="16" Background="Black">
<Border.Triggers>
<EventTrigger RoutedEvent="Border.Loaded">
<BeginStoryboard>
<Storyboard x:Name="CaretStoryBoard"
RepeatBehavior="Forever">
<ColorAnimationUsingKeyFrames
Storyboard.TargetProperty="Background.Color"
Duration="0:0:0:1"
FillBehavior="HoldEnd">
<ColorAnimationUsingKeyFrames.KeyFrames >
<DiscreteColorKeyFrame KeyTime="0:0:0.750"
Value="Transparent" />
<DiscreteColorKeyFrame KeyTime="0:0:0.000"
Value="Black"/>
</ColorAnimationUsingKeyFrames.KeyFrames>
</ColorAnimationUsingKeyFrames>
</Storyboard>
</BeginStoryboard>
</EventTrigger>
</Border.Triggers>
</Border>
</Canvas>
</ControlTemplate>
</Setter.Value>
</Setter>
<EventSetter Event="SelectionChanged" Handler="CustomTextBox_SelectionChanged"/>
<EventSetter Event="GotFocus" Handler="CustomTextBox_GotFocus" />
<EventSetter Event="LostFocus" Handler="CustomTextBox_LostFocus" />
</Style>

事件: 插入符号位置

 void CustomTextBox_LostFocus(object sender, RoutedEventArgs e)
{
var Caret = FindChild<Border>(sender as DependencyObject, "Caret");
Caret.Visibility = Visibility.Collapsed;
}

void CustomTextBox_GotFocus(object sender, RoutedEventArgs e)
{
var Caret = FindChild<Border>(sender as DependencyObject, "Caret");
Caret.Visibility = Visibility.Visible;
}

void CustomTextBox_SelectionChanged(object sender, RoutedEventArgs e)
{
var CustomTextBox = FindChild<TextBox>(sender as DependencyObject, "Box");
var caretLocation = CustomTextBox.GetRectFromCharacterIndex(CustomTextBox.CaretIndex).Location;
var Caret = FindChild<Border>(sender as DependencyObject, "Caret");
if (!double.IsInfinity(caretLocation.X))
{
Canvas.SetLeft(Caret, caretLocation.X);
}

if (!double.IsInfinity(caretLocation.Y))
{
Canvas.SetTop(Caret, caretLocation.Y);
}
}

辅助方法: 获取 Visual Child

     public static T FindChild<T>(DependencyObject parent, string childName)
where T : DependencyObject
{
// Confirm parent and childName are valid.
if (parent == null) return null;

T foundChild = null;

int childrenCount = VisualTreeHelper.GetChildrenCount(parent);
for (int i = 0; i < childrenCount; i++)
{
var child = VisualTreeHelper.GetChild(parent, i);
// If the child is not of the request child type child
T childType = child as T;
if (childType == null)
{
// recursively drill down the tree
foundChild = FindChild<T>(child, childName);

// If the child is found, break so we do not overwrite the found child.
if (foundChild != null) break;
}
else if (!string.IsNullOrEmpty(childName))
{
var frameworkElement = child as FrameworkElement;
// If the child's name is set for search
if (frameworkElement != null && frameworkElement.Name == childName)
{
// if the child's name is of the request name
foundChild = (T)child;
break;
}
}
else
{
// child element found.
foundChild = (T)child;
break;
}
}

return foundChild;
}

Just add above Style/metods in your code and set Style for TextBoxes wherever you want and see the result. As I have created this myself without any actual measurement of actual Caret symbol, you may see a light shadow at some scale. please adjust the look & feel as needed.

关于WPF TextBox Inside ViewBox 在调整大小时丢失光标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36773364/

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