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.
Comments on How to dynamically change panel of ItemsControl?
Post
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
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.
1 comment thread