Select ListViewItem when child has UWP focus

I am writing a universal application for Windows, and I have a ListView where in ListViewItems there is a TextBox and a button. When I click in the text box, I would like the ListViewItem to become the selected one. I found solutions for WPF, but Style.Triggers is not available in UWP. Can someone point me to the correct way to do this?

<Page
    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"
    xmlns:controls="using:CycleStreetsUniversal.Controls"
    xmlns:common="using:CycleStreetsUniversal.Common"
    xmlns:utils="using:CycleStreetsUniversal.Utils"
    xmlns:interactivity="using:Microsoft.Xaml.Interactivity" 
    xmlns:core="using:Microsoft.Xaml.Interactions.Core"
    xmlns:converters="using:CycleStreetsUniversal.Converters"
    x:Class="CycleStreetsUniversal.Pages.HomePage"
    mc:Ignorable="d" FontWeight="Light">

    <Page.Resources>
        <DataTemplate x:Key="DirectionItem">
            <Grid Padding="8,6,0,6">
                <Grid.ColumnDefinitions>
                    <ColumnDefinition/>
                    <ColumnDefinition Width="50"/>
                    <ColumnDefinition Width="50"/>
                </Grid.ColumnDefinitions>
                <AutoSuggestBox x:Name="autoSuggestBox" PlaceholderText="{Binding Watermark}" QueryIcon="Find" Text="{Binding LocationName}" />    
                <Button Grid.Column="2" Visibility="{Binding ShowAddButton, Converter={StaticResource BooleanToVisibilityConverter}}" />
                <Button Grid.Column="1" Visibility="{Binding ShowMinusButton, Converter={StaticResource BooleanToVisibilityConverter}}" />
            </Grid>
        </DataTemplate>
    </Page.Resources>

    <Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
        <Grid x:Name="Directions" HorizontalAlignment="Left" Margin="0" Width="346" DataContext="{Binding DirectionPlanner, Mode=OneWay, Source={StaticResource Locator}}">
            <Grid.Background>
                <SolidColorBrush Color="{ThemeResource SystemAltHighColor}"/>
            </Grid.Background>
            <StackPanel VerticalAlignment="Top">
                <ListView x:Name="DirectionEntryList" ItemTemplate="{StaticResource DirectionItem}" ItemsSource="{Binding Entries}">
                    <ListView.ItemContainerStyle>
                        <Style TargetType="ListViewItem">
                            <Setter Property="HorizontalContentAlignment" Value="Stretch"/>
                        </Style>
                    </ListView.ItemContainerStyle>
                </ListView>
                <Button x:Name="crosshairButton" VerticalAlignment="Top" d:LayoutOverrides="LeftPosition, RightPosition" Margin="20,0" HorizontalAlignment="Stretch" Padding="0" Click="crosshairButton_Click">
                    <Grid Height="50">
                        <Grid.ColumnDefinitions>
                            <ColumnDefinition/>
                            <ColumnDefinition/>
                        </Grid.ColumnDefinitions>
                        <Image x:Name="image" Source="ms-appx:///Assets/crosshair.png"/>
                        <TextBlock Text="Set Location to Crosshair" Grid.Column="1" VerticalAlignment="Center" MaxLines="2" TextWrapping="Wrap"/>
                    </Grid>
                </Button>
            </StackPanel>
        </Grid>
    </Grid>
</Page>

In the AutoSuggestBox data template, you must set the selected item in the DirectionEntryList to a list item that is an AutoSuggestBox child.

+4
source share
2 answers

Code for Decision

What you can do is sign up for an event AutoSuggestBox GotFocus.

<AutoSuggestBox x:Name="autoSuggestBox" GotFocus="autoSuggestBox_GotFocus" />

ListView.ContainerFromItem ListViewItem IsSelected true.

private void autoSuggestBox_GotFocus(object sender, RoutedEventArgs e)
{
    var item = ((AutoSuggestBox)sender).DataContext;
    var container = (ListViewItem)DirectionEntryList.ContainerFromItem(item);

    container.IsSelected = true;
}

( )

, Behavior.

-, SDK (XAML) ( 12.0 ) > Universal Windows > Extensions.

, DirectionEntryList GotFocus , .

public class SelectListViewItemWhenElementGotFocusBehavior : DependencyObject, IBehavior
{
    private UIElement _element;

    public DependencyObject AssociatedObject { get; set; }

    #region ListView reference

    public ListView ListView
    {
        get { return (ListView)GetValue(ListViewProperty); }
        set { SetValue(ListViewProperty, value); }
    }

    public static readonly DependencyProperty ListViewProperty =
        DependencyProperty.Register("ListView", typeof(ListView), typeof(SelectListViewItemWhenElementGotFocusBehavior), new PropertyMetadata(null));

    #endregion

    public void Attach(DependencyObject associatedObject)
    {
       AssociatedObject = associatedObject;
        _element = this.AssociatedObject as UIElement;

        if (_element != null)
        {
            _element.GotFocus += OnElementGotFocus;
        }
    }

    private void OnElementGotFocus(object sender, RoutedEventArgs e)
    {
        var item = ((AutoSuggestBox)sender).DataContext;
        var container = (ListViewItem)ListView.ContainerFromItem(item);

        container.IsSelected = true;
    }

    public void Detach()
    {
        if (_element != null)
        {
            _element.GotFocus += OnElementGotFocus;
        }
    }
}

, Blend, DataTemplate AutoSuggestBox.

<AutoSuggestBox x:Name="autoSuggestBox">
    <Interactivity:Interaction.Behaviors>
        <local:SelectListViewItemWhenElementGotFocusBehavior ListView="{Binding ElementName=DirectionEntryList}" />
    </Interactivity:Interaction.Behaviors>
</AutoSuggestBox>
+5

, , ListViewItem . WPF, Style.Triggers UWP.

UWP ViewState.Setters GotFocus LostFocus.

:

<Page
    x:Class="UWPApp.MainPage"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:UWPApp"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d">
    <Grid 
        x:Name="container"
        Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
        <VisualStateManager.VisualStateGroups>
            <VisualStateGroup x:Name="ValueStates">
                <VisualState x:Name="Selected">
                    <VisualState.Setters>
                        <Setter Target="button.Background" Value="Red"></Setter>
                    </VisualState.Setters>
                </VisualState>
                <VisualState x:Name="UnSelected">
                    <VisualState.Setters>
                        <Setter Target="button.Background" Value="Blue"></Setter>
                    </VisualState.Setters>
                </VisualState>
            </VisualStateGroup>
        </VisualStateManager.VisualStateGroups>
        <StackPanel>
            <TextBox x:Name="inputbox" GotFocus="inputbox_GotFocus" LostFocus="inputbox_LostFocus"></TextBox>
            <Button x:Name="button">Click Me</Button>
        </StackPanel>
    </Grid>
</Page>

#:

private void inputbox_GotFocus(object sender, Windows.UI.Xaml.RoutedEventArgs e)
{
    VisualStateManager.GoToState(this, "Selected", false);
}

private void inputbox_LostFocus(object sender, RoutedEventArgs e)
{
    VisualStateManager.GoToState(this, "UnSelected", false);
}
0

Source: https://habr.com/ru/post/1610421/


All Articles