private void buttonDelete_Click(object sender, EventArgs e)
        {
            if (Selected_Table != "")
            {
                if (flowLayoutPanelShow.Controls.Count > 0)
                {
                    DeleteRecord?.Invoke(Selected_Table, SelectedItemIndex);
                }

                flowLayoutPanelShow.Controls.Clear();
            }
        }
Beispiel #2
0
 /// <summary>
 /// Raises the DeleteRecord event.
 /// </summary>
 protected void OnDelete()
 {
     DeleteRecord?.Invoke(this, new EventArgs());
 }