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.

Post History

77%
+5 −0
Q&A How to dynamically change panel of ItemsControl?

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 betwe...

1 answer  ·  posted 2y ago by FoggyFinder‭  ·  edited 2y ago by FoggyFinder‭

Question c# .net mvvm avalonia
#2: Post edited by user avatar FoggyFinder‭ · 2022-01-01T10:00:55Z (over 2 years ago)
fix tag
#1: Initial revision by user avatar FoggyFinder‭ · 2021-12-31T17:07:54Z (over 2 years ago)
How to dynamically change panel of ItemsControl?
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

```csharp
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; }
}
```

```xml
  <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:

```xml
ItemsPanel="{Binding ViewType, Converter={StaticResource ResourceKey=converter}}"
```

```csharp
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](https://github.com/AvaloniaUI/Avalonia/discussions/7268) discussion from [`Avalonia`](https://github.com/AvaloniaUI/Avalonia) project repo.