| @@ -10,9 +10,10 | |||||
| 10 | <AppDesignerFolder>Properties</AppDesignerFolder> |  | 10 | <AppDesignerFolder>Properties</AppDesignerFolder> | |
| 11 | <RootNamespace>Implab.Fx.Test</RootNamespace> |  | 11 | <RootNamespace>Implab.Fx.Test</RootNamespace> | |
| 12 | <AssemblyName>Implab.Fx.Test</AssemblyName> |  | 12 | <AssemblyName>Implab.Fx.Test</AssemblyName> | |
| 13 | <TargetFrameworkVersion>v4. |  | 13 | <TargetFrameworkVersion>v4.5</TargetFrameworkVersion> | |
| 14 | <FileAlignment>512</FileAlignment> |  | 14 | <FileAlignment>512</FileAlignment> | |
| 15 | <ProjectTypeGuids>{3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids> |  | 15 | <ProjectTypeGuids>{3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids> | |
|  | 16 | <TargetFrameworkProfile /> | |||
| 16 | </PropertyGroup> |  | 17 | </PropertyGroup> | |
| 17 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> |  | 18 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | |
| 18 | <DebugSymbols>true</DebugSymbols> |  | 19 | <DebugSymbols>true</DebugSymbols> | |
| @@ -22,6 +23,7 | |||||
| 22 | <DefineConstants>DEBUG;TRACE</DefineConstants> |  | 23 | <DefineConstants>DEBUG;TRACE</DefineConstants> | |
| 23 | <ErrorReport>prompt</ErrorReport> |  | 24 | <ErrorReport>prompt</ErrorReport> | |
| 24 | <WarningLevel>4</WarningLevel> |  | 25 | <WarningLevel>4</WarningLevel> | |
|  | 26 | <Prefer32Bit>false</Prefer32Bit> | |||
| 25 | </PropertyGroup> |  | 27 | </PropertyGroup> | |
| 26 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> |  | 28 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | |
| 27 | <DebugType>pdbonly</DebugType> |  | 29 | <DebugType>pdbonly</DebugType> | |
| @@ -30,6 +32,7 | |||||
| 30 | <DefineConstants>TRACE</DefineConstants> |  | 32 | <DefineConstants>TRACE</DefineConstants> | |
| 31 | <ErrorReport>prompt</ErrorReport> |  | 33 | <ErrorReport>prompt</ErrorReport> | |
| 32 | <WarningLevel>4</WarningLevel> |  | 34 | <WarningLevel>4</WarningLevel> | |
|  | 35 | <Prefer32Bit>false</Prefer32Bit> | |||
| 33 | </PropertyGroup> |  | 36 | </PropertyGroup> | |
| 34 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug 4.5|AnyCPU' "> |  | 37 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug 4.5|AnyCPU' "> | |
| 35 | <DebugSymbols>true</DebugSymbols> |  | 38 | <DebugSymbols>true</DebugSymbols> | |
| @@ -39,6 +42,7 | |||||
| 39 | <DefineConstants>DEBUG;TRACE</DefineConstants> |  | 42 | <DefineConstants>DEBUG;TRACE</DefineConstants> | |
| 40 | <ErrorReport>prompt</ErrorReport> |  | 43 | <ErrorReport>prompt</ErrorReport> | |
| 41 | <WarningLevel>4</WarningLevel> |  | 44 | <WarningLevel>4</WarningLevel> | |
|  | 45 | <Prefer32Bit>false</Prefer32Bit> | |||
| 42 | </PropertyGroup> |  | 46 | </PropertyGroup> | |
| 43 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release 4.5|AnyCPU' "> |  | 47 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release 4.5|AnyCPU' "> | |
| 44 | <DebugType>pdbonly</DebugType> |  | 48 | <DebugType>pdbonly</DebugType> | |
| @@ -47,6 +51,7 | |||||
| 47 | <DefineConstants>TRACE</DefineConstants> |  | 51 | <DefineConstants>TRACE</DefineConstants> | |
| 48 | <ErrorReport>prompt</ErrorReport> |  | 52 | <ErrorReport>prompt</ErrorReport> | |
| 49 | <WarningLevel>4</WarningLevel> |  | 53 | <WarningLevel>4</WarningLevel> | |
|  | 54 | <Prefer32Bit>false</Prefer32Bit> | |||
| 50 | </PropertyGroup> |  | 55 | </PropertyGroup> | |
| 51 | <ItemGroup> |  | 56 | <ItemGroup> | |
| 52 | <Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" /> |  | 57 | <Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" /> | |
| @@ -27,7 +27,7 namespace Implab.Fx.Test | |||||
| 27 | mainForm.ButtonEvent += (sender, args) => |  | 27 | mainForm.ButtonEvent += (sender, args) => | |
| 28 | { |  | 28 | { | |
| 29 | var overlay = new OverlayForm(); |  | 29 | var overlay = new OverlayForm(); | |
| 30 | mainForm.OverlayFadeIn(overlay). |  | 30 | mainForm.OverlayFadeIn(overlay).On( | |
| 31 | o => o.ButtonEvent += (s2, args2) => o.CloseFadeOut() |  | 31 | o => o.ButtonEvent += (s2, args2) => o.CloseFadeOut() | |
| 32 | ); |  | 32 | ); | |
| 33 | }; |  | 33 | }; | |
| @@ -10,9 +10,10 | |||||
| 10 | <AppDesignerFolder>Properties</AppDesignerFolder> |  | 10 | <AppDesignerFolder>Properties</AppDesignerFolder> | |
| 11 | <RootNamespace>Implab.Fx</RootNamespace> |  | 11 | <RootNamespace>Implab.Fx</RootNamespace> | |
| 12 | <AssemblyName>Implab.Fx</AssemblyName> |  | 12 | <AssemblyName>Implab.Fx</AssemblyName> | |
| 13 | <TargetFrameworkVersion>v4. |  | 13 | <TargetFrameworkVersion>v4.5</TargetFrameworkVersion> | |
| 14 | <FileAlignment>512</FileAlignment> |  | 14 | <FileAlignment>512</FileAlignment> | |
| 15 | <ReleaseVersion>0.2</ReleaseVersion> |  | 15 | <ReleaseVersion>0.2</ReleaseVersion> | |
|  | 16 | <TargetFrameworkProfile /> | |||
| 16 | </PropertyGroup> |  | 17 | </PropertyGroup> | |
| 17 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> |  | 18 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | |
| 18 | <DebugSymbols>true</DebugSymbols> |  | 19 | <DebugSymbols>true</DebugSymbols> | |
| @@ -22,6 +23,7 | |||||
| 22 | <DefineConstants>DEBUG;TRACE</DefineConstants> |  | 23 | <DefineConstants>DEBUG;TRACE</DefineConstants> | |
| 23 | <ErrorReport>prompt</ErrorReport> |  | 24 | <ErrorReport>prompt</ErrorReport> | |
| 24 | <WarningLevel>4</WarningLevel> |  | 25 | <WarningLevel>4</WarningLevel> | |
|  | 26 | <Prefer32Bit>false</Prefer32Bit> | |||
| 25 | </PropertyGroup> |  | 27 | </PropertyGroup> | |
| 26 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> |  | 28 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | |
| 27 | <DebugType>pdbonly</DebugType> |  | 29 | <DebugType>pdbonly</DebugType> | |
| @@ -30,6 +32,7 | |||||
| 30 | <DefineConstants>TRACE</DefineConstants> |  | 32 | <DefineConstants>TRACE</DefineConstants> | |
| 31 | <ErrorReport>prompt</ErrorReport> |  | 33 | <ErrorReport>prompt</ErrorReport> | |
| 32 | <WarningLevel>4</WarningLevel> |  | 34 | <WarningLevel>4</WarningLevel> | |
|  | 35 | <Prefer32Bit>false</Prefer32Bit> | |||
| 33 | </PropertyGroup> |  | 36 | </PropertyGroup> | |
| 34 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug 4.5|AnyCPU' "> |  | 37 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug 4.5|AnyCPU' "> | |
| 35 | <DebugSymbols>true</DebugSymbols> |  | 38 | <DebugSymbols>true</DebugSymbols> | |
| @@ -39,6 +42,7 | |||||
| 39 | <DefineConstants>DEBUG;TRACE</DefineConstants> |  | 42 | <DefineConstants>DEBUG;TRACE</DefineConstants> | |
| 40 | <ErrorReport>prompt</ErrorReport> |  | 43 | <ErrorReport>prompt</ErrorReport> | |
| 41 | <WarningLevel>4</WarningLevel> |  | 44 | <WarningLevel>4</WarningLevel> | |
|  | 45 | <Prefer32Bit>false</Prefer32Bit> | |||
| 42 | </PropertyGroup> |  | 46 | </PropertyGroup> | |
| 43 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release 4.5|AnyCPU' "> |  | 47 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release 4.5|AnyCPU' "> | |
| 44 | <DebugType>pdbonly</DebugType> |  | 48 | <DebugType>pdbonly</DebugType> | |
| @@ -47,6 +51,7 | |||||
| 47 | <DefineConstants>TRACE</DefineConstants> |  | 51 | <DefineConstants>TRACE</DefineConstants> | |
| 48 | <ErrorReport>prompt</ErrorReport> |  | 52 | <ErrorReport>prompt</ErrorReport> | |
| 49 | <WarningLevel>4</WarningLevel> |  | 53 | <WarningLevel>4</WarningLevel> | |
|  | 54 | <Prefer32Bit>false</Prefer32Bit> | |||
| 50 | </PropertyGroup> |  | 55 | </PropertyGroup> | |
| 51 | <ItemGroup> |  | 56 | <ItemGroup> | |
| 52 | <Reference Include="System" /> |  | 57 | <Reference Include="System" /> | |
| @@ -68,7 +73,7 | |||||
| 68 | </ItemGroup> |  | 73 | </ItemGroup> | |
| 69 | <ItemGroup> |  | 74 | <ItemGroup> | |
| 70 | <ProjectReference Include="..\Implab\Implab.csproj"> |  | 75 | <ProjectReference Include="..\Implab\Implab.csproj"> | |
| 71 | <Project>{ |  | 76 | <Project>{f550f1f8-8746-4ad0-9614-855f4c4b7f05}</Project> | |
| 72 | <Name>Implab</Name> |  | 77 | <Name>Implab</Name> | |
| 73 | </ProjectReference> |  | 78 | </ProjectReference> | |
| 74 | </ItemGroup> |  | 79 | </ItemGroup> | |
| @@ -10,9 +10,10 | |||||
| 10 | <AppDesignerFolder>Properties</AppDesignerFolder> |  | 10 | <AppDesignerFolder>Properties</AppDesignerFolder> | |
| 11 | <RootNamespace>Implab.Test</RootNamespace> |  | 11 | <RootNamespace>Implab.Test</RootNamespace> | |
| 12 | <AssemblyName>Implab.Test</AssemblyName> |  | 12 | <AssemblyName>Implab.Test</AssemblyName> | |
| 13 | <TargetFrameworkVersion>v4. |  | 13 | <TargetFrameworkVersion>v4.5</TargetFrameworkVersion> | |
| 14 | <FileAlignment>512</FileAlignment> |  | 14 | <FileAlignment>512</FileAlignment> | |
| 15 | <ProjectTypeGuids>{3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids> |  | 15 | <ProjectTypeGuids>{3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids> | |
|  | 16 | <TargetFrameworkProfile /> | |||
| 16 | </PropertyGroup> |  | 17 | </PropertyGroup> | |
| 17 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> |  | 18 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | |
| 18 | <DebugSymbols>true</DebugSymbols> |  | 19 | <DebugSymbols>true</DebugSymbols> | |
| @@ -22,6 +23,7 | |||||
| 22 | <DefineConstants>DEBUG;TRACE</DefineConstants> |  | 23 | <DefineConstants>DEBUG;TRACE</DefineConstants> | |
| 23 | <ErrorReport>prompt</ErrorReport> |  | 24 | <ErrorReport>prompt</ErrorReport> | |
| 24 | <WarningLevel>4</WarningLevel> |  | 25 | <WarningLevel>4</WarningLevel> | |
|  | 26 | <Prefer32Bit>false</Prefer32Bit> | |||
| 25 | </PropertyGroup> |  | 27 | </PropertyGroup> | |
| 26 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> |  | 28 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | |
| 27 | <DebugType>pdbonly</DebugType> |  | 29 | <DebugType>pdbonly</DebugType> | |
| @@ -30,6 +32,7 | |||||
| 30 | <DefineConstants>TRACE</DefineConstants> |  | 32 | <DefineConstants>TRACE</DefineConstants> | |
| 31 | <ErrorReport>prompt</ErrorReport> |  | 33 | <ErrorReport>prompt</ErrorReport> | |
| 32 | <WarningLevel>4</WarningLevel> |  | 34 | <WarningLevel>4</WarningLevel> | |
|  | 35 | <Prefer32Bit>false</Prefer32Bit> | |||
| 33 | </PropertyGroup> |  | 36 | </PropertyGroup> | |
| 34 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug 4.5|AnyCPU' "> |  | 37 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug 4.5|AnyCPU' "> | |
| 35 | <DebugSymbols>true</DebugSymbols> |  | 38 | <DebugSymbols>true</DebugSymbols> | |
| @@ -39,6 +42,7 | |||||
| 39 | <DefineConstants>DEBUG;TRACE</DefineConstants> |  | 42 | <DefineConstants>DEBUG;TRACE</DefineConstants> | |
| 40 | <ErrorReport>prompt</ErrorReport> |  | 43 | <ErrorReport>prompt</ErrorReport> | |
| 41 | <WarningLevel>4</WarningLevel> |  | 44 | <WarningLevel>4</WarningLevel> | |
|  | 45 | <Prefer32Bit>false</Prefer32Bit> | |||
| 42 | </PropertyGroup> |  | 46 | </PropertyGroup> | |
| 43 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release 4.5|AnyCPU' "> |  | 47 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release 4.5|AnyCPU' "> | |
| 44 | <DebugType>pdbonly</DebugType> |  | 48 | <DebugType>pdbonly</DebugType> | |
| @@ -47,6 +51,7 | |||||
| 47 | <DefineConstants>TRACE</DefineConstants> |  | 51 | <DefineConstants>TRACE</DefineConstants> | |
| 48 | <ErrorReport>prompt</ErrorReport> |  | 52 | <ErrorReport>prompt</ErrorReport> | |
| 49 | <WarningLevel>4</WarningLevel> |  | 53 | <WarningLevel>4</WarningLevel> | |
|  | 54 | <Prefer32Bit>false</Prefer32Bit> | |||
| 50 | </PropertyGroup> |  | 55 | </PropertyGroup> | |
| 51 | <ItemGroup> |  | 56 | <ItemGroup> | |
| 52 | <Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" /> |  | 57 | <Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" /> | |
        
        General Comments 0
    
    
  
  
                      You need to be logged in to leave comments.
                      Login now
                    
                