Beispiel #1
0
        private void menuSettings_Click(object sender, EventArgs e)
        {
            SettingsForm settingsForm = new SettingsForm();

            settingsForm.ShowDialog(this);
        }
Beispiel #2
0
        public Result Execute(ExternalCommandData commandData, ref string message, ElementSet elements)
        {
            var form = new UI.SettingsForm(commandData.Application.ActiveUIDocument.Document);

            return(Result.Succeeded);
        }
        private void buttonSettings_Click(object sender, EventArgs e)
        {
            SettingsForm settings = new SettingsForm(m_Agent.UpdateDelayThreshold);

            settings.ShowDialog();
        }