Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
donuts238486yIt's UWP actually but yes I tried to learn it before for Win 8/single app for desktop + mobile but then was like meh... Functionality is limited and no one really uses Windows Phones. JS + React better.
-
If you really want to target uwp, making it a win32 app and convert with Windows desktop bridge is better
-
@CozyPlanes UWP is actually pretty nice, but certainly not made for traditional desktop inputs like mice.
Anyways, Acrylic is a major part of my app anyways. -
Brolls31556yIsn’t there a XAML property? I’m sure there was in WPF and you could just use triggers.
Windows Universal Platform... what the fuck??
I want to set the button cursor to a hand. Here's how you do it:
private void button_PointerEntered(object sender, PointerRoutedEventArgs e)
{
Windows.UI.Xaml.Window.Current.CoreWindow.PointerCursor = new Windows.UI.Core.CoreCursor(Windows.UI.Core.CoreCursorType.Hand, 1);
}
Don't forget to do the opposite when the mouse leaves!
FUCK YOU
rant