gpt4 book ai didi

wpf - 在 WPF/Silverlight 中将 ComboBox 作为 TextBlock 呈现

转载 作者:行者123 更新时间:2023-12-03 15:45:37 26 4
gpt4 key购买 nike

我想将 ComboBox 显示为 TextBox(没有边框、背景、切换按钮等) - 仅当前选定的项目文本。
我喜欢这个,但我不明白如何链接 TextBlock,以便它在 ComboBox 中显示当前选定的项目。

<ComboBox ItemsSource="{Binding Path=...}" SelectedValue="{Binding Path=...}" DisplayMemberPath="Name" SelectedValuePath="Id">
<ComboBox.Template>
<ControlTemplate>
<TextBlock Text="{Binding ?}"></TextBlock>
</ControlTemplate>
</ComboBox.Template>
</ComboBox>

最佳答案

<ComboBox ItemsSource="{Binding Path=...}" SelectedValue="{Binding Path=...}" DisplayMemberPath="Name" SelectedValuePath="Id">
<ComboBox.Template>
<ControlTemplate>
<TextBlock Text="{Binding SelectedItem.MyText,RelativeSource={RelativeSource Mode=TemplatedParent}}"></TextBlock>
</ControlTemplate>
</ComboBox.Template>

关于wpf - 在 WPF/Silverlight 中将 ComboBox 作为 TextBlock 呈现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14024336/

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