【WPF】Combox 下拉选项增加图片显示 ItemTemplate
2021-01-09 07:30
标签:task inpu bsp click 选项 org mes load clr 效果图如上所示: 前端Xmal代码: 后端代码: PS.喜欢动漫的,可以关注下我的BT网站(下载动漫):维基BT www.wikibt.com 【WPF】Combox 下拉选项增加图片显示 ItemTemplate 标签:task inpu bsp click 选项 org mes load clr 原文地址:https://www.cnblogs.com/mqxs/p/13098635.htmlWindow x:Class="WpfTest.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:WpfTest"
mc:Ignorable="d"
Title="MainWindow" Height="350" Width="525">
Grid>
StackPanel>
Button Content="www.wikibt.com" Click="Button_Click">Button>
ComboBox ItemsSource="{Binding Items}" SelectedItem="{Binding CurrentItem}">
ComboBox.ItemTemplate>
DataTemplate>
StackPanel Orientation="Horizontal">
Image Source="/images/www.wikibt.com.png">Image>//此处图片路径写死了,可以用绑定实现不一样的图片{Binding ItemImage}
TextBlock Text="{Binding ItemName}" VerticalAlignment="Center" HorizontalAlignment="Center">TextBlock>
StackPanel>
DataTemplate>
ComboBox.ItemTemplate>
ComboBox>
StackPanel>
Grid>
Window>
using RevitTask;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace WpfTest
{
///
文章标题:【WPF】Combox 下拉选项增加图片显示 ItemTemplate
文章链接:http://soscw.com/index.php/essay/41115.html