Skip to content

Commit

Permalink
提交已有项目信息
Browse files Browse the repository at this point in the history
  • Loading branch information
ivu4e committed Nov 8, 2016
1 parent fc489e3 commit 62715dd
Show file tree
Hide file tree
Showing 180 changed files with 18,423 additions and 0 deletions.
20 changes: 20 additions & 0 deletions Screenshot/Screenshot.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@

Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Screenshot", "Screenshot\Screenshot.csproj", "{6C581A69-70CA-4F7E-BC8E-0CEB0F52F07E}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|x86 = Debug|x86
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{6C581A69-70CA-4F7E-BC8E-0CEB0F52F07E}.Debug|x86.ActiveCfg = Debug|x86
{6C581A69-70CA-4F7E-BC8E-0CEB0F52F07E}.Debug|x86.Build.0 = Debug|x86
{6C581A69-70CA-4F7E-BC8E-0CEB0F52F07E}.Release|x86.ActiveCfg = Release|x86
{6C581A69-70CA-4F7E-BC8E-0CEB0F52F07E}.Release|x86.Build.0 = Release|x86
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
Binary file added Screenshot/Screenshot.suo
Binary file not shown.
36 changes: 36 additions & 0 deletions Screenshot/Screenshot/AppSettingKeys.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Screenshot
{
/// <summary>
/// 提供配置文件中AppSettings节中对应的Key名称
/// </summary>
public static class AppSettingKeys
{
//基本设置
public static string HotKeyMode = "HotKeyMode";
public static string InfoBoxVisible = "InfoBoxVisible";
public static string ToolBoxVisible = "ToolBoxVisible";
public static string ZoomBoxVisible = "ZoomBoxVisible";
public static string ZoomBoxWidth = "ZoomBoxWidth";
public static string ZoomBoxHeight = "ZoomBoxHeight";
public static string IsCutCursor = "IsCutCursor";
//图片上传
public static string PicDescFieldName = "PicDescFieldName";
public static string ImageFieldName = "ImageFieldName";
public static string PicDesc = "PicDesc";
public static string UploadUrl = "UploadUrl";
public static string DoUpload = "DoUpload";
//自动保存
public static string AutoSaveToDisk = "AutoSaveToDisk";
public static string AutoSaveSubDir = "AutoSaveSubDir";
public static string AutoSaveDirectory = "AutoSaveDirectory";
public static string AutoSaveFileName1 = "AutoSaveFileName1";
public static string AutoSaveFileName2 = "AutoSaveFileName2";
public static string AutoSaveFileName3 = "AutoSaveFileName3";

}
}
176 changes: 176 additions & 0 deletions Screenshot/Screenshot/Form1.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 62715dd

Please sign in to comment.