From 26b051b222c88fe15b3973e357957dcafd032627 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E5=B0=8F=E7=BA=A2=E5=B8=BD?= <761716178@qq.com>
Date: Wed, 27 Dec 2023 15:24:48 +0800
Subject: [PATCH] =?UTF-8?q?=E6=94=B9=E7=89=88=E6=9C=AC=E5=8F=B7=EF=BC=8C?=
=?UTF-8?q?=E8=A7=A3=E5=86=B3=E6=A0=B7=E5=BC=8F=E6=8E=92=E5=BA=8F=E9=97=AE?=
=?UTF-8?q?=E9=A2=98?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
CPF.Linux/CPF.Linux.csproj | 3 ++-
CPF.Mac/CPF.Mac.csproj | 3 ++-
CPF.Skia/CPF.Skia.csproj | 3 ++-
CPF.Windows/CPF.Windows.csproj | 3 ++-
CPF/Binding.cs | 4 ++--
CPF/CPF.csproj | 6 +++---
CPF/Controls/CodeTextBox/CodeTextBox.cs | 6 +++---
CPF/Controls/CodeTextBox/CodeTextView.cs | 2 +-
CPF/Controls/ItemCollection.cs | 2 +-
CPF/Controls/View.cs | 2 +-
CPF/CpfObject.cs | 27 +++++++++++++++++++++++-
CPF/Design/DesignPlatform.cs | 2 +-
CPF/Documents/Block.cs | 2 +-
CPF/Documents/IDocumentContainer.cs | 2 +-
CPF/Net4/EventHandler.cs | 2 +-
CPF/Net4/WeakReference.cs | 2 +-
CPF/ObjectExtenstions.cs | 4 ++--
CPF/Platform/Application.cs | 2 +-
CPF/Platform/RuntimePlatform.cs | 2 +-
CPF/Platform/Screen.cs | 2 +-
CPF/Shapes/Polyline.cs | 2 +-
CPF/Threading/DispatcherTimer.cs | 2 +-
CPF/UIElement.cs | 2 +-
CPF/UIElementCollection.cs | 2 +-
24 files changed, 59 insertions(+), 30 deletions(-)
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