问题描述
我是Visual Studio 2019的新手。我创建了一个Windows窗体项目,并正在使用vb.net。但是,我注意到,每天当我在项目表单控件中添加代码时,它们并不是按照字母顺序组织的。似乎新的子例程是根据我添加它们的日期进行组织的。参见以下示例;
Private Sub PtPhone_KeyPress(sender As Object,e As KeyPressEventArgs) Handles PtPhone.KeyPress
If (Not Char.IsControl(e.KeyChar) AndAlso (Not Char.IsDigit(e.KeyChar))) Then e.Handled = True
End Sub
Private Sub NOKPhone_KeyPress(sender As Object,e As KeyPressEventArgs) Handles NOKPhone.KeyPress
If (Not Char.IsControl(e.KeyChar) AndAlso (Not Char.IsDigit(e.KeyChar))) Then e.Handled = True
End Sub
来自Access VBA的背景,这些例程按字母顺序组织,因此NOKPhone_KeyPress在VBA编辑器中位于PtPhone_KeyPress之前。这使查找和查找子例程变得容易。我有办法强迫Visual Studio按字母顺序组织这些子例程吗?