📄 productcategoriesform.vb
字号:
Public Class ProductCategoriesForm
Private ProductCategoryResultSet As SQLCEDataSourceQuickUI.ProductCategoryResultSet
Private Sub ProductCategoriesForm_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
'TODO: Delete this line of code to remove the default AutoFill for 'SQLCEDataSourceQuickUI.ProductCategoryResultSet'.
ProductCategoryResultSet = New SQLCEDataSourceQuickUI.ProductCategoryResultSet
ProductCategoryResultSet.Bind(Me.ProductCategoryResultSetBindingSource)
End Sub
Private Sub ProductCategoryResultSetDataGrid_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ProductCategoryResultSetDataGrid.Click
ShowEditDialog()
End Sub
Private Sub newMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles newMenuItem.Click
ProductCategoryResultSetBindingSource.AddNew()
ShowEditDialog()
End Sub
Private Function ShowEditDialog()
Dim productcategoryEditViewDialog As ProductCategoryEditViewDialog = _
productcategoryEditViewDialog.Instance(Me.ProductCategoryResultSetBindingSource)
productcategoryEditViewDialog.ShowDialog()
End Function
End Class
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -