2012-08-16 50 views
1

我的dataGrid中有一些行,当我选择其中一个并打印它的数据时,只有第一个数据库图像将打印,而我只需要打印选定行的图像,此代码段已错误在cmd.CommandText ..., 我该如何改进它?DataGrid行选择和打印其数据

private void Print_Click(object sender, RoutedEventArgs e) 
    { 
     System.Windows.Controls.PrintDialog printDialog = new System.Windows.Controls.PrintDialog(); 
     if (printDialog.ShowDialog() == true) 
     {     
      DrawingVisual dv = new DrawingVisual(); 
      var dc = dv.RenderOpen(); 

      SqlConnection con = new SqlConnection(); 
      con.ConnectionString = @"Data Source=.\SQLEXPRESS;AttachDbFilename=D:\Database\Data.mdf;Integrated Security=True;Connect Timeout=30;User Instance=True"; 
      SqlCommand cmd = new SqlCommand(); 
      BitmapImage bmp = new BitmapImage(); 

      cmd.Connection = con; 
      con.Open(); 

      cmd.CommandText = "Select Picture from Personnels where Name= " + grdPersonnel1.SelectedItem; 

      bmp.CacheOption = BitmapCacheOption.OnLoad; 
      bmp.BeginInit(); 
      bmp.StreamSource = new System.IO.MemoryStream((Byte[])cmd.ExecuteScalar()); 
      bmp.EndInit(); 
      dc.DrawImage(bmp, new Rect(140, 170, 150, 150)); 

      dc.DrawText(new FormattedText("Name:", CultureInfo.GetCultureInfo("en-us"), FlowDirection, 
       new Typeface(new System.Windows.Media.FontFamily("Courier New"), FontStyles.Normal, FontWeights.Bold, 
        FontStretches.Normal), 12, System.Windows.Media.Brushes.Black), new System.Windows.Point(700, 180)); 
      dc.DrawText(new FormattedText(txtName.Text, CultureInfo.GetCultureInfo("en-us"), FlowDirection, 
        new Typeface(new System.Windows.Media.FontFamily("Courier New"), FontStyles.Normal, FontWeights.Normal, 
         FontStretches.Normal), 11, System.Windows.Media.Brushes.Black), new System.Windows.Point(550, 180)); 


      dc.Close(); 

      printDialog.PrintVisual(dv, "Print"); 
     } 

<Image VerticalAlignment="Center" HorizontalAlignment="Center" Stretch="Fill" Name="PictureBox" 
        Source="{Binding Picture}" DataContext="{Binding Path=SelectedItem, ElementName=grdPersonnel1}" Opacity="2"> 
</Image> 

回答

0

我解决了它:

private void Print_Click(object sender, RoutedEventArgs e) 
{ 
    System.Windows.Controls.PrintDialog printDialog = new System.Windows.Controls.PrintDialog(); 
    if (printDialog.ShowDialog() == true) 
    {     
     DrawingVisual dv = new DrawingVisual(); 
     var dc = dv.RenderOpen(); 

     SqlConnection con = new SqlConnection(@"Data Source=.\SQLEXPRESS;AttachDbFilename=D:\Database\Database.mdf;Integrated Security=True;Connect Timeout=30;User Instance=True"); 
      SqlCommand cmd = new SqlCommand(); 

      BitmapImage bmp = new BitmapImage(); 
      cmd.CommandText = "Select Picture from Database where [email protected]"; 
      cmd.Parameters.Add("@Code", SqlDbType.NVarChar, 30); 
      cmd.Parameters["@Code"].Value = this.txtCode.Text; 
      cmd.Connection = con; 
      con.Open(); 

      bmp.CacheOption = BitmapCacheOption.OnLoad; 
      bmp.BeginInit(); 
      bmp.StreamSource = new System.IO.MemoryStream((Byte[])cmd.ExecuteScalar()); 
      bmp.EndInit(); 
      dc.DrawImage(bmp, new Rect(140, 170, 150, 150)); 

     dc.DrawText(new FormattedText("Name:", CultureInfo.GetCultureInfo("en-us"), FlowDirection, 
      new Typeface(new System.Windows.Media.FontFamily("Courier New"), FontStyles.Normal, FontWeights.Bold, 
       FontStretches.Normal), 12, System.Windows.Media.Brushes.Black), new System.Windows.Point(700, 180)); 
     dc.DrawText(new FormattedText(txtName.Text, CultureInfo.GetCultureInfo("en-us"), FlowDirection, 
       new Typeface(new System.Windows.Media.FontFamily("Courier New"), FontStyles.Normal, FontWeights.Normal, 
        FontStretches.Normal), 11, System.Windows.Media.Brushes.Black), new System.Windows.Point(550, 180)); 


     dc.Close(); 

     printDialog.PrintVisual(dv, "Print"); 
    } 
0

我不知道是什么样的控制grdPersonel1的,但你应该看看,如果是的SelectedItem一个字符串...如果不是,也许你需要的SelectedValue或SelectedItem.Text(东西,有你想要的字符串在名称字段中)

+0

的SelectedItem或的SelectedValue和他们没有不显示。文本 – mhshojaee 2012-08-16 19:38:01

0

我假设grdPersonnel1是您的DataGrid,即项目是网格是Personnel类型并且该Personnel具有Name属性。如果这是正确的,试试这个:

cmd.CommandText = "Select Picture from Personnels where Name= " + (grdPersonnel1.SelectedItem as Personnel).Name; 
+0

是grdPersonnel1是我的DataGrid,我用这个片段,但有错误:对象引用未设置为对象的实例。 – mhshojaee 2012-08-17 15:02:09