Visual Studio/WPF > 컨트롤 > ListBox > SelectedItems 보기
9537 단어 myVisualStudioStudy#migrated
Windows 7 Pro (32bit)
Microsoft Visual Studio 2017 Community
Sublime Text 2
@ WPF 4.5 입문 by 오타 카즈키
No.4387/9985
ListBox 컨트롤은 하나 이상의 항목을 사용자에게 선택할 수 있는 컨트롤입니다.
시도해 보았다.
선택한 리스트박스 항목을 표시하도록 해보았다.
참고 : h tp : / / s t c ゔ rf ぉ w. 코 m / 쿠에 s 치온 s / 15003095 / 곁치 g
XAML
<Window x:Class="_170426_t0650_listbox.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:_170426_t0650_listbox"
mc:Ignorable="d"
Title="MainWindow" Height="350" Width="525">
<Grid Margin="0,1,0,-1">
<StackPanel>
<ListBox x:Name="listbox1"
Height="250"
SelectionMode="Multiple">
<ListBox.ItemTemplate>
<DataTemplate>
<TextBlock Text="{Binding Name}"/>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
<Button x:Name="button1" Height="40" Width="200" Content="Button1" Click="Button_Click"/>
</StackPanel>
</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 _170426_t0650_listbox
{
/// <summary>
/// MainWindow.xaml の相互作用ロジック
/// </summary>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
var data = new List<myList>();
data.Add(new myList { Name = "List1" });
data.Add(new myList { Name = "List2" });
data.Add(new myList { Name = "List3" });
data.Add(new myList { Name = "List4" });
data.Add(new myList { Name = "List5" });
listbox1.ItemsSource = data;
}
private void Button_Click(object sender, RoutedEventArgs e)
{
string msg = "";
foreach(var elem in listbox1.SelectedItems)
{
myList alist = (myList)elem;
msg = msg + "\r\n" + alist.Name;
}
MessageBox.Show(msg);
}
}
public class myList
{
public string Name { get; set; }
}
}
3->4->1을 선택하면 위와 같이 SelectedItems에 저장되었다.
Reference
이 문제에 관하여(Visual Studio/WPF > 컨트롤 > ListBox > SelectedItems 보기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/7of9/items/24161f68875c36eca2d8텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)