UWP TreeView - при обновлении данных за привязкой исчезает значок «Расширяемый» - PullRequest
0 голосов
/ 20 апреля 2020

С TreeView у меня есть структура Patient:

        private ObservableCollection<MTreeViewPaz> _Patients;

        public ObservableCollection<MTreeViewPaz> Patients
        {
            get { return _Patients; }
            private set { Set(ref _Patients, value); }
        }

и привязанный к нему TreeView:

            <winui:TreeView
                x:Name="treeView"
                Grid.Row="1"
                Expanding="treeView_Expanding"
                ItemInvoked="OnItemInvoked"
                ItemTemplate="{StaticResource ItemTemplate}"
                ItemsSource="{x:Bind Patients, Mode=OneWay}"
                SelectionMode="Single" />

с шаблоном элемента:

        <DataTemplate x:Key="ItemTemplate" x:DataType="model:MTreeViewBase">
            <winui:TreeViewItem IsExpanded="False" ItemsSource="{x:Bind Visits}">
                <controls1:TreeViewControl Data="{x:Bind}" />
            </winui:TreeViewItem>
        </DataTemplate>

и CustomControl:

<UserControl
    x:Class="TitoDoc2020.Views.TreeViewControl"
    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:local="using:TitoDoc2020.Views"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:model="using:TitoDoc2020.Models"
    d:DesignHeight="300"
    d:DesignWidth="400"
    mc:Ignorable="d">

    <UserControl.Resources>

        <DataTemplate x:Name="PAZTemplate" x:DataType="model:MTreeViewPaz">
            <StackPanel Orientation="Horizontal">
                <FontIcon
                    Margin="{StaticResource XXSmallTopRightBottomMargin}"
                    FontFamily="{StaticResource SymbolThemeFontFamily}"
                    Glyph="&#xE77B;" />
                <TextBlock
                    Margin="{StaticResource XXSmallTopRightBottomMargin}"
                    VerticalAlignment="Center"
                    Text="{x:Bind Name}" />
            </StackPanel>
        </DataTemplate>

        <DataTemplate x:Name="VisitTemplate" x:DataType="model:MTreeViewVisit">
            <StackPanel Orientation="Horizontal">
                <FontIcon
                    Margin="{StaticResource XXSmallTopRightBottomMargin}"
                    FontFamily="{StaticResource SymbolThemeFontFamily}"
                    Foreground="{x:Bind ImageColor}"
                    Glyph="{x:Bind ImageSrc}" />
                <TextBlock
                    Margin="{StaticResource XXSmallTopRightBottomMargin}"
                    VerticalAlignment="Center"
                    Text="{x:Bind VisitDescr}" />
            </StackPanel>
        </DataTemplate>

    </UserControl.Resources>

    <Grid>
        <ContentControl x:Name="MainContent" />
    </Grid>

</UserControl>

Затем у меня есть 4 AppBarTogleButton, чтобы выбрать порядок сортировки пациентов. Каждый из них вызывает одну и ту же процедуру:

        private async void AppBarToggleButton_Checked(object sender, RoutedEventArgs e)
        {
            string sorting = await ApplicationData.Current.LocalSettings.ReadAsync<string>("TreeViewSort");

            switch (((Windows.UI.Xaml.Controls.AppBarToggleButton)sender).Name)
            {
                case "DescDate":
                    if (sorting == "DescDate")
                    {
                        return;
                    }
                    AsceDate.IsChecked = false;
                    AsceAlph.IsChecked = false;
                    DescAlph.IsChecked = false;
                    break;
                case "AsceDate":
                    if (sorting == "AsceDate")
                    {
                        return;
                    }
                    DescDate.IsChecked = false;
                    AsceAlph.IsChecked = false;
                    DescAlph.IsChecked = false;
                    break;
                case "DescAlph":
                    if (sorting == "DescAlph")
                    {
                        return;
                    }
                    AsceDate.IsChecked = false;
                    DescDate.IsChecked = false;
                    AsceAlph.IsChecked = false;
                    break;
                case "AsceAlph":
                    if (sorting == "AsceAlph")
                    {
                        return;
                    }
                    AsceDate.IsChecked = false;
                    DescDate.IsChecked = false;
                    DescAlph.IsChecked = false;
                    break;
                default:
                    break;
            }
            await ApplicationData.Current.LocalSettings.SaveAsync("TreeViewSort", ((Windows.UI.Xaml.Controls.AppBarToggleButton)sender).Name);
            _sorting = ((Windows.UI.Xaml.Controls.AppBarToggleButton)sender).Name;
            await SortTreeAsync(false);
        }

и в SortTreeAsyn c:

        private async Task SortTreeAsync(bool setCheck)
        {
            ObservableCollection<MTreeViewPaz> _patients;

            if (treeView.Visibility == Visibility.Collapsed)
            {
                return;
            }
            treeView.Visibility = Visibility.Collapsed;
            switch (_sorting)
            {
                case "DescDate":
                    if (setCheck) DescDate.IsChecked = true;
                    Patients = new ObservableCollection<MTreeViewPaz>(
                        from i in Patients orderby i.Data descending, i.Cognome, i.Nome select i);
/*                    await treeView.Dispatcher.RunAsync(Windows.UI.Core.CoreDispatcherPriority.Normal, () =>
                       {
                           Patients = _patients;
                       });
 */
                    break;
                case "AsceDate":
                    if (setCheck) AsceDate.IsChecked = true;
                    Patients = new ObservableCollection<MTreeViewPaz>(
                        from i in Patients orderby i.Data, i.Cognome, i.Nome select i);
                    break;
                case "DescAlph":
                    if (setCheck) DescAlph.IsChecked = true;
                    Patients = new ObservableCollection<MTreeViewPaz>(
                        from i in Patients orderby i.Cognome descending, i.Nome descending, i.Data descending select i);
                    break;
                case "AsceAlph":
                    if (setCheck) AsceAlph.IsChecked = true;
                    Patients = new ObservableCollection<MTreeViewPaz>(
                        from i in Patients orderby i.Cognome, i.Nome, i.Data descending select i);
                    break;
                default:
                    DescDate.IsChecked = true;
                    break;
            }
            treeView.Visibility = Visibility.Visible;
            return;
        }

Я обновляю пациентов с новым отсортированным. Проблема заключается в том, что после того, как я изменил пару раз порядок сортировки>, чтобы развернуть средство удаления листьев: Correct with leafs

WRONG - no leaf sign

Я проверил, и структура данных абсолютно идентична (кроме порядка) и правильна

Как это возможно?

--- Дополнительная информация ---

Before sorting

This is the breakpoint after the sorting

After sorting

Как вы можете видеть дочерняя структура все еще там

1 Ответ

0 голосов
/ 23 апреля 2020

UWP TreeView - при обновлении данных за привязкой исчезает значок «Расширяемый»

Пожалуйста, отметьте эту строку <winui:TreeViewItem IsExpanded="False" ItemsSource="{x:Bind Visits}">, вы использовали x:Bind Модель OneTime, которая не отвечает * Свойство 1007 * изменено, отредактируйте его с помощью OneWay или TwoWay модель и , пожалуйста, убедитесь, что вы вызвали событие OnPropertyChanged для Visits свойство .

<winui:TreeViewItem IsExpanded="False" ItemsSource="{x:Bind Visits, Mode=OneWay}">

...