init commit
This commit is contained in:
51
output/VideoReader/Properties/Resources.cs
Normal file
51
output/VideoReader/Properties/Resources.cs
Normal file
@@ -0,0 +1,51 @@
|
||||
using System.CodeDom.Compiler;
|
||||
using System.ComponentModel;
|
||||
using System.Diagnostics;
|
||||
using System.Diagnostics.CodeAnalysis;
|
||||
using System.Globalization;
|
||||
using System.Resources;
|
||||
using System.Runtime.CompilerServices;
|
||||
|
||||
namespace VideoReader.Properties;
|
||||
|
||||
[GeneratedCode("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")]
|
||||
[CompilerGenerated]
|
||||
[DebuggerNonUserCode]
|
||||
internal class Resources
|
||||
{
|
||||
private static ResourceManager resourceMan;
|
||||
|
||||
private static CultureInfo resourceCulture;
|
||||
|
||||
[EditorBrowsable(EditorBrowsableState.Advanced)]
|
||||
internal static ResourceManager ResourceManager
|
||||
{
|
||||
get
|
||||
{
|
||||
if (resourceMan == null)
|
||||
{
|
||||
ResourceManager resourceManager = new ResourceManager("VideoReader.Properties.Resources", typeof(Resources).Assembly);
|
||||
resourceMan = resourceManager;
|
||||
}
|
||||
return resourceMan;
|
||||
}
|
||||
}
|
||||
|
||||
[EditorBrowsable(EditorBrowsableState.Advanced)]
|
||||
internal static CultureInfo Culture
|
||||
{
|
||||
get
|
||||
{
|
||||
return resourceCulture;
|
||||
}
|
||||
set
|
||||
{
|
||||
resourceCulture = value;
|
||||
}
|
||||
}
|
||||
|
||||
[SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
|
||||
internal Resources()
|
||||
{
|
||||
}
|
||||
}
|
||||
75
output/VideoReader/Properties/Settings.cs
Normal file
75
output/VideoReader/Properties/Settings.cs
Normal file
@@ -0,0 +1,75 @@
|
||||
using System.CodeDom.Compiler;
|
||||
using System.Configuration;
|
||||
using System.Diagnostics;
|
||||
using System.Runtime.CompilerServices;
|
||||
|
||||
namespace VideoReader.Properties;
|
||||
|
||||
[GeneratedCode("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "16.10.0.0")]
|
||||
[CompilerGenerated]
|
||||
public sealed class Settings : ApplicationSettingsBase
|
||||
{
|
||||
private static Settings defaultInstance = (Settings)(object)SettingsBase.Synchronized((SettingsBase)(object)new Settings());
|
||||
|
||||
public static Settings Default => defaultInstance;
|
||||
|
||||
[UserScopedSetting]
|
||||
[DebuggerNonUserCode]
|
||||
[DefaultSettingValue("5M")]
|
||||
public string BitRate
|
||||
{
|
||||
get
|
||||
{
|
||||
return (string)((SettingsBase)this)["BitRate"];
|
||||
}
|
||||
set
|
||||
{
|
||||
((SettingsBase)this)["BitRate"] = value;
|
||||
}
|
||||
}
|
||||
|
||||
[DebuggerNonUserCode]
|
||||
[UserScopedSetting]
|
||||
[DefaultSettingValue("71")]
|
||||
public byte Chenal
|
||||
{
|
||||
get
|
||||
{
|
||||
return (byte)((SettingsBase)this)["Chenal"];
|
||||
}
|
||||
set
|
||||
{
|
||||
((SettingsBase)this)["Chenal"] = value;
|
||||
}
|
||||
}
|
||||
|
||||
[UserScopedSetting]
|
||||
[DebuggerNonUserCode]
|
||||
[DefaultSettingValue("1")]
|
||||
public int Specification
|
||||
{
|
||||
get
|
||||
{
|
||||
return (int)((SettingsBase)this)["Specification"];
|
||||
}
|
||||
set
|
||||
{
|
||||
((SettingsBase)this)["Specification"] = value;
|
||||
}
|
||||
}
|
||||
|
||||
[DebuggerNonUserCode]
|
||||
[UserScopedSetting]
|
||||
[DefaultSettingValue("False")]
|
||||
public bool SaveVideo
|
||||
{
|
||||
get
|
||||
{
|
||||
return (bool)((SettingsBase)this)["SaveVideo"];
|
||||
}
|
||||
set
|
||||
{
|
||||
((SettingsBase)this)["SaveVideo"] = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user