Hỏi đáp
Chia sẻ kiến thức, cùng nhau phát triển
Không thể binding datatemplate
11:22 29-04-2017
916 lượt xem
3 bình luận
15:22 29-04-2017
<Window x:Class="DoAnWPF.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:DoAnWPF"
mc:Ignorable="d"
Foreground="#ffffff"
Background="#151515"
Title="MainWindow"
WindowState="Maximized" WindowStartupLocation="CenterScreen"
>
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="150">
</ColumnDefinition>
<ColumnDefinition>
</ColumnDefinition>
</Grid.ColumnDefinitions>
<StackPanel Grid.Column="1" Orientation="Vertical">
<GroupBox>
<GroupBox.Header>
<TextBlock FontWeight="Bold" FontSize="15">Sản phẩm mới</TextBlock>
</GroupBox.Header>
</GroupBox>
<GroupBox>
<GroupBox.Header>
<TextBlock FontWeight="Bold" FontSize="15">Sản phẩm bán chạy</TextBlock>
</GroupBox.Header>
<ListView x:Name="lstsanpham" Height="200">
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<UniformGrid Columns="5">
</UniformGrid>
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
<ListView.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal">
<Image ></Image>
<StackPanel Orientation="Vertical">
<TextBlock ></TextBlock>
<TextBlock Text="{Binding Path=IDSP}"></TextBlock>
<Button Content="Xem chi tiết"></Button>
</StackPanel>
</StackPanel>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
</GroupBox>
<GroupBox>
<GroupBox.Header>
<TextBlock FontWeight="Bold" FontSize="15">Sản phẩm xem nhiều</TextBlock>
</GroupBox.Header>
<ListView x:Name="lvSPXemNhieu" >
<ItemsControl Name="itmSPXemNhieu">
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<WrapPanel Orientation="Horizontal" VerticalAlignment="Center" HorizontalAlignment="Center"/>
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
<ItemsControl.ItemTemplate>
<DataTemplate>
<StackPanel x:Name="stpSPXemNhieu" >
<Border BorderBrush="Maroon" BorderThickness="0" Height="220" Width="270">
<Image x:Name="imgSPXemNhieu" Source="{Binding IDSP}" Width="240" Height="200" Stretch="Uniform" Cursor="Hand"></Image>
</Border>
<StackPanel Margin="5,2,0,0">
<WrapPanel>
<WrapPanel Height="30">
<TextBlock x:Name="tbTenSPXemNhieu" Text="{Binding TenSP}" FontSize="20" FontFamily="Palatino Linotype" FontWeight="Bold" HorizontalAlignment="Left" VerticalAlignment="Center" Foreground="#400000"></TextBlock>
</WrapPanel>
</WrapPanel>
<WrapPanel Height="30">
<TextBlock x:Name="tbSoLuotXemSP" Text="Số lượt xem : " FontSize="20" FontFamily="Palatino Linotype" FontWeight="Bold" HorizontalAlignment="Right" VerticalAlignment="Center" Foreground="#400000" />
<TextBlock x:Name="tbSoLuotXem" Text="{Binding SoLuotXem}" FontSize="20" FontFamily="Palatino Linotype" FontWeight="Bold" HorizontalAlignment="Left" VerticalAlignment="Center" Foreground="#400000" />
</WrapPanel>
<WrapPanel Height="30">
<Button x:Name="btnXemChiTiet" Content="Xem chi tiết" FontSize="20" FontFamily="Palatino Linotype" FontWeight="Bold" HorizontalAlignment="Left" VerticalAlignment="Center" Foreground="#400000"></Button>
</WrapPanel>
</StackPanel>
</StackPanel>
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
</ListView>
</GroupBox>
</StackPanel>
<!--menu-->
<StackPanel Orientation="Vertical" Grid.Column="0">
<GroupBox>
<GroupBox.Header>
<TextBlock FontWeight="Bold" FontSize="15">Loại sản phẩm</TextBlock>
</GroupBox.Header>
</GroupBox>
<GroupBox>
<GroupBox.Header>
<TextBlock FontWeight="Bold" FontSize="15">Nhà sản xuất</TextBlock>
</GroupBox.Header>
</GroupBox>
</StackPanel>
</Grid>
</Window>
MyComputerEntities db = new MyComputerEntities();
public MainWindow()
{
InitializeComponent();
lvSPXemNhieu.Items.Clear();
var listsp = (from t in db.SanPhams select t).Take(10);
List<SanPham> SPXemNhieu = listsp.ToList();
lvSPXemNhieu.ItemsSource = SPXemNhieu;
}
Anh chị nào có thể giúp em với . Em chạy chương trình lên nó không thể binding ra được sản phẩm mặc dù itemsource có dữ liệu .
Lỗi hiển thị {System.Data.Entity.DynamicProxies.SanPham_ 435AB5C4C1D7C5992C467BFB685A740 A099B59E7CE703B591C396B3ACDD36643}
Mong anh chị giúp đỡ
Em cảm ơn nhiều
Có một cách debug từ từ cho bạn với các trường hợp này.
Thay vì Binding cả cái sản phẩm đó. Bạn thử đổ vào 1 List<String> và binding nó xem có hiển thị giá trị k.
1. Không hiển thị tức là bạn binding sai cách
2. hiển thị tức là cái sản phẩm kia của bạn không binding được