windows-runtime Questions
7
Solved
I'm developing a Windows Store App using C# + XAML. When I add a TextBox with the property TextWrapping set to NoWrap, a "X" appears at the end of the TextBox when it's focused.
So, I need to re...
Uteutensil asked 26/2, 2013 at 18:17
29
Solved
I installed a retail version of Windows 8 Pro. I downloaded and installed Visual Studio Express 2012. I asked for and received a developers certificate. Then I tried to create a hello world app.
F...
Naomanaomi asked 15/11, 2012 at 19:1
3
Solved
I have one entity class as
public class someclass
{
public string property1 {get; set;}
public string property2 {get; set;}
public string property3 {get; set;}
}
and using sqlite connecti...
Unlace asked 6/5, 2013 at 12:2
6
Solved
How do I convert the contents of a Platform::String to be used by functions that expect a char* based string? I'm assuming WinRT provides helper functions for this but I just can't find them.
Than...
Marisamariscal asked 31/7, 2012 at 17:54
3
In App.xaml I have added Application Resources with a button as:
<Application.Resources>
<Button x:Key="MyButton"/>
</Application.Resources>
In MainPage.xaml.cs, I tried to a...
Perfecto asked 4/7, 2016 at 12:30
2
Solved
Watching the //BUILD stuff, I saw that WinRT API's can be consumed by C code:
I am rather excited about a fresh C API available to Win32 developers.
Where can I find information on the C WinRT...
Malynda asked 15/9, 2011 at 19:10
6
Solved
I am trying to delay the processing of a method (SubmitQuery() in the example) called from an keyboard event in WinRT until there has been no further events for a time period (500ms in this case).
...
Binion asked 11/12, 2013 at 1:59
5
Solved
I have the following code:
public void tbSpeed_KeyDown(object sender, KeyRoutedEventArgs e)
{
e.Handled = !((e.Key >= 48 && e.Key <= 57) || (e.Key >= 96 && e.Key <= 10...
Billbillabong asked 21/10, 2012 at 19:13
3
In a Windows Store Application I have the following TextBlock:
<TextBlock Text="Seriously long text for the purpose of showing tooltip"
TextTrimming="CharacterEllipsis" />
How do I autom...
Moderator asked 6/2, 2014 at 22:37
4
I have a Windows Service (created using this tutorial).
And I am trying to run an IAsyncOperation:
var uri= new Uri(@"uri/to/second/app");
var options = new LauncherOptions
{
TargetApplicationPa...
Targe asked 30/1, 2017 at 18:48
11
Solved
i have a file downloader function:
HttpClientHandler aHandler = new HttpClientHandler();
aHandler.ClientCertificateOptions = ClientCertificateOption.Automatic;
HttpClient aClient = new HttpClie...
Chism asked 18/12, 2013 at 15:9
4
Solved
I tried InkScape & XPS method, but it doesn't give me correct XAML.
Can anyone please convert this SVG to WinRT compatible XAML ?
Windowlight asked 4/9, 2013 at 21:25
5
Solved
I'm using a webview in an app to display externally hosted content, but the web view lets the user zoom with a pinch gesture and I'd like to disable this.
I can't find any such property on the web...
Latium asked 30/9, 2012 at 20:23
4
How i can convert SVG file to XAML in windows 8 / WinRT. I am new to this XAML / SVG environment. So anyone please help me to implement the same in windows 8. I need to parse this svg file and need...
Mullock asked 2/12, 2013 at 12:58
7
On a Windows store App, I have this simple TextBox
<TextBox Name="TextBoxUser" HorizontalAlignment="Right" Width="147" Margin="20,0,0,0" KeyDown="TextBox_KeyDown" /
That has a KeyDown Event a...
Ducharme asked 25/2, 2014 at 11:32
2
I've experimented writing a simple DLL with C++/WinRT.
It can be imported and run without any problems by a Windows desktop app (I've tried writing two desktop apps, one in C# and another in C++/Wi...
Pledge asked 4/8, 2018 at 5:46
2
Solved
Is it possible to cancel HttpClient GET web request in Windows 8. I am looking for a solution to cancel my web request if the user press back key from the page. In my app i am using a static class ...
Odds asked 2/8, 2013 at 9:45
13
Solved
I'm struggling to get my Windows 8 application to communicate with my test web API over SSL.
It seems that HttpClient/HttpClientHandler does not provide and option to ignore untrusted certificates...
Aurie asked 23/9, 2012 at 14:45
1
I am trying to use C++/WinRT to write something interesting. Having very little experience in Windows programming and no experience in C++/CX, I started out by trying sample program (OCR).
The sam...
Craal asked 8/11, 2017 at 10:59
3
I have a XAML C++/WinRT application based on the BlankApp template. As I built up the app, I realized that my application is throwing a lot of exceptions behind the scenes in my output window. The ...
Chauffeur asked 10/4, 2019 at 2:4
4
Solved
I have the following main.xaml and usercontrol.
I need to place several times the user control on the 2nd row, 2nd column of the grid, By using visual studio it wont allow to drag and drop the use...
Bourse asked 10/6, 2012 at 22:8
6
Solved
I'm implementing an API made by other colleagues with Apiary.io, in a Windows Store app project.
They show this example of a method I have to implement:
var baseAddress = new Uri("https://private...
Corruption asked 22/4, 2015 at 14:46
25
I have an HttpClient that I am using for a REST API. However I am having trouble setting up the Authorization header. I need to set the header to the token I received from doing my OAuth request.
I...
Theologue asked 31/1, 2013 at 13:52
2
Solved
I just bought a new laptop and I'm trying to set it up with python. I am using python 3.10.0, windows 10, pip v21.3. For the most part, pip seems to be working correctly, I've already used it to in...
Xanthophyll asked 18/10, 2021 at 2:43
3
Solved
How do I remove the box with the 3 icons when debugging?
Gluteus asked 19/4, 2016 at 19:17
1 Next >
© 2022 - 2025 — McMap. All rights reserved.