File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
HandyControlDemo_Shared/ViewModel/Main Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ public class ItemsDisplayViewModel : DemoViewModelBase<AvatarModel>
1010 public ItemsDisplayViewModel ( Func < List < AvatarModel > > getDataAction )
1111 {
1212#if NET40
13- Task . Factory . StartNew ( ( ) => DataList = getDataAction ? . Invoke ( ) ) . ContinueWith ( obj => DataGot = true ) ;
13+ Task . Factory . StartNew ( ( ) => DataList = getDataAction ? . Invoke ( ) ) . ContinueWith ( obj => DataGot = true ) ;
1414#else
1515 Task . Run ( ( ) => DataList = getDataAction ? . Invoke ( ) ) . ContinueWith ( obj => DataGot = true ) ;
1616#endif
@@ -22,7 +22,7 @@ public bool DataGot
2222 {
2323 get => _dataGot ;
2424#if NET40
25- set => Set ( nameof ( DataGot ) , ref _dataGot , value ) ;
25+ set => Set ( nameof ( DataGot ) , ref _dataGot , value ) ;
2626#else
2727 set => Set ( ref _dataGot , value ) ;
2828#endif
Original file line number Diff line number Diff line change 107107 <Compile Include =" $(MSBuildThisFileDirectory)Data\Enum\LinearLayout.cs" />
108108 <Compile Include =" $(MSBuildThisFileDirectory)Data\Enum\RunningDirection.cs" />
109109 <Compile Include =" $(MSBuildThisFileDirectory)Tools\Helper\ControlTokenManager`1.cs" />
110- <Compile Include =" ..\..\Shared\HandyControl_Shared\ Input\SimpleMouseBinding.cs" />
110+ <Compile Include =" $(MSBuildThisFileDirectory) Input\SimpleMouseBinding.cs" />
111111 <Compile Include =" $(MSBuildThisFileDirectory)Interactivity\EventToCommand.cs" />
112112 <Compile Include =" $(MSBuildThisFileDirectory)Interactivity\IEventArgsConverter.cs" />
113113 <Compile Include =" $(MSBuildThisFileDirectory)Interactivity\MouseDragElementBehaviorEx.cs" />
10181018 <None Include =" $(MSBuildThisFileDirectory)Themes\Theme_40.txt" />
10191019 <None Include =" $(MSBuildThisFileDirectory)Themes\Theme_GE45.txt" />
10201020 </ItemGroup >
1021- </Project >
1021+ </Project >
You can’t perform that action at this time.
0 commit comments