HppZ

Results 15 issues of HppZ

![image](https://user-images.githubusercontent.com/12285582/129844122-346855d8-2bb7-4dd6-9d62-ce2a5f59b144.png)

no commits since 2019, so is Windows Composition API dead?

I want to apply effects to the blue area: ![image](https://user-images.githubusercontent.com/12285582/82022814-d41fdf80-96bf-11ea-8174-a73f22cba867.png)

https://stackoverflow.com/questions/49718377/dropshadow-with-image-blur-uwp

question
effects

`.\LottieGen.exe -Language cs -GenerateColorBindings -GenerateDependencyObject -WinUIVersion 2.7 -OutputFolder output\ -InputFile` when `-GenerateDependencyObject` is set, `public void SetColorProperty(string propertyName, Color value)` is not right. ![image](https://user-images.githubusercontent.com/12285582/154919434-263d0161-6eec-406b-b29c-6f11aac24574.png)

`this.UnloadObject(AnimatedVisualPlayer1);` ![image](https://user-images.githubusercontent.com/12285582/154886825-62354205-a5b3-40b7-84b5-7855c5463a6b.png)

*Project* UWP appinstaller **Describe the bug** App installation failed with error message: error 0xC00CEE23: The XML in the .appinstaller file is not valid: Line 52, Column 5, Reason: '>' expected....

Bug
Area-External

```cpp concurrencpp::generator Test::test_generator() { int i = 0; while(i++ < 5) { co_yield co_await test_async_task(); } } concurrencpp::result Test::test_async_task() { co_await runtime.timer_queue()->make_delay_object(std::chrono::milliseconds(5000), runtime.thread_pool_executor()); co_return 42; } void Test::onClicked() { for...

enhancement