TabControl 中 ImageList 图标的分辨率不清晰
Resolution of ImageList Icons are not clear in TabControl
ImageList
的分辨率正在用于 TabControl
TabControl绘制模式为OwnerDrawFixed时图标不清晰导致
不同背景的一些问题。如果 Rectangle 容器的背景有 SolidBrush,Image 就可以了。否则会被打扰。
有什么好的方法可以画出高分辨率的图像吗?
将图像添加到 ImageList
时考虑:
- 将 png 图像的
ColorDepth
属性 设置为 Depth32Bit
。
- 将
ImageSize
属性 设置为您的原始图像大小,在您的情况下 24,24
然后将图片添加到您的图片列表中。
添加图像后更改这些属性会导致图像质量低下。
ImageList
的分辨率正在用于 TabControl
TabControl绘制模式为OwnerDrawFixed时图标不清晰导致
不同背景的一些问题。如果 Rectangle 容器的背景有 SolidBrush,Image 就可以了。否则会被打扰。
有什么好的方法可以画出高分辨率的图像吗?
将图像添加到 ImageList
时考虑:
- 将 png 图像的
ColorDepth
属性 设置为Depth32Bit
。 - 将
ImageSize
属性 设置为您的原始图像大小,在您的情况下24,24
然后将图片添加到您的图片列表中。
添加图像后更改这些属性会导致图像质量低下。