2014-03-19 04:05:27 +08:00
|
|
|
|
using System;
|
|
|
|
|
|
2015-01-03 15:20:34 +08:00
|
|
|
|
namespace Wox.Plugin.Program.ProgramSources
|
2014-03-19 04:05:27 +08:00
|
|
|
|
{
|
2016-07-22 02:51:47 +08:00
|
|
|
|
|
2014-12-15 22:58:49 +08:00
|
|
|
|
[Serializable]
|
2016-07-22 02:51:47 +08:00
|
|
|
|
public sealed class UserStartMenuProgramSource : FileSystemProgramSource
|
2014-03-19 04:05:27 +08:00
|
|
|
|
{
|
2016-07-22 02:51:47 +08:00
|
|
|
|
public UserStartMenuProgramSource()
|
2014-03-19 20:16:20 +08:00
|
|
|
|
{
|
2016-07-22 02:51:47 +08:00
|
|
|
|
Location = Environment.GetFolderPath(Environment.SpecialFolder.Programs);
|
2014-03-19 04:05:27 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2016-07-22 02:51:47 +08:00
|
|
|
|
}
|