Esempio n. 1
0
        /// <summary>
        /// Shows the filter setup wizard.
        /// </summary>
        /// <param name="sender">The sender.</param>
        /// <param name="e">The <see cref="EventArgs"/> instance containing the event data.</param>
        private void showFilterSetupWizard(object sender, EventArgs e)
        {
            Button b          = (Button)sender;
            string entityName = b.Name.Replace("button_", "");
            RecordsCounterFilterWizard rcfw = new RecordsCounterFilterWizard(this, entityName);

            rcfw.Show();
        }
Esempio n. 2
0
 /// <summary>
 /// Shows the filter setup wizard.
 /// </summary>
 /// <param name="sender">The sender.</param>
 /// <param name="e">The <see cref="EventArgs"/> instance containing the event data.</param>
 private void showFilterSetupWizard(object sender, EventArgs e)
 {
     Button b = (Button)sender;
     string entityName = b.Name.Replace("button_", "");
     RecordsCounterFilterWizard rcfw = new RecordsCounterFilterWizard(this, entityName);
     rcfw.Show();
 }