diff --git a/CPF.Linux/CPF.Linux.csproj b/CPF.Linux/CPF.Linux.csproj
index 1f0e1e2..391f66f 100644
--- a/CPF.Linux/CPF.Linux.csproj
+++ b/CPF.Linux/CPF.Linux.csproj
@@ -2,7 +2,7 @@
netstandard2.0
- 0.9.6.6
+ 0.9.6.7
QQ:761716178
QQ:761716178
QQ:761716178 跨平台UI框架
@@ -12,6 +12,7 @@
Xhm.CPF.Linux
false
true
+ false
diff --git a/CPF.Mac/CPF.Mac.csproj b/CPF.Mac/CPF.Mac.csproj
index 54153b9..6a7dcf0 100644
--- a/CPF.Mac/CPF.Mac.csproj
+++ b/CPF.Mac/CPF.Mac.csproj
@@ -3,7 +3,7 @@
netstandard2.1
QQ:761716178 跨平台UI框架
- 0.9.6.6
+ 0.9.6.7
Xhm.CPF.Mac
CPF(Cross platform UI framework) QQ:761716178 跨平台UI框架 http://cpf.cskin.net/
Copyright (c) 2020 by http://cpf.cskin.net/
@@ -11,6 +11,7 @@
QQ:761716178
QQ:761716178
true
+ false
diff --git a/CPF.Skia/CPF.Skia.csproj b/CPF.Skia/CPF.Skia.csproj
index d1a32b3..e004b4b 100644
--- a/CPF.Skia/CPF.Skia.csproj
+++ b/CPF.Skia/CPF.Skia.csproj
@@ -3,13 +3,14 @@
netstandard2.0
QQ:761716178 跨平台UI框架
- 0.9.6.6
+ 0.9.6.7
Xhm.CPF.Skia
CPF(Cross platform UI framework) QQ:761716178 跨平台UI框架 http://cpf.cskin.net/
Copyright (c) 2020 by http://cpf.cskin.net/
CPF(Cross platform UI framework) QQ:761716178 跨平台UI框架 http://cpf.cskin.net/
QQ:761716178
QQ:761716178
+ false
diff --git a/CPF.Windows/CPF.Windows.csproj b/CPF.Windows/CPF.Windows.csproj
index 165a08d..3e8368f 100644
--- a/CPF.Windows/CPF.Windows.csproj
+++ b/CPF.Windows/CPF.Windows.csproj
@@ -3,7 +3,7 @@
net40;netstandard2.0;net5
QQ:761716178 跨平台UI框架
- 0.9.6.6
+ 0.9.6.7
Xhm.CPF.Windows
CPF(Cross platform UI framework) QQ:761716178 跨平台UI框架 http://cpf.cskin.net/
http://cpf.cskin.net/
@@ -55,6 +55,7 @@
Net4
+ false
diff --git a/CPF/Binding.cs b/CPF/Binding.cs
index f58af5c..d72013f 100644
--- a/CPF/Binding.cs
+++ b/CPF/Binding.cs
@@ -1009,7 +1009,7 @@ namespace CPF
public bool ReadValue(out T value) where T : struct
{
value = default;
-#if Net4
+#if NET40
int len = Marshal.SizeOf(typeof(T));
#else
int len = Marshal.SizeOf();
@@ -1018,7 +1018,7 @@ namespace CPF
{
IntPtr ptr = Marshal.AllocHGlobal(len);
Marshal.Copy(data, 0, ptr, len);
-#if Net4
+#if NET40
value = (T)Marshal.PtrToStructure(ptr, typeof(T));
#else
value = Marshal.PtrToStructure(ptr);
diff --git a/CPF/CPF.csproj b/CPF/CPF.csproj
index 6b672d5..16e32b4 100644
--- a/CPF/CPF.csproj
+++ b/CPF/CPF.csproj
@@ -6,7 +6,7 @@
QQ:761716178
QQ:761716178 跨平台UI框架
CPF(Cross platform UI framework) QQ:761716178 跨平台UI框架 http://cpf.cskin.net/
- 0.9.6.6
+ 0.9.6.7
9.0
Xhm.CPF
@@ -50,7 +50,7 @@
-
+
@@ -95,7 +95,7 @@
- Net4
+ false
diff --git a/CPF/Controls/CodeTextBox/CodeTextBox.cs b/CPF/Controls/CodeTextBox/CodeTextBox.cs
index 9aa4271..4879bbb 100644
--- a/CPF/Controls/CodeTextBox/CodeTextBox.cs
+++ b/CPF/Controls/CodeTextBox/CodeTextBox.cs
@@ -225,7 +225,7 @@ namespace CPF.Controls
///
/// 布局好的行
///
-#if Net4
+#if NET40
public IList Lines
{
get { return codeTextView.Lines; }
@@ -269,7 +269,7 @@ namespace CPF.Controls
if (render)
{
render = false;
-#if Net4
+#if NET40
await TaskEx.Delay(30);
#else
await Task.Delay(30);
@@ -285,7 +285,7 @@ namespace CPF.Controls
Cancellation = new CancellationTokenSource();
}
var ks = KeywordsStyles.ToArray();
-#if Net4
+#if NET40
var styles = await TaskEx.Run(() => CodeTextView.RenderKeywords(Cancellation.Token, ks, codeTextView.Text));
#else
var styles = await Task.Run(() => CodeTextView.RenderKeywords(Cancellation.Token, ks, codeTextView.Text));
diff --git a/CPF/Controls/CodeTextBox/CodeTextView.cs b/CPF/Controls/CodeTextBox/CodeTextView.cs
index c530f13..dd71e63 100644
--- a/CPF/Controls/CodeTextBox/CodeTextView.cs
+++ b/CPF/Controls/CodeTextBox/CodeTextView.cs
@@ -742,7 +742,7 @@ namespace CPF.Controls
///
/// 布局好的行
///
-#if Net4
+#if NET40
public IList Lines
{
get { return lines; }
diff --git a/CPF/Controls/ItemCollection.cs b/CPF/Controls/ItemCollection.cs
index b8c9b61..0cb5a1b 100644
--- a/CPF/Controls/ItemCollection.cs
+++ b/CPF/Controls/ItemCollection.cs
@@ -273,7 +273,7 @@ namespace CPF.Controls
/// 缓存的属性
/// 降序
public void Sort(Comparison