获取桌面图标的可能数量
我将屏幕分辨率设置为 1024 x 768 像素,图标大小为 32x32,默认图标间距(未更改)。如何计算适合该分辨率的桌面图标的可能数量?
I've my screen resolution set to 1024 x 768 pixels and the icon size is 32x32 and default icon spacing (not changed). how can I calculate possible number of desktop icons that can fit into that resolution?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
实际上,它有点复杂,应该是:
您需要考虑最后一个“列”或“行”的另一个间距。填充行数和列数始终为 N+1,其中 N 是对象行数和列数。
括号对于正确计算很重要(除法的优先级高于减号)
在您的示例中:
It's a little more complex actually and should be:
You need to account for one more spacing which comes as the last "column" or "row". The number of padding rows and columns will always be N+1 where N is the number of object rows and columns.
The parentheses are important for proper calculation (Divide is higher precedence than minus)
In your example then:
简单的:
Simple: