代码之家  ›  专栏  ›  技术社区  ›  Azhar

存在项模板问题的WPF列表框

  •  0
  • Azhar  · 技术社区  · 14 年前

    我有一个列表框,正在尝试用它绑定数据表。我调试代码,数据表中有数据,但它不显示数据列表中的数据。

    <Window.Resources>
        <local:myCurrencyColor x:Key="CurrColor"></local:myCurrencyColor>
    </Window.Resources>
    
    <Grid Name="grid1">        
        <ListBox Margin="28,111,130,24" Name="listBox1" >
            <ListBox.ItemTemplate>
                <DataTemplate>                    
                    <Label Content="{Binding Path=FullName}" Background="{Binding Path=Salary, Converter={StaticResource CurrColor}}" ></Label>                                            
                </DataTemplate>
            </ListBox.ItemTemplate>
        </ListBox>
    </Grid>
    

    .

    private void Window_Loaded(object sender, RoutedEventArgs e)
    {
         // dt.Columns.Add(new DataColumn("FullName", typeof(String)));
         // dt.Columns.Add(new DataColumn("Salary", typeof(Decimal)));
    
          DataTable dt = GetEmployees();  // it has Salary and Fullname Columns
    
          grid1.DataContext = dt;
    }
    

      [ValueConversion(typeof(decimal), typeof(Brush))]
      public class myCurrencyColor : IValueConverter
      {
           public object Convert(object value, Type tp, object obj, System.Globalization.CultureInfo cul)
           {
                decimal dml = (decimal)value;
                if(dml < 5)
                    return new SolidColorBrush(Colors.Aqua);
                if (dml < 10)
                    return new SolidColorBrush(Colors.Azure);
                if (dml < 15)
                    return new SolidColorBrush(Colors.BurlyWood);
                if (dml < 20)
                    return new SolidColorBrush(Colors.Goldenrod);
                return new SolidColorBrush(Colors.HotPink);
            }
            public object ConvertBack(object value, Type tp, object obj, System.Globalization.CultureInfo cul)
            {
                throw new NotImplementedException();
            }
       }
    
    2 回复  |  直到 14 年前
        1
  •  2
  •   Wonko the Sane    14 年前

    您没有将项目绑定到列表。

    尝试添加项源:

    <ListBox ItemsSource="{Binding}" 
             Margin="28,111,130,24" 
             Name="listBox1" >
          .....
    </ListBox>
    
        2
  •  0
  •   Kishore Kumar    14 年前

    试试看

    grid1.ItemsSource=dt.DefaultView;