Browse Source

Add: ConsoleIcon

HOME 2 years ago
parent
commit
4b35a3f0e1
4 changed files with 225 additions and 0 deletions
  1. 74 0
      ConsoleIcon/ConsoleIcon.csproj
  2. 141 0
      ConsoleIcon/Program.cs
  3. 4 0
      ConsoleIcon/packages.config
  4. 6 0
      StrangeTools.sln

+ 74 - 0
ConsoleIcon/ConsoleIcon.csproj

@@ -0,0 +1,74 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+  <Import Project="C:\NuGetLocalRepo\ILRepack.2.0.18\build\ILRepack.props" Condition="Exists('C:\NuGetLocalRepo\ILRepack.2.0.18\build\ILRepack.props')" />
+  <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
+  <PropertyGroup>
+    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
+    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
+    <ProjectGuid>{6A1E8847-2290-462F-95D8-F2517C377130}</ProjectGuid>
+    <OutputType>Exe</OutputType>
+    <RootNamespace>ConsoleIcon</RootNamespace>
+    <AssemblyName>ConsoleIcon</AssemblyName>
+    <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
+    <FileAlignment>512</FileAlignment>
+    <Deterministic>true</Deterministic>
+    <NuGetPackageImportStamp>
+    </NuGetPackageImportStamp>
+  </PropertyGroup>
+  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+    <PlatformTarget>AnyCPU</PlatformTarget>
+    <DebugSymbols>true</DebugSymbols>
+    <DebugType>full</DebugType>
+    <Optimize>false</Optimize>
+    <OutputPath>bin\Debug\</OutputPath>
+    <DefineConstants>DEBUG;TRACE</DefineConstants>
+    <ErrorReport>prompt</ErrorReport>
+    <WarningLevel>4</WarningLevel>
+    <LangVersion>latest</LangVersion>
+  </PropertyGroup>
+  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+    <PlatformTarget>AnyCPU</PlatformTarget>
+    <DebugType>pdbonly</DebugType>
+    <Optimize>true</Optimize>
+    <OutputPath>bin\Release\</OutputPath>
+    <DefineConstants>TRACE</DefineConstants>
+    <ErrorReport>prompt</ErrorReport>
+    <WarningLevel>4</WarningLevel>
+    <LangVersion>latest</LangVersion>
+  </PropertyGroup>
+  <PropertyGroup>
+    <RunPostBuildEvent>OnOutputUpdated</RunPostBuildEvent>
+  </PropertyGroup>
+  <ItemGroup>
+    <Reference Include="System" />
+    <Reference Include="System.Core" />
+    <Reference Include="System.Drawing" />
+    <Reference Include="System.Windows.Forms" />
+    <Reference Include="System.Xml.Linq" />
+    <Reference Include="System.Data.DataSetExtensions" />
+    <Reference Include="Microsoft.CSharp" />
+    <Reference Include="System.Data" />
+    <Reference Include="System.Xml" />
+  </ItemGroup>
+  <ItemGroup>
+    <Compile Include="Program.cs" />
+  </ItemGroup>
+  <ItemGroup>
+    <Folder Include="Properties\" />
+  </ItemGroup>
+  <ItemGroup>
+    <None Include="packages.config" />
+  </ItemGroup>
+  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
+  <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
+    <PropertyGroup>
+      <ErrorText>这台计算机上缺少此项目引用的 NuGet 程序包。使用“NuGet 程序包还原”可下载这些程序包。有关更多信息,请参见 http://go.microsoft.com/fwlink/?LinkID=322105。缺少的文件是 {0}。</ErrorText>
+    </PropertyGroup>
+    <Error Condition="!Exists('C:\NuGetLocalRepo\ILRepack.2.0.18\build\ILRepack.props')" Text="$([System.String]::Format('$(ErrorText)', 'C:\NuGetLocalRepo\ILRepack.2.0.18\build\ILRepack.props'))" />
+  </Target>
+  <PropertyGroup>
+    <PostBuildEvent>if $(ConfigurationName) == Release if not exist "$(TargetDir)Packed" md "$(TargetDir)Packed"
+if $(ConfigurationName) == Release $(ILRepack) /ndebug "/out:$(TargetDir)Packed\$(TargetFileName)" "$(TargetPath)"
+if $(ConfigurationName) == Release if exist "$(TargetDir)Packed\$(TargetFileName).config" del "$(TargetDir)Packed\$(TargetFileName).config"</PostBuildEvent>
+  </PropertyGroup>
+</Project>

+ 141 - 0
ConsoleIcon/Program.cs

@@ -0,0 +1,141 @@
+using System;
+using System.Diagnostics;
+using System.IO;
+using System.IO.Pipes;
+using System.Reflection;
+using System.Runtime.InteropServices;
+using System.Text;
+using System.Windows.Forms;
+
+// 有关程序集的一般信息由以下
+// 控制。更改这些特性值可修改
+// 与程序集关联的信息。
+[assembly: AssemblyTitle("ConsoleIcon")]
+[assembly: AssemblyProduct("ConsoleIcon")]
+[assembly: AssemblyDescription("Pass a icon file path for set to current console window")]
+[assembly: AssemblyCopyright("Copyright © 2022")]
+
+// 程序集的版本信息由下列四个值组成:
+//
+//      主版本
+//      次版本
+//      生成号
+//      修订号
+//
+//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值
+//通过使用 "*",如下所示:
+// [assembly: AssemblyVersion("1.0.*")]
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]
+
+namespace ConsoleIcon
+{
+    internal class Program
+    {
+        private const string PipeName = nameof(ConsoleIcon) + "-" + nameof(PipeName);
+
+        private static void Main(string[] args)
+        {
+            if (args.Length == 1)
+            {
+                if (false == File.Exists($@"\\.\pipe\{PipeName}"))
+                {
+                    var daemonProcess = new Process
+                    {
+                        StartInfo =
+                        {
+                            WindowStyle = ProcessWindowStyle.Hidden,
+                            FileName = Application.ExecutablePath
+                        }
+                    };
+                    daemonProcess.Start();
+                }
+
+                var pipe = new NamedPipeClientStream(PipeName);
+                pipe.Connect(500);
+
+                IntPtr hWnd = GetConsoleWindow(); // https://stackoverflow.com/a/28616832/2430943
+                var iconFilePath = Path.GetFullPath(args[0]);
+                var writer = new StreamWriter(pipe);
+                writer.WriteLine(hWnd.ToInt64());
+                writer.WriteLine(iconFilePath);
+                writer.Flush();
+                pipe.Close();
+            }
+            else //Daemon
+            {
+                Console.WriteLine("Daemon start.");
+
+                while (true)
+                {
+                    var pipe = new NamedPipeServerStream(PipeName);
+                    pipe.WaitForConnection();
+                    Console.WriteLine("Accept Connection");
+                    var reader = new StreamReader(pipe, Encoding.UTF8);
+                    var hWnd = reader.ReadLine();
+                    var iconFilePath = reader.ReadLine();
+                    pipe.Close();
+                    Console.WriteLine($"Setting icon {iconFilePath}");
+                    Console.WriteLine($"          to {hWnd:X}");
+                    try
+                    {
+                        var bytes = File.ReadAllBytes(iconFilePath);
+                        using var stream = new MemoryStream(bytes);
+                        System.Drawing.Icon icon = new System.Drawing.Icon(stream);
+
+                        SetWindowIcon(new IntPtr(long.Parse(hWnd)), icon);
+                    }
+                    catch (Exception e)
+                    {
+                        Console.WriteLine(e);
+                    }
+                }
+            }
+        }
+
+        private static void SetWindowIcon(IntPtr hWnd, System.Drawing.Icon icon)
+        {
+            IntPtr result01 = SendMessage(hWnd, (int)WinMessages.SETICON, 0, icon.Handle);
+            IntPtr result02 = SendMessage(hWnd, (int)WinMessages.SETICON, 1, icon.Handle);
+        }
+
+        // https://stackoverflow.com/a/59897483/2430943
+
+        public static void SetConsoleIcon(string iconFilePath)
+        {
+            if (Environment.OSVersion.Platform == PlatformID.Win32NT)
+            {
+                if (!string.IsNullOrEmpty(iconFilePath) && File.Exists(iconFilePath))
+                {
+                    var bytes = File.ReadAllBytes(iconFilePath);
+                    using var stream = new MemoryStream(bytes);
+                    System.Drawing.Icon icon = new System.Drawing.Icon(stream);
+
+                    SetWindowIcon(icon);
+                }
+            }
+        }
+
+        private static void SetWindowIcon(System.Drawing.Icon icon)
+        {
+            IntPtr mwHandle = GetConsoleWindow(); // https://stackoverflow.com/a/28616832/2430943
+            IntPtr result01 = SendMessage(mwHandle, (int)WinMessages.SETICON, 0, icon.Handle);
+            IntPtr result02 = SendMessage(mwHandle, (int)WinMessages.SETICON, 1, icon.Handle);
+        }
+
+        [DllImport("kernel32.dll")]
+        private static extern IntPtr GetConsoleWindow();
+
+        public enum WinMessages : uint
+        {
+            /// <summary>
+            /// An application sends the WM_SETICON message to associate a new large or small icon with a window.
+            /// The system displays the large icon in the ALT+TAB dialog box, and the small icon in the window caption.
+            /// </summary>
+            SETICON = 0x0080,
+        }
+
+        [System.Runtime.InteropServices.DllImport("user32.dll", CharSet = System.Runtime.InteropServices.CharSet.Auto)]
+        private static extern IntPtr SendMessage(IntPtr hWnd, int Msg, int wParam, IntPtr lParam);
+    }
+}

+ 4 - 0
ConsoleIcon/packages.config

@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="utf-8"?>
+<packages>
+  <package id="ILRepack" version="2.0.18" targetFramework="net40" />
+</packages>

+ 6 - 0
StrangeTools.sln

@@ -38,6 +38,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SevenRepacker", "SevenRepac
 EndProject
 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ConnectionStat", "ConnectionStat\ConnectionStat.csproj", "{158AC9F8-3798-4F08-8028-3F261180BB0B}"
 EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ConsoleIcon", "ConsoleIcon\ConsoleIcon.csproj", "{6A1E8847-2290-462F-95D8-F2517C377130}"
+EndProject
 Global
 	GlobalSection(SolutionConfigurationPlatforms) = preSolution
 		Debug|Any CPU = Debug|Any CPU
@@ -104,6 +106,10 @@ Global
 		{158AC9F8-3798-4F08-8028-3F261180BB0B}.Debug|Any CPU.Build.0 = Debug|Any CPU
 		{158AC9F8-3798-4F08-8028-3F261180BB0B}.Release|Any CPU.ActiveCfg = Release|Any CPU
 		{158AC9F8-3798-4F08-8028-3F261180BB0B}.Release|Any CPU.Build.0 = Release|Any CPU
+		{6A1E8847-2290-462F-95D8-F2517C377130}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+		{6A1E8847-2290-462F-95D8-F2517C377130}.Debug|Any CPU.Build.0 = Debug|Any CPU
+		{6A1E8847-2290-462F-95D8-F2517C377130}.Release|Any CPU.ActiveCfg = Release|Any CPU
+		{6A1E8847-2290-462F-95D8-F2517C377130}.Release|Any CPU.Build.0 = Release|Any CPU
 	EndGlobalSection
 	GlobalSection(SolutionProperties) = preSolution
 		HideSolutionNode = FALSE