/* #region 去除标题栏ICON [DllImport("user32.dll")] static extern int GetWindowLong(IntPtr hwnd, int index); [DllImport("user32.dll")] static extern int SetWindowLong(IntPtr hwnd, int index, int newStyle); [DllImport("user32.dll")
C# var icon = System.Drawing.Icon.ExtractAssociatedIcon(@"filepath"); var m = new MemoryStream(); icon.Save(m); var bitmapiamge = new BitmapImage(); bitmapiamge.BeginInit(); bitmapiamge.StreamSource = m; bitmapiamge.EndInit(); this.Icon = bitmap