私はSQliteデータベースを持つプロジェクトを持っています。フォルダ "pics"(デバッグフォルダ)に画像を保存しました&データベースの名前(列 "docpic")。label10
のテキストをイメージ名に設定しました。 label.text
をイメージ名(データベースに保存されている)として使用し、ピクチャボックスにイメージを表示するにはどうすればよいですか?イメージ名&ショーイメージとしてラベル1を設定します。C#
label.text = image.jpg and image name=image.jpg
私はimagenameのようlabel10.text
使用したい感染します。
label10
クリックイベント:
private void label10_Click(object sender, EventArgs e)
{
pictureBox1.Image = new Bitmap("\\scan\\" + label10.Text + ".jpg");
}
GridViewのクリックイベント:ちょうどイメージへのパスに "C:\...\
" を置き換える
picturebox.Image = Image.FromFile(@"C:\...\" + label10.text, true);
:
private void Grid_Click(object sender, EventArgs e)
{
i = Convert.ToInt32(DT.Rows[Grid.CurrentRowIndex]["id"]);
btnDel.Enabled = true;
btnEdit.Enabled = true;
label10.Text = DT.Rows[Grid.CurrentRowIndex]["docpic"].ToString();
}
あなたが試したコードを見せて、あなたがすでに取ったステップを私達に説明してください... – maccettura