I have a icon which has a few different sizes (16px, 32px, 64px). I am calling ToBitmap()
on it, but it is always returning the 32px image. How do I retrieve the 64px one?
相关问题
- Sorting 3 numbers without branching [closed]
- Graphics.DrawImage() - Throws out of memory except
- Why am I getting UnauthorizedAccessException on th
- 求获取指定qq 资料的方法
- How to know full paths to DLL's from .csproj f
The size is determined when you first create the
Icon
instance, so you need to specify which size you want to use when you create it, using one of theIcon
constructors that take aSize
parameter.