Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Welcome to Software Development on Codidact!

Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.

How to dynamically change panel of ItemsControl?

+5
−0

Let's say I have some collection of data. My goal is to provide different kind of view of ItemsControl depending on user`s preference.

For simplicity, we can assume that user can select only between two states - horizontal & vertical.

MCVE

public enum ViewType { H, V }

public class MainWindowViewModel : ViewModelBase
{
    private ViewType _viewType;

    public MainWindowViewModel()
    {
        Values = Enumerable.Range(0, 20).Select(v => v.ToString());
        ViewTypes = new[] { ViewType.H, ViewType.V };
        ViewType = ViewTypes[0];
    }

    public ViewType ViewType
    {
        get => _viewType;
        set => this.RaiseAndSetIfChanged(ref _viewType, value);
    }
    public IEnumerable<string> Values { get; }
    public ViewType[] ViewTypes { get; }
}
  <Grid RowDefinitions="*,Auto">
    <ItemsControl Items="{Binding Values}"
                  Grid.Row="0" />
    <ComboBox Items="{Binding ViewTypes}"
              Grid.Row="1"
              SelectedItem="{Binding ViewType}"/>
  </Grid>

But I wasn't able to find a way to define selector for ItemsPanelTemplate.


When I tried to use converter:

ItemsPanel="{Binding ViewType, Converter={StaticResource ResourceKey=converter}}"
public class ViewTypePanelConverter : IValueConverter
{
    public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
    {
        var template = new ItemsPanelTemplate()
        {
            Content = new Func<IServiceProvider, ControlTemplateResult>( _ => {
                var content =
                    value switch
                    {
                        ViewType.V => new StackPanel { Orientation = Orientation.Vertical },
                        ViewType.H => new StackPanel { Orientation = Orientation.Horizontal },
                        _ => throw new NotImplementedException(),
                    };
                return new ControlTemplateResult(content, new NameScope());
            })
        };
        return template;
    }

    public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
    {
        throw new NotImplementedException();
    }
}

it has zero effect.


This Q is inspired by Use DataTemplate for ItemsControl.ItemsPanel #7268 discussion from Avalonia project repo.

History
Why does this post require moderator attention?
You might want to add some details to your flag.
Why should this post be closed?

1 comment thread

as (2 comments)

1 answer

+3
−0

This isn't the cleanest approach but at least it works.

One can define two different templates (each of them contains ItemsControl with single difference in ItemsPanelTemplate) and switch between them as needed with a simple "selector":

C#:

public class ViewTypeTemplateSelector : IDataTemplate
{
    [Content]
    public Dictionary<ViewType, IDataTemplate> Templates { get; }
        = new Dictionary<ViewType, IDataTemplate>();
    public IControl Build(object data) => Templates[(ViewType)data].Build(data);
    public bool Match(object data) => data is ViewType;
}

xaml:

    <ContentControl Grid.Row="0" Content="{Binding ViewType}">
      <ContentControl.Resources>
          <DataTemplate x:Key="itemTemplate">
            <TextBlock Text="{Binding}" Margin="2" Padding="2"/>
          </DataTemplate>
        </ContentControl.Resources>
      <ContentControl.DataTemplates>
        <views:ViewTypeTemplateSelector>
          <DataTemplate x:Key="H">
            <ItemsControl ItemTemplate="{StaticResource ResourceKey=itemTemplate}" Items="{Binding Values}" DataContext="{Binding $parent[Window].DataContext}">
              <ItemsControl.ItemsPanel>
                <ItemsPanelTemplate>
                  <StackPanel Orientation="Horizontal"/>
                </ItemsPanelTemplate>
              </ItemsControl.ItemsPanel>
            </ItemsControl>
          </DataTemplate>
          <DataTemplate x:Key="V">
            <ItemsControl ItemTemplate="{StaticResource ResourceKey=itemTemplate}" Items="{Binding Values}" DataContext="{Binding $parent[Window].DataContext}">
              <ItemsControl.ItemsPanel>
                <ItemsPanelTemplate>
                  <StackPanel Orientation="Vertical"/>
                </ItemsPanelTemplate>
              </ItemsControl.ItemsPanel>
            </ItemsControl>
          </DataTemplate>
        </views:ViewTypeTemplateSelector>
      </ContentControl.DataTemplates>
    </ContentControl>
History
Why does this post require moderator attention?
You might want to add some details to your flag.

0 comment threads

Sign up to answer this question »