D.Jonas

Results 49 comments of D.Jonas

If all `Dialogs` were not a `Window` (example the `AlertDialog` https://github.com/AvaloniaCommunity/Material.Avalonia/blob/dev/Material.Dialog/Views/AlertDialog.axaml) but a `UserControl`, they could be displayed either as `DialogWindow.Show` or within the `DialogHost.Show`.

If you use Windows 10, try: ⊞ Win+.

I'm using the following code: ```csharp private async Task _Connect() { Logger.Trace("Get client from client factory"); //Create the client ClientApi = await ClientFactory.BuildClientAsync(Setting.GetFactorySettings()).ConfigureAwait(false); // If the user is not authenticated...

Sorry my fault, here is my `TClientSetting` class: ```csharp public class TClientSetting { public string AppHash { get; set; } public int AppId { get; set; } public string ServerAddress...

Thanks for reply! The Adress is alright. I closed the connection myself to provoke the error. Due to the forced connection close of my Internetproviders I get the same exception.

I have used your SampleApp with the following code: ``` private static FactorySettings settings = new FactorySettings { AppHash = "xxxxxxxxxxxxxx", AppId = xxxxxxxxxxxxxx, ServerAddress = "149.154.167.50", ServerPublicKey = "-----BEGIN...

I think this is a special case that I have not yet considered or does not occur with me. I appreciate it if you want to improve the code and...

I have exactly the same problem. New items are only reloaded when the application is resized but not when maximized.. ![incremental](https://user-images.githubusercontent.com/17551597/186595199-ec63a862-bec0-4694-b913-29c2457685ad.gif)

I would also be happy if this function would be implemented. 👍