Open-Sourcing Windows Calculator
161–170 of 184 posts
Re: Open-Sourcing Windows Calculator
#162Re: Open-Sourcing Windows Calculator
#163Earlier quoted context omitted.
I'm just surprised it's opt-in for dev builds.
Developers use software in weird ways. I've written scripts to hit buttons thousands of times for hours on end. It makes sense that they don't want developers' janky experiments polluting data used to drive design decisions.
Re: Open-Sourcing Windows Calculator
#164Earlier quoted context omitted.
Most trivial? Not by a long shot. What about WINVER?
Not windows, but `true` has to take the cake for the most trivial program, the portion of my comment after the second : is a valid implementation:
Re: Open-Sourcing Windows Calculator
#165I see xaml there, does that mean this is WPF even though it's c++ ?
XAML is just a markup language, it's used across multiple frameworks and languages.
This particular technology is called UWP, it's mostly rebranded WinRT.
Historically, XAML was also used in Silverlight, both desktop/web, WinCE, and Windows Phone.
Re: Open-Sourcing Windows Calculator
#166or the new cloud web "app" with 8/10
Re: Open-Sourcing Windows Calculator
#167I see xaml there, does that mean this is WPF even though it's c++ ?
That's XAML but not WPF. XAML is just a markup language, it's used across multiple frameworks and languages. This particular technology is called UWP, it's mostly rebranded WinRT. Historically, XAML was also used in Silverlight, both desktop/web, WinCE, and Windows Phone.
Re: Open-Sourcing Windows Calculator
#168Earlier quoted context omitted.
That's XAML but not WPF. XAML is just a markup language, it's used across multiple frameworks and languages. This particular technology is called UWP, it's mostly rebranded WinRT. Historically, XAML was also used in Silverlight, both desktop/web, WinCE, and Windows Phone.
Well, the constructs used in the xaml appear to be very similar between uwp and wpf. You still have controltemplates, datatemplates, and dependency properties, so there is a lot in common more than just syntax.
If you know any XAML, you’ll have zero issues using the rest of them. Speaking from experience, I started with Silverlight a decade ago, had no problems switching to others.
But the underlying tech is very different. Early Silverlight rendered on CPU, WPF is based on DirectX 9, UWP uses Direct3D 11. Silverlight and WPF are .NET based, WinRT and UWP are not, they’re 100% native code, exposed to .NET through COM interop.
Re: Open-Sourcing Windows Calculator
#169Earlier quoted context omitted.
Well, the constructs used in the xaml appear to be very similar between uwp and wpf. You still have controltemplates, datatemplates, and dependency properties, so there is a lot in common more than just syntax.
The syntax and controls are indeed very similar. If you know any XAML, you’ll have zero issues using the rest of them. Speaking from experience, I started with Silverlight a decade ago, had no problems switching to others. But the underlying tech is very different. Early Silverlight rendered on CPU, WPF is based on DirectX 9, UWP uses Direct3D 11. Silverlight and WPF are .NET based, WinRT and UWP are not, they’re 100…
Re: Open-Sourcing Windows Calculator
#170https://github.com/Microsoft/calculator#data--telemetry "This project collects usage data and sends it to Microsoft to help improve our products and services. Read our privacy statement to learn more. Telemetry is disabled in development builds by default, and can be enabled with the SEND_TELEMETRY build flag." Even on a simple calculator.