gpt4 book ai didi

c# - 在 WPF 的代码隐藏中为 ListBox 创建 ItemTemplate

转载 作者:行者123 更新时间:2023-11-30 15:29:52 26 4
gpt4 key购买 nike

我正在尝试以编程方式为 ListBox 创建 ItemTemplate,但它不起作用。我知道在 XAML 中我可以有类似的东西:

<ListBox x:Name="listbox" BorderThickness="0" Margin="6" Height="400">
<ListBox.ItemTemplate>
<DataTemplate>
<TextBlock Margin="0" Background="Red" Foreground="White" FontSize="18" Text="{Binding}" />
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>

但是当我尝试以编程方式获得上述结果时,我遇到了绑定(bind) TextBox.TextProperty 的问题:

var textblock = new FrameworkElementFactory(typeof(TextBlock));

// Setting some properties
textblock.SetValue(TextBlock.TextProperty, ??);
var template = new ControlTemplate(typeof(ListBoxItem));
template.VisualTree = textblock;

请帮我解决这个问题。我在网上找不到任何相关信息。

提前致谢。

最佳答案

尝试在 Binding 中使用点 .,这等同于 {Binding}

例子:

XAML

<Window x:Class="MyNamespace.MainWindow"
...
Loaded="Window_Loaded">

<ListBox Name="MyListBox" ... />
</Window>

代码隐藏

public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}

private void Window_Loaded(object sender, RoutedEventArgs e)
{
var textBlockFactory = new FrameworkElementFactory(typeof(TextBlock));
textBlockFactory.SetValue(TextBlock.TextProperty, new Binding(".")); // Here
textBlockFactory.SetValue(TextBlock.BackgroundProperty, Brushes.Red);
textBlockFactory.SetValue(TextBlock.ForegroundProperty, Brushes.Wheat);
textBlockFactory.SetValue(TextBlock.FontSizeProperty, 18.0);

var template = new DataTemplate();
template.VisualTree = textBlockFactory;

MyListBox.ItemTemplate = template;
}
}

关于c# - 在 WPF 的代码隐藏中为 ListBox 创建 ItemTemplate,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23079496/

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