コード例 #1
0
        /// <summary>
        /// Handles the Click event of the menuInactiveUsers control.
        /// </summary>
        /// <param name="sender">The source of the event.</param>
        /// <param name="e">The <see cref="EventArgs"/> instance containing the event data.</param>
        private void menuInactiveUsers_Click(object sender, EventArgs e)
        {
            if (Service == null)
            {
                ExecuteMethod(WhoAmI);
                return;
            }
            InactiveUsers form = new InactiveUsers(this.Service);

            form.ShowDialog();
        }
コード例 #2
0
        private void menuInactiveUsers_Click(object sender, EventArgs e)
        {
            InactiveUsers form = new InactiveUsers(this.Service);

            form.ShowDialog();
        }