Selastin

Results 31 comments of Selastin

If the acrylic haven't been changed to normal blur, you won't be able to drag the window smoothly, the acrylic is lagging the window on drag, to overcome this issue...

@sourcechord it will be possible to create rounded corners if you use Windows.UI.Composition with WPF,and you can do much more than ordinary acrylic, you can animate the acrylic brush and...

For windows 10 Build 10240 and above instead of listening to the `WM_DWMCOLORIZATIONCOLORCHANGED` message, using [UISettings ](https://docs.microsoft.com/en-us/uwp/api/windows.ui.viewmanagement.uisettings?view=winrt-22000) class from `Windows.UI.Composition` Seems to be the best Solution. The `UISettings` Class have...

I Was looking for the `ResolutionScale` Property from `DisplayInformation` Class, I Was trying to resize the application window automatically to the screen resolution so in devices which uses 125% text...

Hi are you able to fix this, I'm experiencing a similar issue when i try to create a statamic project with starter kit. ![image](https://github.com/statamic/cli/assets/72641365/d1d50ec5-1711-4889-92f3-7ca26e1f5d5a) ### **More Info** Statmic CLI version...

Finally i was able to fix this issue by adding this to my php.ini file: `curl.cainfo = "C:\wamp64\bin\php\php8.3.0\cacert.pem"` I was able to get the cacert.pem file from here: [CA certificates...

It's been a little long since I have worked on this, We can only place a `IDCompositionVisual `on top of another `IDCompositionVisual `, it's not possible to draw stuff directly...

> But maybe there's a way to render a DirectComposition to an offscreen texture I think that is not possible. According to Microsoft docs: A visual tree must be bound...

I am having same issues too, is there any fix available yet

Hi I solved the issue by adding a small delay in the code. like `await Task.Delay(1);` now it is not calling GetPagedItemAsync() until all the data gets loaded. Here's how...