WPF:组合框数据模板

发布于 2024-12-08 04:50:52 字数 1040 浏览 1 评论 0原文

XAML:

 <dxe:ComboBoxEdit x:Name="UserSelectComboBox" Margin="68.497,31.75,0,48.213" 
  Background=   {DynamicResource TextBoxBackground}" Height="{DynamicResource 
  TextBoxHeight}" FontSize="{DynamicResource TextFontSize}" 
  HorizontalAlignment="Left" Width="149.333" Text="{Binding  
  SelectedItemValue, ElementName=UserSelectComboBox, Mode=OneWay}">
  <dxe:ComboBoxEdit.ItemTemplate>
        <DataTemplate>
    <StackPanel Orientation="Horizontal">
      <Image Source="{Binding UImages, Converter=   {StaticResource 
              byteToImageConverter}}" Width="40" Height="40"/>
      <TextBlock Text="{Binding UId}" Margin="5,0,0,0"/>
    </StackPanel>
    </DataTemplate>
  </dxe:ComboBoxEdit.ItemTemplate>
</dxe:ComboBoxEdit>

我正在使用 DevExpress ComboBox。当我选择组合框中的任何项目时,其文本将显示 Procesta.CvServer.Class.Propertys.UserTeamView 这是我的绑定源的名称。

在此处输入图像描述

我只想显示 UId。

XAML:

 <dxe:ComboBoxEdit x:Name="UserSelectComboBox" Margin="68.497,31.75,0,48.213" 
  Background=   {DynamicResource TextBoxBackground}" Height="{DynamicResource 
  TextBoxHeight}" FontSize="{DynamicResource TextFontSize}" 
  HorizontalAlignment="Left" Width="149.333" Text="{Binding  
  SelectedItemValue, ElementName=UserSelectComboBox, Mode=OneWay}">
  <dxe:ComboBoxEdit.ItemTemplate>
        <DataTemplate>
    <StackPanel Orientation="Horizontal">
      <Image Source="{Binding UImages, Converter=   {StaticResource 
              byteToImageConverter}}" Width="40" Height="40"/>
      <TextBlock Text="{Binding UId}" Margin="5,0,0,0"/>
    </StackPanel>
    </DataTemplate>
  </dxe:ComboBoxEdit.ItemTemplate>
</dxe:ComboBoxEdit>

I am using DevExpress ComboBox. When I select any item in the ComboBox then its text shows Procesta.CvServer.Class.Propertys.UserTeamView which is my binding source's name.

enter image description here

I want to show only UId.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

划一舟意中人 2024-12-15 04:50:52

您正在将 Text 绑定到 SelectedItemValue。尝试绑定到 SelectedItemValue.UId

You are binding Text to SelectedItemValue. Try binding to SelectedItemValue.UId instead.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文