WPF修改桌面快捷方式图标

本文介绍了如何在Windows中使用C#编程语言更改快捷方式文件的图标以及获取其目标路径,包括ChangeLinkIcon方法和相关辅助函数的实现。
摘要由CSDN通过智能技术生成
 /// <summary>
        /// 更改快捷方式文件图标
        /// </summary>
        /// <param name="initialSource"></param>
        /// <param name="iconLocation"></param>
        public async static void ChangeLinkIcon(string initialSource, string iconLocation)
        {
            // initialSource = @"C:\Users\Public\Desktop\微信.lnk"; //获取要更改的快捷方式路径
            WshShell shell = new WshShell();
            IWshShortcut shortcut = (IWshShortcut)shell.CreateShortcut(initialSource);    //获取快捷方式对象
            //shortcut.Description = "这是修改后的备注信息!";      //修改备注,鼠标放在图标上提示改文字  (右键快捷方式的备注(O))
            shortcut.IconLocation = iconLocation;// @"C:\Users\Administrator\Desktop\2.ico";     
                                                 //其他属性也是如此
            shortcut.Save();
            await Task.Delay(500);

        }
        /// <summary>
        /// 获取快捷方式路径
        /// </summary>
        /// <param name="shortcutFilePath"></param>
        /// <returns></returns>
        static string GetShortcutTargetPath(string shortcutFilePath)
        {
            WshShell shell = new WshShell();
            IWshShortcut shortcut = (IWshShortcut)shell.CreateShortcut(shortcutFilePath);
            string targetPath = shortcut.TargetPath; // 获取快捷方式的目标路径  
            return targetPath;
        }
     
        private void SelectShortcut_Click(object sender, RoutedEventArgs e)
        {
            OpenFileDialog openFileDialog = new OpenFileDialog();

            openFileDialog.Filter = "快捷方式文件|*.lnk"; // 仅显示快捷方式文件  
            if (openFileDialog.ShowDialog() == true)
            {
                string shortcutPath = openFileDialog.FileName;
                string targetPath = GetShortcutTargetPath(shortcutPath);
                Console.WriteLine("快捷方式的目标路径是: " + targetPath);

                TbkExePath.Text = shortcutPath;
            }
        }

        private void SelectShortcutIcon_Click(object sender, RoutedEventArgs e)
        {
            try
            {
                OpenFileDialog dlg = new OpenFileDialog();

                dlg.Filter = "ico files (*.ico)|*.ico|All Files(*.*) | *.* ";

                dlg.RestoreDirectory = true;

                if (dlg.ShowDialog() == true)
                {

                    string selectedFileName = dlg.FileName;

                    string saftFileName = dlg.SafeFileName;

                    TbkIconPath.Text = selectedFileName;
                }
                else return;
            }
            catch (Exception ex)
            {

            }
        }

        private void SetShortcutIcon_Click(object sender, RoutedEventArgs e)
        {
            ChangeLinkIcon(TbkExePath.Text, TbkIconPath.Text);
        }

WPF (Windows Presentation Foundation) 应用程序中,设置图标通常涉及到修改应用程序的资源文件和主启动窗体。以下是步骤: 1. **创建或选择图标**: - 你可以使用任何图像编辑软件创建一个.ico文件,这个文件包含不同大小的图标用于不同屏幕分辨率。 - 或者从已有的ico文件中选择一个,例如项目初始创建时自动生成的一些小图标。 2. **添加到项目资源**: - 打开Visual Studio,右键点击项目的"Properties"(属性),选择"Resources"(资源管理器)。 - 点击"Add Resource"(添加资源),然后选择"ApplicationIcon"(应用程序图标),选择刚才准备好的.ico文件。 3. **设置启动窗体**: - 在主启动窗体的XAML文件中,找到`<Application>`标签,并在其内添加`StartupUri`属性,指定你的主窗口类名。 - 如果需要,在`<Application>`标签下添加`x:ResourceDictionary`元素,并将应用图标关联到一个命名空间内的资源名称,例如: ```xml <Application x:Class="YourNamespace.MainWindow" ...> ... <Application.Icon> <BitmapImage UriSource="pack://application:,,,/YourNamespace;component/Logo.ico" /> </Application.Icon> <x:ResourceDictionary> <ResourceDictionary.MergedDictionaries> <ResourceDictionary Source="pack://application:,,,/YourNamespace;component/Themes.xaml"/> </ResourceDictionary.MergedDictionaries> </x:ResourceDictionary> ... </Application> ``` 4. **运行测试**: - 保存并编译项目,然后运行应用程序,查看任务栏、桌面快捷方式以及窗口标题栏上是否显示了新设置的图标
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值