如何在WPF列表框窗口中使用以下代码。它在正常的Win表单列表框中工作正常,所以我想在WPF窗口上进行测试,但我得到错误说
'System.Windows.Controls.ListBox'不包含'SelectedIndices'的定义,并且没有扩展方法'SelectedIndices'接受类型'System.Windows.Controls.ListBox'的第一个参数可以找到(你错过了吗?) using指令或程序集引用?)
这是我原来的代码
private void listBox1_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
try
{
this.textBox1.Text = people[listBox1.SelectedIndices[0]].name;
this.connectbox.Text = people[listBox1.SelectedIndices[0]].ipaddress;
}
catch
{
}
答案 0 :(得分:0)
这是我所说的“WPF Mentality”的一个例子,它与将所有逻辑和UI混合在一起的古老winforms心态有很大不同:
<Window x:Class="WpfApplication4.Window11"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Window11" Height="300" Width="300">
<DockPanel>
<Button DockPanel.Dock="Top" Content="Copy" Command="{Binding CopyCommand}"/>
<UniformGrid Columns="2">
<ListBox ItemsSource="{Binding Items}" SelectionMode="Extended">
<ListBox.ItemContainerStyle>
<Style TargetType="{x:Type ListBoxItem}">
<Setter Property="IsSelected" Value="{Binding Mode=TwoWay, Path=IsSelected}"/>
</Style>
</ListBox.ItemContainerStyle>
</ListBox>
<ListBox ItemsSource="{Binding SelectedItems}"/>
</UniformGrid>
</DockPanel>
</Window>
代码背后:
using System.Linq;
using BaseWPFFramework.MVVM;
using System.Collections.ObjectModel;
namespace WpfApplication4
{
public partial class Window11
{
public Window11()
{
InitializeComponent();
DataContext = new ListViewModel();
}
}
}
视图模型:
public class ListViewModel: ViewModelBase
{
private ObservableCollection<Selectable<string>> _items;
public ObservableCollection<Selectable<string>> Items
{
get { return _items ?? (_items = new ObservableCollection<Selectable<string>>()); }
}
private ObservableCollection<string> _selectedItems;
public ObservableCollection<string> SelectedItems
{
get { return _selectedItems ?? (_selectedItems = new ObservableCollection<string>()); }
}
private DelegateCommand _copyCommand;
public DelegateCommand CopyCommand
{
get { return _copyCommand ?? (_copyCommand = new DelegateCommand(Copy)); }
}
private void Copy()
{
SelectedItems.Clear();
Items.Where(x => x.IsSelected).Select(x => x.Value).ToList().ForEach(SelectedItems.Add);
}
public ListViewModel()
{
Enumerable.Range(1, 100).Select(x => new Selectable<string>("Item" + x.ToString())).ToList().ForEach(x => Items.Add(x));
}
}
public class Selectable<T>: ViewModelBase
{
private T _value;
public T Value
{
get { return _value; }
set
{
_value = value;
NotifyPropertyChange(() => Value);
}
}
private bool _isSelected;
public bool IsSelected
{
get { return _isSelected; }
set
{
_isSelected = value;
NotifyPropertyChange(() => IsSelected);
}
}
public Selectable(T value)
{
Value = value;
}
public Selectable(T value, bool isSelected): this(value)
{
IsSelected = isSelected;
}
public override string ToString()
{
return Value != null ? Value.ToString() : string.Empty;
}
}
只需将我的代码复制并粘贴到File -> New -> WPF Application
中,然后自行查看结果。
请注意,我使用的是通用解决方案(Selectable<T>
),因此您可以将其用于所需的任何类。
另外,请不要在WPF中执行以下操作:this.textBox1.Text = whatever
。 WPF鼓励分离UI和数据,您必须了解UI Is Not Data才能正确使用WPF。如果您期望WPF取得好成绩,请留下winforms的心态。
相反,要么创建一个合适的ViewModel来保存文本框中显示的数据,要么将文本框直接绑定到SelectedItems
的实例,如我的示例所示。
作为一个偏离主题的评论,normal
方式不再是winforms方式。所有最新的(< 10 Years
)技术(WPF,Silverlight,WinRT)都是基于XAML的,并鼓励使用MVVM。
这意味着winforms方式现在是old
方式,而不是normal
方式。