Beispiel #1
0
        private void Bindings()
        {
            var service = (IConfigurationService)GetService(typeof(IConfigurationService));
            var site    = service.Site;
            var dialog  = new BindingsDialog(Module, site);

            dialog.ShowDialog();
            OnSiteSettingsSaved();
        }
Beispiel #2
0
        private void Bindings()
        {
            if (SelectedItem == null)
            {
                return;
            }

            var dialog = new BindingsDialog(Module, SelectedItem);

            dialog.ShowDialog();
            OnSitesSettingsSaved();
        }