pictureEdit 實現圖片的自適應大小


pictureEdit 可以直接綁定Image 或者 Byte Array (根據官方資料)

當我們在PictureEdit中放置一個較大圖片的時候,SizeMode屬性雖然設置Zoom 但還是會出現將圖片容器趁的過大,從而影響下面的顯示。

FileStream fs = new FileStream (fileName,FileModel.OpenOrCreate);

 

byte[] bt = new byte[fs.length];

fs.Close();

if(bt!=null)

{

Stream stream = new MemoryStream(bt);

Bitmap bmtemp = new Bitmap(stream);

Image img = new Bitmap(bmtemp, pictureEdid.With, pictureEdid.Height); //指定圖片顯示尺寸與控件大小一樣

pictureEdid.EditValue = img;

}


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM