AutoStart.cs
6.2 KB
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
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
using System;
using Microsoft.Win32;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
namespace ServiceManager
{
/// <summary>
/// AutoStart 的摘要说明。
/// </summary>
public class AutoStart
{
public AutoStart()
{
//
// TODO: 在此处添加构造函数逻辑
//
}
public bool ValueExisted(RegistryKey Root,string Dir,string ValueName)
{
RegistryKey p_SubKey=Root;
bool Existed = false;
try
{
p_SubKey=Root.OpenSubKey(Dir);
if(p_SubKey==null)
{
return false;
}
string [] ItemNames = p_SubKey.GetValueNames();
for(int i=0;i<ItemNames.Length;i++)
{
if(ItemNames[i] == ValueName)
{
Existed = true;
break;
}
}
}
catch(Exception ex)
{
MessageBox.Show(ex.Message);
}
return Existed;
}
//重载ValueExisted
public bool ValueExisted(RegistryKey Root,string Dir,string ValueName,object ValueProperty)
{
RegistryKey p_SubKey=Root;
bool Existed = false;
try
{
p_SubKey=Root.OpenSubKey(Dir);
if(p_SubKey==null)
{
return false;
}
string [] ItemNames = p_SubKey.GetValueNames();
for(int i=0;i<ItemNames.Length;i++)
{
if((ItemNames[i] == ValueName)&&(ValueProperty.ToString()==p_SubKey.GetValue(ValueName).ToString()))
{
Existed = true;
break;
}
}
}
catch(Exception ex)
{
MessageBox.Show(ex.Message);
}
return Existed;
}
public bool SetValueProperty(RegistryKey Root,string Dir,string ValueName,object ValueProperty)
{
RegistryKey p_SubKey=Root;
string temp=string.Empty;
bool done = false;
try
{
bool bExisted =false;
bExisted=this.ValueExisted(Root,Dir,ValueName);
if(bExisted)
{
p_SubKey = p_SubKey.OpenSubKey(Dir,true);
p_SubKey.SetValue(ValueName,ValueProperty);
done=true;
}
}
catch(Exception ex)
{
MessageBox.Show(ex.Message);
}
return done;
}
//返回空字串表明路径错误
public string CreateValue(RegistryKey Root,string Dir,string ValueName,object ValueProperty)
{
int index =0,count = 0;
RegistryKey p_SubKey=Root;
string strTemp ="";
try
{
p_SubKey=Root.OpenSubKey(Dir,true);
if(p_SubKey==null)
{
return "";
}
string [] ItemNames = p_SubKey.GetValueNames();
string NameContainer ="",CharPart="",NumPart="";
int temp=0;
bool found =false;
for(int i=0;i<ValueName.Length;i++)
{
if(char.IsDigit(ValueName[i]))
{
CharPart = ValueName.Substring(0,i);
NumPart = ValueName.Remove(0,i);
break;
}
}
if(String.IsNullOrEmpty(CharPart))
{
CharPart = ValueName;
NumPart = "";
}
//查找现有的名字,看是否有重名。如果有重名,则将名字后的数字递增。生成新的名字返回。
for(int i=0;i<ItemNames.Length;i++)
{
index = -1;
NameContainer = ItemNames[i];
index = NameContainer.IndexOf(CharPart);
if(index==0)
{
NameContainer = NameContainer.Remove(index,CharPart.Length);
if(String.IsNullOrEmpty(NameContainer))
{
count = 0;
if(String.IsNullOrEmpty(NumPart))
{
count =1;
}
}
else
{
temp = Convert.ToInt32(NameContainer);
if(temp>=count)
{
count = temp+1;
}
}
found = true;
}
}
if(found == true)
{
ValueName = CharPart+count.ToString();
}
p_SubKey.SetValue(ValueName,ValueProperty.ToString());
strTemp=ValueName;
}
catch(Exception ex)
{
MessageBox.Show(ex.Message);
}
return strTemp;
}
public bool DeleteValue(RegistryKey Root,string Dir,string ValueName)
{
bool done = false;
try
{
bool bExisted = false;
bExisted = this.ValueExisted(Root,Dir,ValueName);
if(bExisted)
{
RegistryKey p_SubKey = Root.OpenSubKey(Dir,true);
p_SubKey.DeleteValue(ValueName,true);
done = true;
}
}
catch(Exception ex)
{
MessageBox.Show(ex.Message);
}
return done;
}
public object ReadValueProperty(RegistryKey Root,string Dir,string ValueName)
{
RegistryKey p_SubKey=Root;
object oValue =null;
try
{
bool bExisted = false;
bExisted = this.ValueExisted(Root,Dir,ValueName);
if(bExisted)
{
p_SubKey = p_SubKey.OpenSubKey(Dir,true);
oValue = p_SubKey.GetValue(ValueName);
}
}
catch(Exception ex)
{
MessageBox.Show(ex.Message);
}
return oValue;
}
public string [] ListAllValueName(RegistryKey Root,string Dir)
{
RegistryKey p_SubKey=Root;
string [] ReturnValue=null;
try
{
p_SubKey = p_SubKey.OpenSubKey(Dir,true);
if(p_SubKey==null)
{
return ReturnValue;
}
ReturnValue = p_SubKey.GetValueNames();
}
catch(Exception ex)
{
MessageBox.Show(ex.Message);
}
return ReturnValue;
}
public string GetValueNameByProperty(RegistryKey Root,string Dir,object ValueProperty)
{
RegistryKey p_SubKey=Root;
string strTemp="";
string [] ReturnValue=null;
try
{
object oValue=null;
p_SubKey = p_SubKey.OpenSubKey(Dir,true);
if(p_SubKey==null)
{
return strTemp;
}
ReturnValue = p_SubKey.GetValueNames();
for(int i=0;i<ReturnValue.Length;i++)
{
oValue = p_SubKey.GetValue(ReturnValue[i]);
if(oValue.ToString()==ValueProperty.ToString())
{
strTemp = ReturnValue[i];
}
}
}
catch(Exception ex)
{
MessageBox.Show(ex.Message);
}
return strTemp;
}
public bool PropertyExisted(RegistryKey Root,string Dir,object ValueProperty)
{
RegistryKey p_SubKey=Root;
bool existed = false;
string [] ReturnValue=null;
try
{
object oValue=null;
p_SubKey = p_SubKey.OpenSubKey(Dir,true);
if(p_SubKey==null)
{
return existed;
}
ReturnValue = p_SubKey.GetValueNames();
for(int i=0;i<ReturnValue.Length;i++)
{
oValue = p_SubKey.GetValue(ReturnValue[i]);
if(oValue.ToString()==ValueProperty.ToString())
{
existed = true;
}
}
}
catch(Exception ex)
{
MessageBox.Show(ex.Message);
}
return existed;
}
}
}