为我的所有表单设置相同的图标
本文关键字:图标 设置 表单 我的 | 更新日期: 2023-09-27 17:48:52
有什么方法可以为我的所有表单设置相同的图标而不必逐个更改吗?类似于为解决方案中的所有项目设置GlobalAssemblyInfo
。
-
在项目属性>应用程序>图标和清单>中浏览*.ico文件并将其添加到那里。
-
在Form的构造函数或
_Load
事件中,只需添加:this.Icon = Icon.ExtractAssociatedIcon(Application.ExecutablePath);
一个选项是从一个公共的基Form继承,该基Form设置构造函数中的Icon(可能来自resx)。另一个选项可能是PostSharp——似乎应该可以通过AOP来实现这一点(set.Icon);不过,这并非小事。最后,您可以使用一个简单的实用程序方法(也许是一个扩展方法)来做同样的事情。
最棒的是,使用第一个选项,您可能会面临从: Form
或: System.Windows.Forms.Form
到: MyCustomForm
的Ctrl+H(全部替换)风险。
除了Marc的建议之外,您可能还希望表单自动继承包含/调用它们的执行程序集的图标
这可以通过在继承的表单中添加以下代码来完成:
public MyCustomForm()
{
Icon = GetExecutableIcon();
}
public Icon GetExecutableIcon()
{
IntPtr large;
IntPtr small;
ExtractIconEx(Application.ExecutablePath, 0, out large, out small, 1);
return Icon.FromHandle(small);
}
[DllImport("Shell32")]
public static extern int ExtractIconEx(
string sFile,
int iIndex,
out IntPtr piLargeVersion,
out IntPtr piSmallVersion,
int amountIcons);
这是一种为所有表单设置相同图标的方法,而无需逐个更改。这是我在应用程序中编码的内容。
FormUtils.SetDefaultIcon();
这里有一个可以使用的完整示例。
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main(string[] args)
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
//Here it is.
FormUtils.SetDefaultIcon();
Application.Run(new Form());
}
}
这是FormUtils:类
using System.Drawing;
using System.Windows.Forms;
public static class FormUtils
{
public static void SetDefaultIcon()
{
var icon = Icon.ExtractAssociatedIcon(EntryAssemblyInfo.ExecutablePath);
typeof(Form)
.GetField("defaultIcon", System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Static)
.SetValue(null, icon);
}
}
这里是类EntryAssemblyInfo。在本例中,它被截断。它是我的自定义编码类,取自System.Winforms.Application.
using System.Security;
using System.Security.Permissions;
using System.Reflection;
using System.Diagnostics;
public static class EntryAssemblyInfo
{
private static string _executablePath;
public static string ExecutablePath
{
get
{
if (_executablePath == null)
{
PermissionSet permissionSets = new PermissionSet(PermissionState.None);
permissionSets.AddPermission(new FileIOPermission(PermissionState.Unrestricted));
permissionSets.AddPermission(new SecurityPermission(SecurityPermissionFlag.UnmanagedCode));
permissionSets.Assert();
string uriString = null;
var entryAssembly = Assembly.GetEntryAssembly();
if (entryAssembly == null)
uriString = Process.GetCurrentProcess().MainModule.FileName;
else
uriString = entryAssembly.CodeBase;
PermissionSet.RevertAssert();
if (string.IsNullOrWhiteSpace(uriString))
throw new Exception("Can not Get EntryAssembly or Process MainModule FileName");
else
{
var uri = new Uri(uriString);
if (uri.IsFile)
_executablePath = string.Concat(uri.LocalPath, Uri.UnescapeDataString(uri.Fragment));
else
_executablePath = uri.ToString();
}
}
return _executablePath;
}
}
}
我不确定是否要在这里使用继承,所以我使用了一个扩展方法:
public static class MyExtensionMethods
{
public static void SetAppIcon(this Form form)
{
form.Icon = Icon.ExtractAssociatedIcon(Application.ExecutablePath);
}
}
然后在任何形式的构造函数中:
this.SetAppIcon();
注意:如果您尝试从网络位置运行应用程序,这将导致崩溃
构造函数中设置的替代方法是覆盖Owner
属性,并采用所有者窗体的图标。
public new Form Owner {
set {
this.Icon = (value == null ? null : value.Icon);
base.Owner = value;
}
get {
return base.Owner;
}
}
这是一个老问题,但这种方法对我来说很有效,可以在所有表单中获得相同的图标,而无需将其添加到每个表单的属性中。
首先,我在"属性"下的"资源"节点中添加了一个新图标(添加资源=>新图标)。
默认情况下,会创建一些图标并将其存储在资源位置(查找图标上的"Filename"属性)。
假设你有一个.ico文件准备好了,你可以把它复制到那个文件夹。
删除在该文件夹中创建的Visual Studio,并将您自己的文件夹重命名为完全相同的名称。
Visual Studio将提示您是否要重新加载修改后的资源。(点击"是")
这样,您就可以在资源下获得徽标。
现在,我已经制定了一个通用方法,将表单标题更改为默认值,并设置表单图标,并在InitializeComponent()之后立即在每个表单中调用它;
这在形式cs中看起来如何(m是持有通用方法的类):
m.set_form_defaults(this, "Title here");
这就是方法本身:
public void set_form_defaults(Form frm,string frmTitle)
{
frm.Icon = ((System.Drawing.Icon)(Properties.Resources.Logo_V2));
frm.Text = frmTitle + " " + show_current_server();
}
当然,您不需要在这里添加表单标题,但这只是因为我想向用户(当前服务器)显示一些存储的属性
我不确定MS VS设计器是否可以处理不是直接从Form派生的窗体。如果不能,则可以尝试将主窗体的图标复制到所有其他窗体:对于Forms集合中的每个表单
form.icon = MainFrom.Icon
或者可能在每个表单的_Loaded事件中:
Icon = MainFrom.Icon