1
我有一個用戶控件,它是我的應用程序的一部分,我將它呈現給一個圖像,但它正在顯示當前正在顯示的尺寸。我想要的是將其渲染爲固定的尺寸,例如500x500,但不會將其用新尺寸呈現給用戶。將UserControl渲染爲具有不同大小的圖像,然後顯示它?
UserControl temp = pane.Content;
RadBitmap radImage = new RadBitmap(temp); // Renders UserControl to Image
PngFormatProvider provider = new PngFormatProvider();
return provider.Export(radImage); // returns the Image as a png encoded Byte Array
注意:我的UserControl是另一個控制它的UserControl的大小的孩子。
謝謝你