Q-dir 如何默认使用大图标
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Q-dir 如何默认使用大图标相关的知识,希望对你有一定的参考价值。
RT,我貌似只能默认显示中等图标?
请问有什么方法显示大图标
(1)单击“开始”按钮,选择“运行”命令,在“运行”对话框中输入“regedit”,打开“注册表编辑器”。
(2)选择HKEY_CURRENT_USER/Control Panel/Desktop/WindowsMetrics 注册表项。
(3)在其右边的值项窗格中,双击Shell Icon Size 值项,打开“编辑字符串”对话框。
(4)在“数值数据”文本框中,默认数据为32,更改其大小既可改变图标的显示大小。
(5)设置完毕后,重新启动计算机即可。如图所示显示了使用默认数据和将数据值更改为16 后,桌面图标的显示对比图。 参考技术A 鼠标放到屏幕最下边蓝色栏-----右键点属性----开始菜单-----自定义-----选中大图标本回答被提问者采纳 参考技术B 如果只有Q-dir是没有办法了,要就包括其它图标就可以,点击鼠标右键-属性-外观-高级-图标,之后就可以设置大小的。 参考技术C 鼠标放到屏幕最下边蓝色栏-----右键点属性----开始菜单-----自定义-----选中大图标
另外就是分辨率的调整了 参考技术D 查看,里边可以选择,这个资源管理器在退出后会保存你的设置
如何防止UIButton的imageView占用整个UIButton?
我试图以编程方式使用图标和标题制作UIButton
(默认情况下,图标应位于标题旁边的左侧)。但是,图标的大小非常大,因此当我使用myButton.setImage()
时,图标会拉伸并占据整个按钮,标题也会消失。
imageEdgeInsets
but it does not make the title appear.
So is there any way to make the icon smaller (maybe .scaleToFit
) and the title appear again?
If not, how small the icon (relatively to the button) should I export?
答案
尝试将此扩展名添加到UIImage
:
extension UIImage {
func resizeToBoundingSquare(_ boundingSquareSideLength : CGFloat) -> UIImage {
let imgScale = self.size.width > self.size.height ? boundingSquareSideLength / self.size.width : boundingSquareSideLength / self.size.height
let newWidth = self.size.width * imgScale
let newHeight = self.size.height * imgScale
let newSize = CGSize(width: newWidth, height: newHeight)
UIGraphicsBeginImageContext(newSize)
self.draw(in: CGRect(x: 0, y: 0, width: newWidth, height: newHeight))
let resizedImage = UIGraphicsGetImageFromCurrentImageContext()
UIGraphicsEndImageContext();
return resizedImage!
}
}
假设您有一个1024x1024图标,您希望将其调整为40x40。这样做:
var myIcon = UIImage(named: image)
myIcon = myIcon.resizeToBoundingSquare(40)
以上是关于Q-dir 如何默认使用大图标的主要内容,如果未能解决你的问题,请参考以下文章