AdvancedLauncher.UI.Windows.Settings.Settings C# (CSharp) Метод

Settings() публичный Метод

public Settings ( ) : System
Результат System
        public Settings() {
            InitializeComponent();
            if (!DesignerProperties.GetIsInDesignMode(new DependencyObject())) {
                LauncherManager = App.Kernel.Get<LauncherManager>();
                RenderOptions.SetBitmapScalingMode(this, BitmapScalingMode.HighQuality);
                ComboBoxLauncher.ItemsSource = LauncherManager;
                ProfileList.DataContext = ProfileManager;
                ProfileList.ItemsSource = ProfileManager.PendingProfiles;
                ComboBoxServer.ItemsSource = ServerList;
                ComboBoxLauncher.DataContext = this;
                SetUpConfigurations();
            }
        }