How to display a (Login) dialog before MainWindow in Avalonia? A dialog requires a parent window in Avalonia UI because it is cross platform and mobile platforms (iOS and Android) do not support the concepts of a Window or a Dialog It's done this way to maintain universal compatibility There are ways to work around this, however
Newest avalonia Questions - Stack Overflow Yes, 4 years somebody asked the exact same question (Avalonia UI Scaling Issues) but maybe now it's possible to scale an Avalonia ui app Cause when running my app on a 2 8 K display (Fedora 41 KDE
c# - How can we change the default shutdown mode of an Avalonia . . . Iam trying to build an cross platform desktop application using avalonia( net 6) Actually Iam new to avalonia I want to shutdown my application explicitly The default shutdown mode OnLastWindowClose , I want to change it to OnExplicitShutdown I got a hint that it want to configure in the Application Lifetime at App axaml cs
c# - Change the background color of a focused TextBox to transparent . . . I've tried to change the Background color of a focused TextBox to transparent in Avalonia The Textbox is in a Templated User Control and I want it to be fully transaparent since it's inside a border I've tried using styles and resources (a transparent brush), here's the code of the control
Implementing Navigation in Avalonia with MVVM Community Toolkit using Avalonia Controls; namespace AvaloniaApplication5 Views; <<< make sure that name space Has Views public partial class HomeView : UserControl { public HomeView() { InitializeComponent(); } } HomeView axaml