WPF アプリケーションがあります。以下のような機能が必要です。ユーザー名と各ユーザーの前に1 つのボタンを含む 1 つのフォームが必要です。データベースに10人のユーザーがいる場合、ウィンドウのロード時にこの10人のユーザーが表示され、各ユーザーの前に表示ボタンが表示されます。
質問する
75 次
1 に答える
1
とを含む を使用および作成できますListBox
。DataTemplate
Label
Button
例:
Xaml:
<Window x:Class="WpfApplication16.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:WpfApplication16"
Title="MainWindow" Height="350" Width="525" Name="UI">
<Window.Resources>
<!-- DataTemplate for User object -->
<DataTemplate DataType="{x:Type local:User}" >
<Border CornerRadius="3" BorderBrush="Black" BorderThickness="1" Margin="2" >
<StackPanel Orientation="Horizontal">
<TextBlock Text="{Binding UserName}" Width="100"/>
<Button Content="Show User" Width="100" Margin="2"/>
</StackPanel>
</Border>
</DataTemplate>
</Window.Resources>
<Grid DataContext="{Binding ElementName=UI}">
<!-- The ListBox -->
<ListBox ItemsSource="{Binding Users}" />
</Grid>
</Window>
コード:
public partial class MainWindow : Window
{
private ObservableCollection<User> _users = new ObservableCollection<User>();
public MainWindow()
{
InitializeComponent();
// Load users
for (int i = 0; i < 10; i++)
{
Users.Add(new User { UserName = "User " + i });
}
}
public ObservableCollection<User> Users
{
get { return _users; }
set { _users = value; }
}
}
public class User
{
public string UserName { get; set; }
}
結果
于 2013-02-14T07:34:14.310 に答える