// 在配置文件app.config中添加字段(在<configuration>节下写)
A) 声明一个节
<configSections>
<section name="ScreenLockInit" type="System.Configuration.NameValueSectionHandler" />
</configSections>
B) 配置节中的值
<ScreenLockInit>
<add key="DISENABLE_CTRL_ESC" value="false"/>
</ScreenLockInit>
//读方法

1

2


3

4

5

6

7



8

9

10

11

12

13

14

15

16

17

18

19

20



21

22

23

24

25

26

//修改方法


1

2

3

4

5

6



7

8

9

10

11


1

2


3

4

5

6

7



8

9

10

11

12
