I've been trying to use MVVMLight's Event to Command to link my ViewModel's commands to events such as TextChanged's TextBox, for example. But Event to Command automatically assumes that the Command Parameter is the Event Args of TextChanged. I...
I have a numeric column in a DataGrid that I want your content to be aligned on the right. I read the documentation , especially Customizable templates and styling for cells, rows and headers where I ended up with this code to get the conten...
I need to show progressring while running a task, but it does not appear and the screen is frozen until it runs.
private async void btn_Criar_Click(object sender, RoutedEventArgs e)
{
pgr_Carregando.IsActive = true;...
I have a problem while doing the translation of C # code to VB.NET on the UWP platform doing a Serial UART Test Example made available by the Microsoft website. The program in C # is working perfectly, but when I try to run in VB.NET, the moment...
I'm having the following error while posting to the Windows store (microsoft).
CreateFileW API in kernel32.dll is not supported for this application
type. MySql.Data.dll calls this API
How to remove kernel32.dll ???
I need to develop a UWP application in C # / XAML for use in the industry for data collection via Lumia 640 XL mobile phone with Windows 10 Mobile. All persistence (CRUD) will be in SQL Server 2012 on the internal corporate network. The app will...
I am developing a cordova plugin for windows desktop and I need to use some native functions, I will have to use Windows Runtime. I started by following a tutorial and I have the following structure:
- /src
- /EchoRuntime
- /bin
- /obj...
I'm using a database with sqlite already done and with data in my application UWP and trying to display in listview the data that is in the Marcas table.
What I have done so far was to create a class Marcas :...
At first I'm auditioning if I can communicate right with the Wikipedia API. My first goal is to get data from the API, turn it into an object, and display something on the screen that demonstrates that this process is correct.
I created a pac...