将ListBox1中的多个项添加到绑定多个项ListBox2

时间:2017-07-29 18:38:26

标签: wpf listbox

我现在正在获得WPF的一些经验。但是,有一个问题我无法弄明白。在绑定列表框中添加或删除项目!我见过的所有例子都只显示了一个项目的集合。如果有人提供一个包含多个单项的集合示例,我将非常感激。

    interface DbInterface 
{

    ObservableCollection<fichaProduto> carregaFichaProduto(int? fichaId);

}
     public class fichaProduto
{
    public int fichaProdutoFichaId { get; set; }
    public int fichaProdutoProdutoId {get;set;}
    public string fichaProdutoProdutoNome { get; set; }
    public string fichaProdutoStatusId { get; set; }
    public string fichaProdutoStatusNome { get; set; }
    public string fichaProdutoOrdemServico { get; set; }
    public DateTime? fichaProdutoDataInstalacao { get; set; }
    public string fichaProdutoHorarioDe { get; set; }
    public string fichaProdutoHorarioAte { get; set; }
    public string fichaProdutoContrato { get; set; }
    public string fichaProdutoCodigoInstalacao { get; set; }
    public Decimal fichaProdutoValor { get; set; }
}
   class dbMysql : DbInterface
   {
    public ObservableCollection<fichaProduto> carregaFichaProduto(int? fichaId)
    {
        using (MySqlConnection smartConexaoDb = new MySqlConnection(smartSingleTon.connectionStringDb))
        {
            using (MySqlCommand cmd = new MySqlCommand("SELECT fc.id,pp.nome,st.nome,fp.os,fp.dia_instalacao,fp.horarioDe,fp.horarioAte,fp.contrato,fp.codigo_instalacao,fp.valor FROM ficha fc JOIN ficha_produto fp ON fc.id = fp.id_ficha LEFT JOIN ficha_produto fp2 ON (fc.id = fp2.id_ficha AND fp.id < fp2.id) JOIN produto_plano pp ON pp.id = fp.id_produto JOIN status st ON fp.id_status = st.id WHERE fc.id = @fichaId ORDER BY fc.id DESC", smartConexaoDb))
            {
                cmd.Parameters.AddWithValue("@fichaId", fichaId);
                smartConexaoDb.Open();

                using (MySqlDataReader dr = cmd.ExecuteReader())
                {
                    var listFichaProduto = new ObservableCollection<fichaProduto>();

                    while (dr.Read())
                    {
                        listFichaProduto.Add
                            (new fichaProduto()
                            {
                                fichaProdutoFichaId = Convert.ToInt32(dr.GetValue(0)),
                                fichaProdutoProdutoNome = Convert.ToString(dr.GetValue(1)),
                                fichaProdutoStatusNome = Convert.ToString(dr.GetValue(2)),
                                fichaProdutoOrdemServico = Convert.ToString(dr.GetValue(3)),
                                fichaProdutoHorarioDe = Convert.ToString(dr.GetValue(5)),
                                fichaProdutoHorarioAte = Convert.ToString(dr.GetValue(6)),
                                fichaProdutoContrato = Convert.ToString(dr.GetValue(7)),
                                fichaProdutoCodigoInstalacao = Convert.ToString(dr.GetValue(8)),
                                fichaProdutoValor = Convert.ToDecimal(dr.GetValue(9))
                            });
                    }
                    return listFichaProduto;
                }
            }
        }
    }
  }

obs:列表框2是从以下方法绑定的:

 public ObservableCollection<fichaProduto> carregaFichaProduto(int? fichaId)

它显示了fichaProduto类中的两个项目。 fichaProdutoProdutoNome和fichaProdutoValor。

ListBox 1绑定来自另一个更完整的ObservableCollection产品数据库查询的数据。

所以,从ListBox1开始,我想把它添加到ListBox2,甚至REMOVE然后从ListBox2。

我知道如何在WnForms中实现它,但现在不知道在WPF中。

谢谢!

1 个答案:

答案 0 :(得分:0)

所以我要做的是加载一个新的SQl查询来更新我的ObservableCollection列表并再次将它返回到ItemsSource。