Cleaned and added a base class for view models with background processing tha uses the new ThreadedAction class to do its background processing; added a view binding interface for WinForms that emulates the WPF design
git-svn-id: file:///srv/devel/repo-conversion/nuwi@41 d2e56fa2-650e-0410-a79f-9358c0239efd
This commit is contained in:
parent
435935691a
commit
4ef5dd9430
6 changed files with 674 additions and 0 deletions
|
|
@ -55,6 +55,17 @@
|
|||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="Source\ViewModels\ThreadedViewModel.cs" />
|
||||
<Compile Include="Source\ViewModels\ThreadedViewModel.Test.cs">
|
||||
<DependentUpon>ThreadedViewModel.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Source\Views\IView.cs" />
|
||||
<Compile Include="Source\Views\ViewControl.cs">
|
||||
<SubType>UserControl</SubType>
|
||||
</Compile>
|
||||
<Compile Include="Source\Views\ViewForm.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<EmbeddedResource Include="Source\ProgressReporter\ProgressReporterForm.resx">
|
||||
<DependentUpon>ProgressReporterForm.cs</DependentUpon>
|
||||
<SubType>Designer</SubType>
|
||||
|
|
@ -109,6 +120,7 @@
|
|||
<Link>Foundation.snk</Link>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
<ItemGroup />
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||
Other similar extension points exist, see Microsoft.Common.targets.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue