C# Console application start wpf window via Application, Encapsulates a Windows Presentation Foundation (WPF) application

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Media.Imaging;

namespace ConsoleApp73
{
    internal class Program
    {
        [STAThread]
        static void Main(string[] args)
        {
            Console.WriteLine("Encapsulates a Windows Presentation Foundation (WPF) application.");
            Application app = new Application();
            Window win = new Window();
            win.Title = "New WPF window from console application!";
            Image img = new Image();
            BitmapImage bmp = new BitmapImage();
            bmp.BeginInit();
            bmp.UriSource = new Uri(@"..\..\Image\1.jpg",UriKind.RelativeOrAbsolute);
            bmp.EndInit();
            bmp.Freeze();
            img.Source = bmp;
            win.Content = img;
            win.Show();
            app.Run(win);
            Console.ReadLine();
        }
    }
}

 

 

 

posted @ 2024-09-10 21:44  FredGrit  阅读(24)  评论(0)    收藏  举报