Auto generated code

This commit is contained in:
Sigmanor 2016-01-15 18:19:12 +02:00
parent 4d3f757a99
commit 1e8d7ae162
6 changed files with 1073 additions and 671 deletions

View file

@ -69,6 +69,9 @@
<setting name="ShowToolbar" serializeAs="String">
<value>True</value>
</setting>
<setting name="AutoCheckUpdate" serializeAs="String">
<value>True</value>
</setting>
</Crypto_Notepad.Properties.Settings>
<EncryptPad.Properties.Settings>
<setting name="TopPosition" serializeAs="String">

View file

@ -14,7 +14,7 @@
<TargetFrameworkProfile>
</TargetFrameworkProfile>
<IsWebBootstrapper>false</IsWebBootstrapper>
<ApplicationIcon>locked.ico</ApplicationIcon>
<ApplicationIcon>Notepad_Lock.ico</ApplicationIcon>
<SignAssembly>False</SignAssembly>
<DelaySign>False</DelaySign>
<RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent>
@ -175,23 +175,10 @@
<None Include="App.config" />
</ItemGroup>
<ItemGroup>
<Content Include="locked.ico" />
<None Include="Resources\close_b.png" />
<None Include="Resources\close_g.png" />
<None Include="Resources\eye_half.png" />
<None Include="Resources\eye.png" />
<None Include="Resources\setting_tools.png" />
<None Include="Resources\page_white_key.png" />
<None Include="Resources\diskette.png" />
<None Include="Resources\paste_plain.png" />
<None Include="Resources\page_white_copy.png" />
<None Include="Resources\cut_red.png" />
<None Include="Resources\page_white_delete.png" />
<None Include="Resources\folder_stand.png" />
<None Include="Resources\disk_multiple.png" />
<None Include="Resources\folder_vertical_document.png" />
<None Include="Resources\page_white_add.png" />
<None Include="Resources\Warning-icon-hi.png" />
<None Include="Resources\Updater.exe" />
<None Include="Resources\Ionic.Zip.dll" />
<None Include="bin\Debug\Ionic.Zip.dll" />
<Content Include="Notepad_Lock.ico" />
</ItemGroup>
<ItemGroup>
<BootstrapperPackage Include=".NETFramework,Version=v4.0">
@ -215,9 +202,7 @@
<Install>true</Install>
</BootstrapperPackage>
</ItemGroup>
<ItemGroup>
<Folder Include="bin\Debug\" />
</ItemGroup>
<ItemGroup />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.

View file

@ -150,6 +150,56 @@ internal static System.Drawing.Bitmap folder_vertical_document {
}
}
/// <summary>
/// Поиск локализованного ресурса типа System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap gnupg_keys {
get {
object obj = ResourceManager.GetObject("gnupg_keys", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Поиск локализованного ресурса типа System.Byte[].
/// </summary>
internal static byte[] Ionic_Zip {
get {
object obj = ResourceManager.GetObject("Ionic_Zip", resourceCulture);
return ((byte[])(obj));
}
}
/// <summary>
/// Поиск локализованного ресурса типа System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap key_solid {
get {
object obj = ResourceManager.GetObject("key_solid", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Поиск локализованного ресурса типа System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap notepad_lock {
get {
object obj = ResourceManager.GetObject("notepad_lock", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Поиск локализованного ресурса типа System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap page_white {
get {
object obj = ResourceManager.GetObject("page_white", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Поиск локализованного ресурса типа System.Drawing.Bitmap.
/// </summary>
@ -210,6 +260,16 @@ internal static System.Drawing.Bitmap setting_tools {
}
}
/// <summary>
/// Поиск локализованного ресурса типа System.Byte[].
/// </summary>
internal static byte[] Updater {
get {
object obj = ResourceManager.GetObject("Updater", resourceCulture);
return ((byte[])(obj));
}
}
/// <summary>
/// Поиск локализованного ресурса типа System.Drawing.Bitmap.
/// </summary>

File diff suppressed because it is too large Load diff

View file

@ -269,5 +269,17 @@ public bool ShowToolbar {
this["ShowToolbar"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("True")]
public bool AutoCheckUpdate {
get {
return ((bool)(this["AutoCheckUpdate"]));
}
set {
this["AutoCheckUpdate"] = value;
}
}
}
}

View file

@ -59,5 +59,8 @@
<Setting Name="ShowToolbar" Provider="PortableSettingsProvider" Type="System.Boolean" Scope="User">
<Value Profile="(Default)">True</Value>
</Setting>
<Setting Name="AutoCheckUpdate" Type="System.Boolean" Scope="User">
<Value Profile="(Default)">True</Value>
</Setting>
</Settings>
</SettingsFile>