简体   繁体   English

文本框在单击时或具有焦点时不显示闪烁的光标

[英]The Textbox doesn't show the blinking cursor on clicking or when it has focus

In the textboxes from the code below, the blinking cursor doesn't show even after i click the textbox or when it has focus.I'm posting this big a code because i think perhaps it's the parent element properties that are somehow interfering with the texboxes but I can't seem to find a solution for this. 在下面代码的文本框中,即使我单击文本框或获得焦点后,闪烁的光标也不会显示。我发布了这么大的代码,因为我认为可能是父元素属性在某种程度上干扰了texboxes,但我似乎找不到解决方案。 Can someone please help. 有人可以帮忙吗?

<Canvas Name="encounterTab" Style="{StaticResource canvasRecording}" Visibility="Hidden" Width="{DynamicResource {x:Static SystemParameters.FullPrimaryScreenWidthKey}}" FocusManager.IsFocusScope="True">
                <Grid Height="{DynamicResource {x:Static SystemParameters.FullPrimaryScreenHeightKey}}" Width="{DynamicResource {x:Static SystemParameters.FullPrimaryScreenWidthKey}}" Margin="0,0,0,0" FocusManager.IsFocusScope="True">
                    <DockPanel Style="{StaticResource screenTitleDock}" Grid.Row="0" VerticalAlignment="Top" >
                        <TextBlock Name="textBlock1"  Style="{StaticResource screenTitle}">ENCOUNTER DETAILS</TextBlock>
                    </DockPanel>
                    <Grid Style="{StaticResource gridRecording}" SizeChanged="MainGrid_SizeChanged" Name="gridEncDetails" FocusManager.IsFocusScope="True">
                        <Grid.LayoutTransform>
                            <ScaleTransform 
                        CenterX="0"
                        CenterY="0"
                        ScaleX="{Binding ElementName=myMainWindow, Path=ScaleValue}"
                        ScaleY="{Binding ElementName=myMainWindow, Path=ScaleValue}" />
                        </Grid.LayoutTransform>
                        <Grid.ColumnDefinitions>
                            <ColumnDefinition Width="188*"></ColumnDefinition>
                            <ColumnDefinition Width="149*"></ColumnDefinition>
                            <ColumnDefinition Width="63*"></ColumnDefinition>
                        </Grid.ColumnDefinitions>
                        <Grid.RowDefinitions>
                            <RowDefinition ></RowDefinition>
                            <RowDefinition ></RowDefinition>
                            <RowDefinition ></RowDefinition>
                            <RowDefinition ></RowDefinition>
                            <RowDefinition></RowDefinition>
                        </Grid.RowDefinitions>

                        <Label x:Name="lblApptTime" Content="Time:" Grid.Column="0" Grid.Row="0"    />
                        <TextBox x:Name="txtTime" GotKeyboardFocus="txtApptTimeKeyBoadFocus" GotMouseCapture="txtApptTime_MouseClick" Grid.Column="1" Grid.Row="0" Width="149" LostFocus="txtApptTime_LostFocus" HorizontalAlignment="Left" MouseDoubleClick="txtApptTime_MouseDoubleClick" Margin="0,11" Height="38" GotTouchCapture="txtApptTime_GotTouchCapture" />
                        <ComboBox x:Name="ddlAmPm" VerticalContentAlignment="Center" Grid.Row="0" Grid.Column="2" Width="55" IsSynchronizedWithCurrentItem="True" Margin="0,10" HorizontalAlignment="Right" Height="38">
                            <ComboBoxItem>AM</ComboBoxItem>
                            <ComboBoxItem>PM</ComboBoxItem>
                            <ComboBox.ItemTemplate>
                                <DataTemplate>
                                    <Grid >
                                        <TextBlock Height="Auto"
                       HorizontalAlignment="Stretch"
                       VerticalAlignment="Center" />
                                    </Grid>
                                </DataTemplate>
                            </ComboBox.ItemTemplate>
                        </ComboBox>
                        <Label x:Name="lblNo" Content="No:" Grid.Column="0" Grid.Row="1" Margin="0,11" Height="38"  />
                        <TextBox x:Name="txtEncounterNumber" Grid.Column="1" Grid.Row="1"  KeyDown="txtEncounterNumber_KeyUp" TextChanged="txtEncounterNumber_TextChanged" HorizontalAlignment="Left" Width="212" Margin="0,10" Grid.ColumnSpan="2" Height="Auto" />
                        <Button x:Name="btnNext1" Grid.Row="2" Grid.ColumnSpan="3" Style="{StaticResource btnRec}" Click="btnNext1_Click" TouchUp="btnTouchNext1_Click" Margin="50,20,50,10" >
                            <Image Source="Assets/btnNext.png" Stretch="Fill" HorizontalAlignment="Center" VerticalAlignment="Center"/>
                        </Button>
                    </Grid>
                </Grid>
</Canvas >

Note:- When i start typing the caret appears but disappears when i clear the textbox values. 注意:-当我开始键入插入符号时,出现该符号,但当我清除该文本框值时消失。

It looks like you problem might comes from the ScaleTransform. 看来您的问题可能来自ScaleTransform。 If a TextBox is scaled to less then it's original size it's cursor disappears. 如果将TextBox缩放为小于其原始大小,则光标消失。 This happens because the TextBox caret is with Width of 1 and when scaled down it becomes less then 1. So it's not visualized at all. 发生这种情况是因为TextBox插入符的宽度为1,并且按比例缩小时它小于1。因此根本看不到它。

As a workaround make the minimal possible size as default so UI is only scaled up. 解决方法是将最小大小设置为默认值,以便仅按比例扩展UI。

Another workaround it to create a custom caret like it's shown here WPF TextBox Inside ViewBox loses Cursor on resize 另一个解决方法是创建一个自定义插入记号,如下所示: WPF TextBox Inside ViewBox在调整大小时丢失游标

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM