Example #1
0
        private void btnAddAttribute_Click(object sender, EventArgs e)
        {
            var picker = new SQLAttributePicker(GetDBMSType());

            picker.Location = new Point(0, (13 * (attributeList.Count)) + ((attributeList.Count) * picker.Height) + pnlAttributes.AutoScrollPosition.Y);

            attributeList.Add(picker);
            pnlAttributes.Controls.Add(picker);
            picker.Focus();
        }