.net maui

  1. JiMMy2024

    A MAUI application looks great in Android but terrible in iOS

    Hello.. I have this App.xaml file: <?xml version = "1.0" encoding = "UTF-8" ?> <Application xmlns="http://schemas.microsoft.com/dotnet/2021/maui" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:local="clr-namespace:TimeApp"...
  2. bobgatto

    Question Can I start a content page in OnStart if I'm using AppShell in my Maui desktop app?

    I'm new to .NET MAUI and what I want to do is write a multi-page application for the desktop (not mobile phones). I'm using shell. If this is the best way to do it, I don't know. The main page is called PassInfo. However, at startup, I would like to check for any database files on the computer...
  3. T

    Blazor MAUI blank screen on iOS

    I have a Blazor Hybrid MAUI App that works great on Android. However, when I compile my code (both from VS and from dotnet publish in Azure Pipeline) to iOS the app just shows my splash screen and then shows a blank white screen (both on Simulator and on physical iPhone) and nothing more...
  4. D

    Question ScrollView does not scroll unless window is resized in .NET MAUI

    Hi. I am new to .NET MAUI and XAML. I have a scroll view inside a ContentPage and inside the scroll view I have a Vertical Stack Layout with 2 items, a label and a button. <ScrollView> <VerticalStackLayout x:Name="Stack" Spacing="25" Padding="30,0"...
  5. R

    XAML Button - Background Color binding not refreshing when XAML page has changed

    Hi I am developing an App project in VB 2022 with Net MAUI and XAML/C#. I am not able to get the several XAML Buttons to correctly change the background color - the binding of the Button Background color does not appear to work when the XAML page is updated. As I don't know the exact reason...
  6. lynxAi

    How to binding more than one string in a frame, using ObservableCollection

    model: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PasswordSaver.Models { public class info { public static string[] Text { get; set; } = new string[2]; } } ViewModel: using...
Back
Top Bottom