Visual Studio/WPF > 컨트롤 > ComboBox > ItemTemplate에서 외형 정의/IsEditable

운영 환경
Windows 7 Pro (32bit)
Microsoft Visual Studio 2017 Community
Sublime Text 2

@ WPF 4.5 입문 by 오타 카즈키
No.4260/9985

ComboBox의 기본 사용법은 ItemsSource 속성에 개체 컬렉션을 설정하여 ItemTemplate에서 모양을 정의하는 방법입니다.

시도해 보았습니다.



XAML
<Window x:Class="_170425_t2100_combobox.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:_170425_t2100_combobox"
        mc:Ignorable="d"
        Title="MainWindow" Height="350" Width="525">
    <Grid>
        <ComboBox x:Name="comboBox1" Height="40">
            <ComboBox.ItemTemplate>
                <DataTemplate>
                    <StackPanel Orientation="Horizontal">
                        <TextBox Text="{Binding Name}/>
                        <TextBox Text="{Binding Age}"/>
                    </StackPanel>
                </DataTemplate>
            </ComboBox.ItemTemplate>
        </ComboBox>        
    </Grid>
</Window>

MainWindow.xaml.cs
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 _170425_t2100_combobox
{
    /// <summary>
    /// MainWindow.xaml の相互作用ロジック
    /// </summary>
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
            var data = new List<Person>();
            data.Add(new Person { Name = "item1", Age = 10 });
            data.Add(new Person { Name = "item2", Age = 20 });
            data.Add(new Person { Name = "item3", Age = 30 });

            comboBox1.ItemsSource = data;
        }
    }

    public class Person
    {
        public string Name { get; set; }
        public int Age { get; set; }
    }
}



외형이 나쁘다.
프로덕션 코드로 사용하도록 하는 경우, 상기의 이상한 표시를 회피하는 방법을 찾아야 한다.

IsEditable



IsEditable을 True로 설정하고 TextSearch.TextPath를 Name으로 설정해 보았습니다.

XAML
<Window x:Class="_170425_t2100_combobox.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:_170425_t2100_combobox"
        mc:Ignorable="d"
        Title="MainWindow" Height="350" Width="525">
    <Grid>
        <ComboBox x:Name="comboBox1" IsEditable="True"
                  TextSearch.TextPath="Name"
                  Height="40">
            <ComboBox.ItemTemplate>
                <DataTemplate>
                    <StackPanel Orientation="Horizontal">
                        <TextBox Text="{Binding Name}"/>
                        <TextBox Text="{Binding Age}"/>
                    </StackPanel>
                </DataTemplate>
            </ComboBox.ItemTemplate>
        </ComboBox>        
    </Grid>
</Window>

선택 후의 표시가 Name만의 표시가 되어 버렸다.

좋은 웹페이지 즐겨찾기