我想在运行时将复选框控件添加到表单。我可以做到,但我也想将“ Checked”属性绑定到已经创建的应用程序设置。 我到目前为止的代码如下。当我运行时引发异常:“无法绑定到属性或在数据源上选中的列” 我在做什么错了?
Dim CurrentCheckBox As New CheckBox
Dim TableColumn As Integer = 4
Dim TableRow As Integer = 13
CurrentCheckBox.Name = "MyCheckbox"
CurrentCheckBox.Text = ""
CurrentCheckBox.Anchor = AnchorStyles.Bottom Or AnchorStyles.Top
CurrentCheckBox.AutoSize = True
CurrentCheckBox.DataBindings.Add(New System.Windows.Forms.Binding("Checked",
My.Settings.MyCheckboxIsChecked, "Checked"))
MyTableLayoutPanel.Controls.Add(CurrentCheckBox, TableColumn, TableRow)