文本框文本到数据模板UWP

时间:2018-07-23 17:38:12

标签: c# listview uwp

我正在尝试将输入的文本添加到UWP的列表视图中。但是我所看到的只是按钮。

enter image description here

图片应显示输入的内容,BINXXX。如何将文本框文本绑定到列表视图的数据模板?这是我当前的XML。

        <ListView x:Name="binListView" HorizontalAlignment="Left" Height="411" Margin="370,139,0,0" VerticalAlignment="Top" Width="388">
        <ListView.ItemTemplate>
            <DataTemplate>
                <StackPanel Orientation="Horizontal">
                    <Button Width="32" Height="32" Tag="{Binding}" Click="Delete_Item" HorizontalAlignment="Right">
                        <Button.Background>
                            <ImageBrush ImageSource="Assets/rubbish-bin.png">
                            </ImageBrush>
                        </Button.Background>
                    </Button>
                    <TextBlock Text="Whatever my textbox says" />
                </StackPanel>
            </DataTemplate>
        </ListView.ItemTemplate>
    </ListView>

1 个答案:

答案 0 :(得分:1)

您需要为绑定到c#端列表的列表视图设置ItemSource属性,您可以在诸如TextDown或Keyup void TextBoxKeyDownEvent(object sender, KeyDowEventArgs args){ boundList.add(TextBoxNameHere.Text); }