1.New Console application;
2.Add reference,PresentationCore and WindowsBase
3.
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) { 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.ShowDialog(); } } }
标签:console,start,win,System,application,bmp,using,new From: https://www.cnblogs.com/Fred1987/p/18407265