使用具有可变宽度元素的 GridView

Using GridView with variable width elements

我有一个 GridView 并且需要将宽度元素设置为 Stretch 作为它的内容,现在我的 Gridview 看起来像这个图像

我想要这样的东西:

我认为可以将 ItemsTemplate 更改为 StackPanel,但网上找到的一些示例对我来说不够清晰。

如何更改 ItemsTemplate 以获得我想要的行为?

还有另一个 XAML 控件可以实现这种行为吗?

注意:我正在使用 VS 2015,执行 UWP 应用程序。

看看这个:

<Window x:Class="WpfApplication1.MainWindow"
        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:local="clr-namespace:WpfApplication1"
        mc:Ignorable="d"
        Title="MainWindow" Height="350" Width="525" Loaded="Window_Loaded">
    <Window.Resources>

        <DataTemplate x:Key="myTemplate"> 
            <StackPanel>
                <TextBlock Text="{Binding}"></TextBlock>
            </StackPanel>
        </DataTemplate>
    </Window.Resources>
    <ItemsControl  ItemTemplate="{StaticResource myTemplate}" ItemsSource="{Binding List}">
        <ItemsControl.ItemsPanel>
            <ItemsPanelTemplate>
                <StackPanel Orientation="Horizontal"/>
            </ItemsPanelTemplate>
        </ItemsControl.ItemsPanel>
    </ItemsControl>


</Window>

在后面的代码中我要模拟这个:

using System.Collections.Generic;
using System.Windows;

namespace WpfApplication1
{
    /// <summary>
    /// Interaction logic for MainWindow.xaml
    /// </summary>
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            this.List = new List<string> { "Quien", "vie", "ne", "en", "su", "nom", "bre" };
            InitializeComponent();
            this.DataContext = this;
        }

        public List<string> List { get; set; }

        private void Window_Loaded(object sender, RoutedEventArgs e)
        {


        }
    }
}