Most voted "uwp" questions
UWP is the abbreviation for Universal Windows Platform, which is a platform created by Microsoft that allows developers to have only one code that works on any device in the Windows Onecore family, which includes virtual and augmented reality devices, consoles, computers, tablets, hybrids, mobiles, Iot devices (like a refrigerator) and many other devices can use your app.
Learn more…62 questions
Sort by count of
-
0
votes1
answer84
viewsSelect does not display data in listview
I cannot get feedback from my select in the database. Where I show the data in a listview. using (_connection = new MySql.Data.MySqlClient.MySqlConnection("Database=roubo_furto; Data…
-
0
votes0
answers19
viewsWaiting for a page to load
I have a home page, and when I click a button, I navigate to the next page. The problem is that this page does a database query and returns many records, which are inserted in 3 listviews different.…
-
0
votes0
answers62
viewsOne control - multiple properties
I have a Combobox and it has as itemssource a struct with some properties, and I have a viewModel that has some properties of this struct, i wonder if there is a way to make the combobox set the…
-
0
votes2
answers50
viewsUWP - Softwarebitmap for Stream
Eai personal, I’m using MediaFrameReader to capture the frames of a USB camera in a UWP application, the event return FrameArrived returns me an object of type Softwarebitmap, having this frame I…
-
0
votes0
answers104
viewsgive Focus() or click() in a webview text field C#
I am developing a webbrowser in UWP(windows universal application) using the C#language, to assign value to a text field that is in webview I used the following script: string functionString =…
-
0
votes1
answer209
viewsSave Canvas as Image - UWP
In applying UWP, I have the following canvas <Canvas Name="Banner" Width="500" Background="Black" Height="200" Margin="334,53,-711,-156"> <Image x:Name="img_Fita" HorizontalAlignment="Left"…
-
0
votes0
answers140
viewsQuery with special characters in an Observablecollection
I created a search method that receives a text, and searches that text in a ObservableCollection pre-filled. private void btn_Pesquisar_Click(object sender, RoutedEventArgs e) {…
-
0
votes1
answer70
viewsUWP application run sequence of videos in Mediaelement coming from a List<string>
I’m using the Media Element in an application UWP to run a sequence of videos, as I do for when one video ends the other runs in sequence? In the code below when the first video of…
-
0
votes1
answer30
viewsView Progressring while loading data
I have a ProgressRingwhich must be displayed while a list of accounts is loaded into a DataGrid: <Grid> <ProgressRing x:Name="CarregamentoDeContas" /> <controls:DataGrid…
-
-1
votes1
answer59
viewsDifference between Staticresource and Themeresource UWP uses?
To declare a Textblock with Headertextblockstyle style you can use these two forms where the result is the same: <TextBlock Text="Olá, Mundo!" Style="{StaticResource HeaderTextBlockStyle}" />…
-
-1
votes1
answer66
viewsDispatchertimer C# error (Universal app win 10)
I am new to programming and I was able to make this code with help, only there is an error. follow picture. public sealed partial class MainPage : Page { private MySqlConnection _connection;…
-
-2
votes1
answer54
viewsConnect with Mysql universal win 10
I would like some help as I would like to know how I can get information from a Mysql database and that will be taken over by a textblock. could help me with the code that does this? EX: In Database…