交换的一些基本术语,我没有人要问,我想愚蠢地理解我的自我。 方法,程序,参数,操作,操作,功能,实例,分隔符, 我真的需要帮助! 我真的需要看一个很长的代码模块,对于像我这样的愚蠢的人来说,每件事情都会被打破。
例如,打破这个,不是它做什么,而是如何做,以及术语。逐字逐句,所有点,=括号,传递得到所有的东西,我知道这对其他人来说都很简单。我需要更多的帮助,直到我得到它...也许我们可以解决问题。有一个可用的,,,知道这些东西后退和前进,并有耐心,我想帮助我...我已经尝试了书籍,我只是没有得到它帮助
Public Class ViewerForm1
Private Sub btnSelectPicture_Click(sender As Object, e As EventArgs) Handles btnSelectPicture.Click
'Show the open dialog box.
If ofdSelectPicture.ShowDialog = DialogResult.OK Then
'Load the picture in the box.
btnSelectPicturePicture.Image = Image.FromFile(ofdSelectPicture.FileName)
'Show the name of the file in the forms caption.
Me.Text = "Picture Viewer "(ofdSelectPicture.FileName)
'Close the window at exit the application.
Me.Close()
End If
End Sub
答案 0 :(得分:1)
Private Sub btnSelectPicture_Click(sender As Object,
e As EventArgs) Handles btnSelectPicture.Click
此行声明了一个默认的Click事件处理程序,并将按钮的点击事件绑定到它。
If ofdSelectPicture.ShowDialog = DialogResult.OK Then
打开一个打开的文件对话框,如果用户按OK,则处理结果。
btnSelectPicturePicture.Image = Image.FromFile(ofdSelectPicture.FileName)
根据之前选择的文件将图像加载到按钮中。
Me.Text = "Picture Viewer "(ofdSelectPicture.FileName)
Line没有意义,可能无法编译。缺少&
或+
进行字符串连接。假设它有一个,它会将表单标题/标题分配给常量值+选择的文件名。
Me.Close()
关闭当前表单。