------ #### RaUIV4 V4.0.2311.0701 - *.[全新]整合了MyDb、ryControls、MyDb_MySQL等dll文件到RaUI一个项目。 - *.[新增]新增ApkOp类,可以轻松获取APK信息。 - *.[新增]新增JsonExt扩展类,让Json操作更简单。 - *.[新增]新增WebP类,可以支持webp格式的图片。 - *.[改进]ryQuickSQL中的AddField方法改为自动替换已存在的同名值。 - *.[修复]ryQuickSQL中的AddFieldCalc方法无法正常计算的BUG。
74 lines
2.4 KiB
C#
74 lines
2.4 KiB
C#
using System.Configuration;
|
|
#pragma warning disable CS1591 // 缺少对公共可见类型或成员的 XML 注释
|
|
namespace WeifenLuo.WinFormsUI.Docking.Configuration
|
|
{
|
|
public class PatchSection : ConfigurationSection
|
|
{
|
|
[ConfigurationProperty("enableAll", DefaultValue = null)]
|
|
public bool? EnableAll
|
|
{
|
|
get { return (bool?)base["enableAll"]; }
|
|
}
|
|
|
|
[ConfigurationProperty("enableHighDpi", DefaultValue = true)]
|
|
public bool EnableHighDpi
|
|
{
|
|
get { return (bool)base["enableHighDpi"]; }
|
|
}
|
|
|
|
[ConfigurationProperty("enableMemoryLeakFix", DefaultValue = true)]
|
|
public bool EnableMemoryLeakFix
|
|
{
|
|
get { return (bool)base["enableMemoryLeakFix"]; }
|
|
}
|
|
|
|
[ConfigurationProperty("enableMainWindowFocusLostFix", DefaultValue = true)]
|
|
public bool EnableMainWindowFocusLostFix
|
|
{
|
|
get { return (bool)base["enableMainWindowFocusLostFix"]; }
|
|
}
|
|
|
|
[ConfigurationProperty("enableNestedDisposalFix", DefaultValue = true)]
|
|
public bool EnableNestedDisposalFix
|
|
{
|
|
get { return (bool)base["enableNestedDisposalFix"]; }
|
|
}
|
|
|
|
[ConfigurationProperty("enableFontInheritanceFix", DefaultValue = true)]
|
|
public bool EnableFontInheritanceFix
|
|
{
|
|
get { return (bool)base["enableFontInheritanceFix"]; }
|
|
}
|
|
|
|
[ConfigurationProperty("enableContentOrderFix", DefaultValue = true)]
|
|
public bool EnableContentOrderFix
|
|
{
|
|
get { return (bool)base["enableContentOrderFix"]; }
|
|
}
|
|
|
|
[ConfigurationProperty("enableActiveXFix", DefaultValue = false)] // disabled by default to avoid side effect.
|
|
public bool EnableActiveXFix
|
|
{
|
|
get { return (bool)base["enableActiveXFix"]; }
|
|
}
|
|
|
|
[ConfigurationProperty("enableDisplayingPaneFix", DefaultValue = true)]
|
|
public bool EnableDisplayingPaneFix
|
|
{
|
|
get { return (bool)base["enableDisplayingPaneFix"]; }
|
|
}
|
|
|
|
[ConfigurationProperty("enableActiveControlFix", DefaultValue = true)]
|
|
public bool EnableActiveControlFix
|
|
{
|
|
get { return (bool)base["enableActiveControlFix"]; }
|
|
}
|
|
|
|
[ConfigurationProperty("enableFloatSplitterFix", DefaultValue = true)]
|
|
public bool EnableFloatSplitterFix
|
|
{
|
|
get { return (bool)base["enableFloatSplitterFix"]; }
|
|
}
|
|
}
|
|
}
|