Posts by Alexsandro Teixeira • 128 points
6 posts
-
3
votes1
answer259
viewsA: How to import a Git repository to Azure Repos?
Good morning, You can Import the repository. In the Repository option you have the Import Repository option After going to this import will open another screen which can inform the clone link of the…
azure-devopsanswered Alexsandro Teixeira 128 -
1
votes1
answer287
viewsA: Set Top Bar Burger Menu
I managed to solve the problem: The error was in the navigation interface when I clicked the login button it ran the navigation function for the mainview. Line below: public async Task…
-
2
votes1
answer287
viewsQ: Set Top Bar Burger Menu
I made an app with a Login screen to a Mainview that is a Masterdetail and a Detail. It is working correctly but the top screen is larger than normal, as per image; as I set it to be the correct…
-
1
votes0
answers11
viewsQ: More than one layout type in a Contentpage
It is possible to have more than one Layout Type within a Contentpage? I’m developing an app,and it needs a top bar with a few buttons and a listing of Names. How can it be done?…
-
1
votes1
answer56
viewsQ: Collect data from View to the controller
I would like to know how I can collect a data from View, since I am already using @model System.data.dataset. @model System.Data.DataSet @{ ViewBag.Title = "CadastroPorto"; } I need to collect the…
-
3
votes2
answers508
viewsA: How do I do INNER JOIN in this case?
Do so: SELECT * FROM users_data INNER JOIN user_type AS NomeAlias ON users_data.valor = NomeAlias.valor WHERE user_id = {0} Where valor would be the relationship between the tables, such as an ID or…