gpt4 book ai didi

c# - 将项目添加到自定义列表框

转载 作者:太空宇宙 更新时间:2023-11-03 10:38:49 25 4
gpt4 key购买 nike

我有这个 ListBoxItem 模板,其中包含一个 ImageTextBlock。如何通过代码将项目添加到此 ListBox?

<ListBox Name="listBox">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal" >
<Image Source="{Binding}" Width="16" />
<TextBlock Text="{Binding}" Margin="5,0,0,0" />
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>

最佳答案

我假设您希望拥有一个类,该类在行中具有图像源和文本属性

public class TestClass()
{
public string ImageSrc {get; set;}
public string DisplayText {get; set;}
}

将对象添加到您的收藏中

listBox.Items.Add(new TestClass() { ImageSrc = "blahblah", DisplayTest = "Test Display Text" });

等等

然后你可以在行中使用xaml

<ListBox Name="listBox">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal" >
<Image Source="{Binding ImageSrc}" Width="16" />
<TextBlock Text="{Binding DisplayText}" Margin="5,0,0,0" />
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>

关于c# - 将项目添加到自定义列表框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26330074/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com