Merhabalar;
Yeteneklerine hayran kaldıgım iki companentten biri richTextBox diğeri ise DataGridView dir. DataGridView için ilerde çok detaylı yazılar yazıcam ama önce richTextBox nasıl resim eklenir onu görelim.
private bool pasteMyBitmap(string fileName)
{
// Open an bitmap from file and copy it to the clipboard.
Bitmap myBitmap = new Bitmap(fileName);
// Copy the bitmap to the clipboard.
Clipboard.SetDataObject(myBitmap);
// Get the format for the object type.
DataFormats.Format myFormat = DataFormats.GetFormat(DataFormats.Bitmap);
// After verifying that the data can be pasted, paste it.
if (richTextBox1.CanPaste(myFormat))
{
richTextBox1.Paste(myFormat);
return true;
}
else
{
MessageBox.Show("The data format that you attempted to paste is not supported by this control.");
return false;
}
}
Kaynak:http://http//msdn.microsoft.com/en-us/library/system.windows.forms.richtextbox.canpaste.aspx
Umarım faydalı olur.
Yorum Gönder