python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
What is the equivalent of .Net Double.PositiveInfinity in C++WinRT?
If at all there is. And if not, what should be passed to functions like
var tb = new TextBlock { Text = "Text", FontSize = 10 };
tb.Measure(new Size(Double.PositiveInfinity, Double.PositiveI...
rsp
Votes: 0
Answers: 1
Can C++ coroutines contain plain `return` statements?
I am writing a C++ coroutine for a UWP control using C++/WinRT:
winrt::fire_and_forget MyControl::DoSomething()
{
if (/* some condition */)
{
// Why does this work?!
return;
...
citelao
Votes: 0
Answers: 1
How to avoid text on a button from being cut off in UWP xaml
I have a button with MinWidth set as MinWidth="118" and that works fine. But when I change the Text size in windows using Settings -> Accessibility -> Text Size -> change it to 200%...
rsp
Votes: 0
Answers: 1
Why I am getting C3646 on an IAsyncAction declaration?
Probably a dumb question (WinRT noob), but, here is goes...
The code from "App.xaml.h" is:
namespace winrt::Precog::implementation
{
struct App : AppT<App>
{
App();
...
Renato Prado
Votes: 0
Answers: 1