public DepthMapSbsPanel(DepthMapSbsEffect effect) { InitializeComponent(); try { DataContext = effect; } catch (Exception exc) { } }
public DepthMapSbsPlugin() { try { Name = "Depthmap Side by side"; var effect = new DepthMapSbsEffect(); Content = effect; Panel = new DepthMapSbsPanel(effect); InjectConfig(PluginConfig.FromSettings(ConfigHelper.LoadConfig().AppSettings.Settings)); } catch (Exception exc) { Logger.Instance.Error(string.Format("Error while loading '{0}'", GetType().FullName), exc); } }