我的dataGrid中有一些行,当我选择其中一个并打印它的数据时,只会打印数据库的第一个图像而我只需要打印所选行的图像,这个片段在cmd.CommandText上有错误......,如何我可以改进吗?
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>