我有一个名为fWidth的全局变量,目前为300。
我正在设置 pictureBox.width = fWidth ,但之后我想做一些像 pictureBox.height = calcImgHeight(originalHeight,originalWidth)
这就是问题所在,因为我在数学方面很糟糕:D
Private Function calcImgHeight(oHeight, oWidth)
Dim nHeight, ratio As Integer
ratio = oWidth / fWidth
nHeight = oHeight / ratio
Return nHeight
End Function
正确的代码应该是什么?
答案 0 :(得分:1)