2017-01-23 5 views
0

Gibt es eine Möglichkeit, das Äquivalent von TextBox.HideSelection = false in WPF zu tun? Der Code unten ist so nah wie ich es bekommen kann - wo Sie durch die Felder "Tab" müssen, damit sie angezeigt werden. Ich brauche die Auswahlen, um zumindest alle anzuzeigen, wenn die Taste gedrückt wird. (Meine eigentliche Anwendung ist an Auswahlstart/Längeneinstellungen gebunden) (auch: jede andere Steuerung, die Bereichshervorhebung zulässt, wäre auch in Ordnung!) Danke für jede Hilfe!TextBox HideSelection in XAML

<Window x:Class="selectionbrush.MainWindow" 
    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:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
    mc:Ignorable="d" 
    Title="MainWindow" Height="350" Width="525"> 
<Window.Resources> 
    <Style TargetType="{x:Type TextBox}"> 
     <Setter Property="IsInactiveSelectionHighlightEnabled" Value="True"/> 
     <Setter Property="IsReadOnly" Value="True"/> 
     <Setter Property="Margin" Value="5"/> 
     <Setter Property="SelectionBrush" Value="Green"/> 
     <Style.Triggers> 
      <MultiTrigger> 
       <MultiTrigger.Conditions> 
        <Condition Property="IsSelectionActive" Value="false"/> 
       </MultiTrigger.Conditions> 
       <Setter Property="SelectionBrush" Value="Red"/> 
      </MultiTrigger> 
     </Style.Triggers> 
    </Style> 
</Window.Resources> 
<StackPanel> 
    <Button Content="set selections" Click="Button_Click" Margin="5" MaxWidth="100" HorizontalAlignment="Left" Padding="5,0,5,0"/> 
    <TextBox x:Name="tb1" SelectionStart="1" SelectionLength="8" Text="Lorem ipsum dolor sit amet, agam dolore mediocritatem eu qui"/> 
    <TextBox x:Name="tb2" SelectionStart="5" SelectionLength="3" Text="Lorem ipsum dolor sit amet, agam dolore mediocritatem eu qui"/> 
    <TextBox x:Name="tb3" SelectionStart="9" SelectionLength="12" Text="Lorem ipsum dolor sit amet, agam dolore mediocritatem eu qui"/> 
    <TextBox x:Name="tb4" SelectionStart="4" SelectionLength="9" Text="Lorem ipsum dolor sit amet, agam dolore mediocritatem eu qui"/> 
    <TextBox x:Name="tb5" SelectionStart="11" SelectionLength="4" Text="Lorem ipsum dolor sit amet, agam dolore mediocritatem eu qui"/> 
</StackPanel> 

mit diesem in dem Code-Behind:

 private void Button_Click(object sender, RoutedEventArgs e) 
    { 
     tb1.SelectionStart = 6; tb1.SelectionLength = 5; 
     tb2.SelectionStart = 17; tb2.SelectionLength = 7; 
     tb3.SelectionStart = 8; tb3.SelectionLength = 8; 
     tb4.SelectionStart = 12; tb4.SelectionLength = 3; 
     tb5.SelectionStart = 14; tb5.SelectionLength = 9; 
    } 
+0

Es scheint unmöglich, mit TextBox - Ich werde stattdessen eine RichTextBox verwenden ... – DanW

Antwort

0

Es scheint unmöglich, mit TextBox - Ich werde stattdessen eine RichTextBox verwenden ...