吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 17733|回复: 112
收起左侧

[Windows] [分享] win10 1903 添加简体中文美式键盘

  [复制链接]
lqbi 发表于 2019-7-5 01:00
本帖最后由 lqbi 于 2019-7-7 08:47 编辑

原创by:lmwuxia

批注 2019-07-04 203152.png
批注 2019-07-04 203220.png
批注 2019-07-04 203252.png
批注 2019-07-04 203318.png
下载地址:
https://mega.nz/#!ADRyFChT!mGNXiDd4MeELumabakhJOrCL5VMI2EgHaM0dro-eiYk

更新一下 2019.07.07 下载地址:

https://airportal.cn/?code=8019


哪位愿意帮助的大佬,请帮忙分享一下百度链接,谢谢

免费评分

参与人数 14吾爱币 +11 热心值 +12 收起 理由
一无所知 + 1 + 1 鼓励转贴优秀软件安全工具和文档!
xuxiaojie120 + 1 https://www.lanzous.com/i85c3tc 密码:2tuy
1zipp + 1 + 1 谢谢@Thanks!
whan852 + 1 + 1 每次重启都要重新设置,怎么回事?
我本善良_生 + 1 + 1 谢谢@Thanks!
wyt884211024 + 1 + 1 我很赞同!
eddy166 + 1 + 1 谢谢@Thanks!
desususula + 1 热心回复!
xq8751 + 1 + 1 谢谢@Thanks!
ssg272 + 1 我很赞同!
阿巍哦 + 1 用心讨论,共获提升!
liansen + 1 用心讨论,共获提升!
懒惰型选手 + 1 + 1 鼓励一哈哈
atgtjxbc + 1 + 1 https://yunpan.360.cn/surl_yLaYR432WcZ 提取码:a0ce

查看全部评分

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

kcuye 发表于 2019-7-23 10:45
请原谅我的失礼,我不是很喜欢用工具,所以拿了核心代码
[Asm] 纯文本查看 复制代码
01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
using System;
using System.ComponentModel;
using System.Drawing;
using System.Windows.Forms;
using Microsoft.Win32;
 
namespace 简体中文美式键盘
{
    // Token: 0x02000002 RID: 2
    public class Form1 : Form
    {
        // Token: 0x06000001 RID: 1 RVA: 0x00002050 File Offset: 0x00000250
        public Form1()
        {
            this.InitializeComponent();
            this.Text = "Windows 10 1903 添加简体中文美式键盘 By lmwuxia";
        }
 
        // Token: 0x06000002 RID: 2 RVA: 0x0000206C File Offset: 0x0000026C
        private void ButtonAddInPut_Click(object sender, EventArgs e)
        {
            RegistryKey currentUser = Registry.CurrentUser;
            RegistryKey registryKey = currentUser.OpenSubKey("Keyboard Layout\\Substitutes", true);
            registryKey.SetValue("00000804", "00000409");
            registryKey.Close();
            registryKey = currentUser.OpenSubKey("Control Panel\\International\\User Profile", true);
            registryKey.SetValue("InputMethodOverride", "0804:00000409");
            registryKey.Close();
            registryKey = currentUser.OpenSubKey("Control Panel\\International\\User Profile\\zh-Hans-CN", true);
            int num = 2;
            foreach (string text in registryKey.GetValueNames())
            {
                if (text.Contains("0804:") && text != "0804:00000409")
                {
                    registryKey.SetValue(text, num);
                    num++;
                }
            }
            registryKey.SetValue("0804:00000409", 1);
            registryKey.Close();
            currentUser.Close();
            this.buttonAddInPut.Enabled = false;
            MessageBox.Show("简体中文美式键盘已添加完成,重新启动电脑后生效!");
            Application.Exit();
        }
 
        // Token: 0x06000003 RID: 3 RVA: 0x0000215A File Offset: 0x0000035A
        protected override void Dispose(bool disposing)
        {
            if (disposing && this.components != null)
            {
                this.components.Dispose();
            }
            base.Dispose(disposing);
        }
 
        // Token: 0x06000004 RID: 4 RVA: 0x0000217C File Offset: 0x0000037C
        private void InitializeComponent()
        {
            this.buttonAddInPut = new Button();
            base.SuspendLayout();
            this.buttonAddInPut.Location = new Point(183, 125);
            this.buttonAddInPut.Name = "buttonAddInPut";
            this.buttonAddInPut.Size = new Size(185, 36);
            this.buttonAddInPut.TabIndex = 0;
            this.buttonAddInPut.Text = "添加简体中文美式键盘";
            this.buttonAddInPut.UseVisualStyleBackColor = true;
            this.buttonAddInPut.Click += this.ButtonAddInPut_Click;
            base.AutoScaleDimensions = new SizeF(8f, 20f);
            base.AutoScaleMode = AutoScaleMode.Font;
            base.ClientSize = new Size(550, 287);
            base.Controls.Add(this.buttonAddInPut);
            this.Font = new Font("微软雅黑", 10.5f, FontStyle.Regular, GraphicsUnit.Point, 134);
            base.Margin = new Padding(3, 5, 3, 5);
            base.MaximizeBox = false;
            base.Name = "Form1";
            base.StartPosition = FormStartPosition.CenterScreen;
            base.ResumeLayout(false);
        }
 
        // Token: 0x04000001 RID: 1
        private IContainer components;
 
        // Token: 0x04000002 RID: 2
        private Button buttonAddInPut;
    }
}
往事红尘 发表于 2019-7-5 01:24
Mega卡卡 发表于 2019-7-5 01:30
qq20048888 发表于 2019-7-5 01:32
支持一下。下次重装就用上了
787416128 发表于 2019-7-5 01:50
顶一个,之前一直调不出来
ai格楠 发表于 2019-7-5 01:51
支持,正好重装系统
ericye_cn 发表于 2019-7-5 01:57
实用技能,感谢分享
月亮我的心 发表于 2019-7-5 02:03
相信自己那就是就是
成国大吉大利 发表于 2019-7-5 02:18
好软件支持楼主发资源
sd63437120 发表于 2019-7-5 04:19
谢谢  分享
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2025-8-17 17:30

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表