public DualDomePanel(DualDomeProjection projection) { InitializeComponent(); try { DataContext = projection; } catch (Exception) { } }
public DualDomePanel(DualDomeProjection projection) { InitializeComponent(); try { DataContext = projection; } catch (Exception exc) { } }
public DualDomePlugin() { try { Name = "Dual dome"; var projection = new DualDomeProjection(); Content = projection; Panel = new DualDomePanel(projection); InjectConfig(PluginConfig.FromSettings(ConfigHelper.LoadConfig().AppSettings.Settings)); } catch (Exception exc) { Logger.Instance.Error(string.Format("Error while loading '{0}'", GetType().FullName), exc); } }