使用 C# 的多列下拉列表

发布于 2024-09-16 15:54:20 字数 155 浏览 4 评论 0原文

我想将数据(例如:员工姓名、员工 ID)绑定到下拉列表,并且数据应在下拉列表中显示为两列。我不想使用任何特殊字符(如|)来分隔这些列。或者 '-'。我想将它们显示为下拉列表中的不同列。

我如何使用 .net 以及我需要使用 SQL Server 2008 检索的数据来实现此目的。

I want to bind data(For ex: Employee name, Employee ID from Employee) to a dropdownlist and the data should be displayed in dropdownlist as two columns. I don't want to separate this columns by using any special characters like | or '-'. I want to display them as different columns in a dropdownlist.

How can i achieve this using .net and the data i need to retrieve using SQL server 2008.

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

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

发布评论

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

评论(2

听风念你 2024-09-23 15:54:21

我使用了这篇文章并基本上创建了我自己的。它工作得很好,只是我无法立即显示下拉图标。仅当您将鼠标悬停在控件上时才会显示。我确信我可以使用 css 和图标来做到这一点,但希望它是内置的。

http://www.thomasclaudiushuber.com/blog/2008/07/31/developing-multicolumn-dropdowndropdownlist-with -aspnet-the-gridview-and-the-ajax-control-toolkit/

I used this post and basically created my own. It works pretty good except that I can't get the drop down icon to display right away. It only displays when you hover over the control. I'm sure I could do it using css and an icon, but wish it was built in.

http://www.thomasclaudiushuber.com/blog/2008/07/31/developing-multicolumn-dropdowndropdownlist-with-aspnet-the-gridview-and-the-ajax-control-toolkit/

童话 2024-09-23 15:54:20

这是 WPF 组合框吗?如果是这样,请使用 ItemTemplate:

<ComboBox Height="23" Width="25" ItemsSource="{Binding Clients}" 
          SelectedValuePath="Client" SelectedItem="{Binding Client}">
    <ComboBox.ItemTemplate>
        <DataTemplate>
            <!-- Configure as required -->
            <StackPanel Orientation="Horizontal">
                <TextBlock Text="{Binding Name}" />
                <TextBlock Text="{Binding Id}" />
             </StackPanel>
        </DataTemplate>
    </ComboBox.ItemTemplate>
</ComboBox>

当然,您必须格式化 StackPanel(或 Grid,...)以获得所需的输出。

Is this a WPF ComboBox? If so, use the ItemTemplate:

<ComboBox Height="23" Width="25" ItemsSource="{Binding Clients}" 
          SelectedValuePath="Client" SelectedItem="{Binding Client}">
    <ComboBox.ItemTemplate>
        <DataTemplate>
            <!-- Configure as required -->
            <StackPanel Orientation="Horizontal">
                <TextBlock Text="{Binding Name}" />
                <TextBlock Text="{Binding Id}" />
             </StackPanel>
        </DataTemplate>
    </ComboBox.ItemTemplate>
</ComboBox>

Of course you have to format your StackPanel (or Grid, ...) to get desired output.

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