CmisSync.SetupWindow.LoadSetup C# (CSharp) Метод

LoadSetup() приватный Метод

private LoadSetup ( ) : void
Результат void
        private void LoadSetup()
        {
            System.Uri resourceLocater = new System.Uri("/DataSpaceSync;component/SetupWPF.xaml", System.UriKind.Relative);
            UserControl SetupWPF = Application.LoadComponent(resourceLocater) as UserControl;

            this.ContentCanvas = SetupWPF.FindName("ContentCanvas") as Canvas;
            this.sideSplash = SetupWPF.FindName("SideSplash") as Image;
            this.sideSplash.Source = UIHelpers.GetImageSource("side-splash");
            this.headerLabel = SetupWPF.FindName("HeaderLabel") as Label;
            this.descriptionLabel = SetupWPF.FindName("DescriptionLabel") as TextBlock;

            Content = SetupWPF;
        }