• 大小: 0.09M
    文件类型: .zip
    金币: 2
    下载: 1 次
    发布日期: 2021-02-27
  • 语言: C#
  • 标签: window  右键  编辑  系统  C#  

资源简介


资源截图

代码片段和文件信息

using Microsoft.Win32;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Diagnostics;
using System.Drawing;
using System.IO;
using System.Runtime.InteropServices;
using System.Text;
using System.Windows.Forms;

namespace ShellExt
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private bool CheckSubKeyName(RegistryKey reg string keyname)
        {
            try
            {
                foreach (string str in reg.GetSubKeyNames())
                {
                    if (str.ToLower() == keyname.ToLower())
                        return true;
                }
                return false;
            }
            catch (Exception ex) { return false; }
        }

        private bool CheckValueName(RegistryKey reg string valuename)
        {
            try
            {
                foreach (s

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件       16236  2016-09-22 11:54  Form1.Designer.cs
     文件       13720  2016-09-22 11:54  Form1.cs
     文件        6386  2016-09-22 11:54  Form1.resx
     文件        6712  2016-09-22 11:54  ListViewEx.cs
     文件         503  2016-09-22 11:54  Program.cs
     目录           0  2019-07-26 22:04  Properties\
     文件        1428  2016-09-22 11:54  Properties\AssemblyInfo.cs
     文件        2844  2016-09-22 11:54  Properties\Resources.Designer.cs
     文件        5817  2016-09-22 11:54  Properties\Resources.resx
     文件        1091  2016-09-22 11:54  Properties\Settings.Designer.cs
     文件         249  2016-09-22 11:54  Properties\Settings.settings
     文件        4137  2016-09-22 11:54  ShellExt.csproj
     文件       29572  2016-09-22 11:54  Win32.cs
     文件        3174  2016-09-22 11:54  app.manifest
     目录           0  2019-07-26 22:04  bin\
     目录           0  2019-07-26 22:05  bin\Debug\
     文件       41472  2019-07-26 22:05  bin\Debug\ShellExt.exe
     文件       42496  2019-07-26 22:05  bin\Debug\ShellExt.pdb
     目录           0  2019-07-26 22:04  obj\
     目录           0  2019-07-26 22:08  obj\Debug\
     文件       18012  2019-07-26 22:08  obj\Debug\DesignTimeResolveAssemblyReferences.cache
     文件        7139  2019-07-26 22:05  obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache
     文件         180  2019-07-26 22:05  obj\Debug\ShellExt.Form1.resources
     文件         180  2019-07-26 22:05  obj\Debug\ShellExt.Properties.Resources.resources
     文件          42  2019-07-26 22:04  obj\Debug\ShellExt.csproj.CoreCompileInputs.cache
     文件        1468  2019-07-26 22:05  obj\Debug\ShellExt.csproj.FileListAbsolute.txt
     文件        1012  2019-07-26 22:05  obj\Debug\ShellExt.csproj.GenerateResource.cache
     文件        8428  2019-07-26 22:05  obj\Debug\ShellExt.csprojAssemblyReference.cache
     文件       41472  2019-07-26 22:05  obj\Debug\ShellExt.exe
     文件       42496  2019-07-26 22:05  obj\Debug\ShellExt.pdb
     目录           0  2019-07-26 22:05  obj\Debug\TempPE\
............此处省略4个文件信息

评论

共有 条评论