1
我有一個BitmapSource
1690x214(使用this代碼從EMF文件中提取),我想將此圖像用作ToolTip
。這是圖像使用畫圖顯示:如何正確使用圖像作爲工具提示?
所以我寫了這個代碼:
BitmapSource bmp = myBitmapSource; // "Dk01Light.EMF"
Image img = new Image()
{
Source = bmp,
Width = bmp.Width,
Height = bmp.Height,
Stretch = Stretch.Uniform,
};
myTooltip = img;
這是結果:
正如你所看到的,右邊和底部的保證金完全不同。爲什麼?我該如何解決這個問題?
我只需添加'bmp.SetResolution(emf.HorizontalResolution,emf.VerticalResolution); '它的工作! – Nick