C# 脚本模块正式发布

This commit is contained in:
艾竹
2023-05-01 21:40:41 +08:00
parent 4a1fc12c52
commit 508de7a7d9
28 changed files with 886 additions and 8 deletions

View File

@@ -8,7 +8,7 @@
<PackageIcon>A.png</PackageIcon>
<PackageIconUrl />
<NeutralLanguage />
<Version>1.1.4</Version>
<Version>1.1.5</Version>
<Description>一个Wpf的Diagram控件基础库</Description>
</PropertyGroup>

View File

@@ -170,7 +170,7 @@
BorderThickness="1"
Background="#EEE"
BorderBrush="DimGray">
<Expander IsExpanded="True"
<Expander IsExpanded="False"
Background="Transparent">
<Border BorderBrush="DimGray"
BorderThickness="0,1,0,0"

View File

@@ -57,7 +57,7 @@ namespace AIStudio.Wpf.DiagramDesigner
await DoAnimation();
break;
case nameof(AnimationViewModel.Start):
await Application.Current.Dispatcher.BeginInvoke(async () => {
await Application.Current.Dispatcher.Invoke(async () => {
await DoAnimation();
});
break;