以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- [求助]代码转换 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=65172) |
-- 作者:pcxjxjhkw -- 发布时间:2015/3/10 16:35:00 -- [求助]代码转换 { if (pictureBox1.Width >= 50) //当图像的宽度值小于50时,就不能再缩小了 { pictureBox1.Width = Convert.ToInt32(pictureBox1.Width * 0.8); pictureBox1.Height = Convert.ToInt32(pictureBox1.Height * 0.8); } else { MessageBox.Show(this,"图像已是最小,不能再缩小了!","提示对话框",MessageBoxButtons.OK,MessageBoxIcon.Warning); } } 上代码如何转换为狐表代码?谢谢
[此贴子已经被作者于2015/3/10 16:35:46编辑过]
|
-- 作者:Bin -- 发布时间:2015/3/10 16:38:00 -- if pictureBox1.Width >= 50 then pictureBox1.Width = Convert.ToInt32(pictureBox1.Width * 0.8)
pictureBox1.Height = Convert.ToInt32(pictureBox1.Height * 0.8) else MessageBox.Show(this,"图像已是最小,不能再缩小了!","提示对话框",MessageBoxButtons.OK,MessageBoxIcon.Warning) end if |
-- 作者:有点甜 -- 发布时间:2015/3/10 16:38:00 --
[此贴子已经被作者于2015/3/10 16:38:51编辑过]
|