示例#1
0
 public FullDomePanel(FullDomeProjection projection)
 {
     InitializeComponent();
     try
     {
         DataContext = projection;
     }
     catch (Exception exc)
     {
     }
 }
示例#2
0
 public FullDomePanel(FullDomeProjection projection)
 {
     InitializeComponent();
     try
     {
         DataContext = projection;
     }
     catch (Exception exc)
     {
     }
 }
 public FullDomePlugin()
 {
     try
     {
         Name = "Full Dome";
         var projection = new FullDomeProjection();
         Content = projection;
         Panel   = new FullDomePanel(projection);
         InjectConfig(PluginConfig.FromSettings(ConfigHelper.LoadConfig().AppSettings.Settings));
     }
     catch (Exception exc)
     {
         Logger.Instance.Error(string.Format("Error while loading '{0}'", GetType().FullName), exc);
     }
 }