LoadSettings() public méthode

public LoadSettings ( ) : string
Résultat string
Exemple #1
0
        public override void Run()
        {
            try
            {
                string path = System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetAssembly(this.GetType()).Location);
                System.Reflection.Assembly.LoadFrom(System.IO.Path.Combine(path, "AvalonDock.Themes.dll"));

                bw         = new BackgroundWorker();
                bw.DoWork += delegate
                {
                    try
                    {
                        while (ICSharpCode.SharpDevelop.Gui.WorkbenchSingleton.MainWindow == null)
                        {
                            Thread.Sleep(100);
                        }
                        ICSharpCode.SharpDevelop.Gui.WorkbenchSingleton.MainWindow.Dispatcher.Invoke
                            (DispatcherPriority.Normal, new System.Threading.ThreadStart
                            (
                                delegate
                        {
                            //string path = System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetAssembly(typeof(ToolSettings)).Location);
                            //string uri = "/AvalonDock.Themes;component/themes/dev2010.xaml";
                            //ThemeFactory.ChangeTheme(new Uri(uri, UriKind.RelativeOrAbsolute));
                            var settings = new ToolSettings();
                            var theme    = settings.LoadSettings();
                            settings.SetTheme(theme);
                        }
                            )
                            );
                    }
                    catch (Exception ex)
                    {
                        MessageBox.Show(ex.ToString(), "ToolCommandStartup.Run()");
                    }
                };
                bw.RunWorkerAsync();
            }
            catch
            {
            }
        }
Exemple #2
0
        public override void Run()
        {
            try
            {
                string path = System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetAssembly(this.GetType()).Location);
                System.Reflection.Assembly.LoadFrom(System.IO.Path.Combine(path, "AvalonDock.Themes.dll"));

                bw = new BackgroundWorker();
                bw.DoWork += delegate
                {
                    try
                    {
                        while (ICSharpCode.SharpDevelop.Gui.WorkbenchSingleton.MainWindow == null)
                        {
                            Thread.Sleep(100);
                        }
                        ICSharpCode.SharpDevelop.Gui.WorkbenchSingleton.MainWindow.Dispatcher.Invoke
                            (DispatcherPriority.Normal, new System.Threading.ThreadStart
                             (
                             	delegate
                             	{
                             		//string path = System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetAssembly(typeof(ToolSettings)).Location);
                             		//string uri = "/AvalonDock.Themes;component/themes/dev2010.xaml";
                             		//ThemeFactory.ChangeTheme(new Uri(uri, UriKind.RelativeOrAbsolute));
                             		var settings = new ToolSettings();
                             		var theme = settings.LoadSettings();
                             		settings.SetTheme(theme);
                             	}
                             )
                            );
                    }
                    catch (Exception ex)
                    {
                        MessageBox.Show(ex.ToString(), "ToolCommandStartup.Run()");
                    }
                };
                bw.RunWorkerAsync();
            }
            catch
            {
            }
        }