将Xceed DataGridControl的图像复制到位图

时间:2015-05-28 13:19:49

标签: c# wpf xceed-datagrid

我正在使用Xceed WPF Toolkit(Community Edition)DataGridControl,我想从控件创建一个位图(放在剪贴板上或保存到png)。

我尝试过使用RenderBitmapTarget,但它只会复制屏幕上呈现的控件(我的网格比屏幕大)。

我的RenderBitmapTarget代码如下所示:

RenderTargetBitmap rtb = new RenderTargetBitmap((int)control.ActualWidth, (int)control.ActualHeight, 96, 96, PixelFormats.Pbgra32);
rtb.Render(control);
PngBitmapEncoder png = new PngBitmapEncoder();
png.Frames.Add(BitmapFrame.Create(rtb));
MemoryStream stream = new MemoryStream();
png.Save(stream);
Image image = Image.FromStream(stream);

我尝试指定更大的尺寸(在RenderTargetBitmap构造函数中,并为控件指定新的宽度/高度,但两者都在较大的画布上产生了相同的图像。

有什么想法吗?

1 个答案:

答案 0 :(得分:0)

好的,我想通了......

最后一个关键是禁用DataGridControl.View上的延迟加载......这是我的最终代码:

XAML:

<xcdg:DataGridControl x:Name="CEGrid">
     <xcdg:DataGridControl.View>
         <xcdg:TableflowView IsDeferredLoadingEnabled="False"/>
     </xcdg:DataGridControl.View>
 </xcdg:DataGridControl>

C#代码隐藏:     double tempWidth = CEGrid.ActualWidth;     double tempHeight = CEGrid.ActualHeight;

CEGrid.Width = double.NaN;
CEGrid.Height = double.NaN;

CEGrid.UpdateLayout();

RenderTargetBitmap rtb = new RenderTargetBitmap((int)CEGrid.ActualWidth, (int)CEGrid.ActualHeight, 96, 96, PixelFormats.Pbgra32);

rtb.Render(CEGrid);

PngBitmapEncoder pbe = new PngBitmapEncoder();
pbe.Frames.Add(BitmapFrame.Create(rtb));
MemoryStream stream = new MemoryStream();
pbe.Save(stream);
System.Drawing.Bitmap image = (System.Drawing.Bitmap)System.Drawing.Image.FromStream(stream);

CEGrid.Width = tempWidth;
CEGrid.Height = tempHeight;