/// <summary>
        /// Открытия диалога выбора Wallpaper
        /// </summary>
        private void WallpaperOpenDialog()
        {
            System.Windows.Forms.OpenFileDialog dlg =
                new System.Windows.Forms.OpenFileDialog();
            dlg.FileName = WallpaperPath; // "Template"; // Default file name
            //dlg.DefaultExt = ext; // Default file extension
            dlg.Filter = "Image Files|*.jpg;*.gif;*.bmp;*.png;*.jpeg|All Files|*.*";

            if (dlg.ShowDialog() == System.Windows.Forms.DialogResult.OK)
            {
                WallpaperPath = dlg.FileName;

                SaveWallpaperSetting();

                WallpaperManager wallpaperManager = new WallpaperManager();
                wallpaperManager.RefreshPicture();
                wallpaperManager.Init();

                //_SaveTemplate(dlg.FileName);
            }
        }