GetMessageBoxStandardWindow error on Debian
See original GitHub issueI tried to call a dialog with various parameters, with an icon, without an icon, and others, but I always get an error My current code:
var exMessageBox = MessageBox.Avalonia.MessageBoxManager.GetMessageBoxStandardWindow(new MessageBox.Avalonia.DTO.MessageBoxStandardParams
{
ButtonDefinitions = ButtonEnum.Ok,
ContentTitle = "Error",
ContentMessage = ex.Message,
//Icon = Icon.Error,
Style = Style.MintLinux
});
exMessageBox.Show();
Error [Binding] Error in binding to ‘Avalonia.Controls.Image’.‘IsVisible’: ‘Could not find a matching property accessor for ‘Icon’ on ‘MessageBox.Avalonia.ViewModels.MsBoxStandardViewModel’’ (Image #22478116)
Issue Analytics
- State:
- Created 2 years ago
- Comments:10 (3 by maintainers)
Top Results From Across the Web
What should I do with the global exception? · Issue #5290
If you want to handle global errors, you can catch them in Program.Main method, log and close the app peacefully (restart or open...
Read more >MessageBox.Avalonia 1.3.0
MessageBox.Avalonia. Messagebox for AvaloniaUI. alternate text is missing from this package README image. To start you should install MessageBox ...
Read more >April 2021
GetMessageBoxStandardWindow ("My title", "My message"); await dialog. ... But after executing the command $ dotnet run, the exception error ...
Read more >Upgraded to Bookworm, Received Error Message(s) about ...
I received the following error message(s): Errors were encountered while processing…
Read more >Avalonia学习实践(三)--一个对话框引发的惨案原创
NET的跨平台UI框架,能够支持在Windows、Linux、MacOS等操作系统中运行 ... 这应该是Avalonia的一个Bug,在Linux启动时,窗体位置计算的问题,最新 ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
oops, it looks like I don’t have such a problem with mvp. I’ll try to solve it
Ooh, this error was caused by I use .Shutdown(); without awaiting exMessageBox.Show() like in WPF